Skip to main content

SCRUMble ! - New Book about SCRUM

 SCRUMble ! Hello Blog Readers! Thank you for all your support and encouragement. I have something exciting for you all. I have recently written and published a new book called 'SCRUMble !'. It is currently available on pothi store. It will be soon available on Amazon and Flipkart as well. Please get your copy and do let me know your reviews. -Abhishek Sathe SCRUMble ! Written and Published by: Abhishek Sathe                                                                              Distributed by: pothi.com Order your copy now:  https://store.pothi.com/book/abhishek-sathe-scrumble/ Coming soon on Amazon and Flipkart About the book: Scrum is a framework for solving complex problems largely adapted by Software Development field. There are multiple ag...

Internet Of Things (IOT)



Internet of Things(IOT) is a collection of ‘things’ around us such as wearable devices, automobiles, traffic signals, mobile phones, water pipes, lights (and even people!) connected over internet and enabled to communicate and interact via embedded components such as gateways, sensors and actuators. Internet of things can identify, store and process the data and analyze it to draw smart conclusions. IOT has got potential applications in all aspects of human life. Let us see some interesting examples.


Traffic signals can identify when the traffic is reaching a certain threshold value. Once this value is reached, they can send signals to other traffic signals in the vicinity via the water pipes which are also connected to the internet. This way a car dashboard can show an alert to the driver about the heavy traffic on the road and can also suggest an alternative route. This is a simple example showing how IOT can make our lives easy. Another simple example of IOT application could be a smart air conditioner which can identify the needs of people inside the room and control the temperature accordingly. IOT can also have a potential use in tracking anklets of all the felons inside the prison so that an automatic alarm can be raised if any of the criminal gets out of prison boundaries and the prison guards receives instant notification.


 Typical IOT components:

Components
Description
        Things
Physical objects such as car dashboards, smart watches, refrigerators, lights etc
     Sensors
   Identify the surroundings to gather data, triggers and subsequent changes.
   Gateways
   Stores and process data collected by sensors before sending to network.
   Actuators
Triggers an action when supplied with energy.
       Services
   Cloud services which can process the data collected and give analysis.
      Platforms
Platforms are middleware between sensors and network.
                       
                                                

Application areas of IOT are way beyond what we can see today. As of now IOT have applications in various domains such as:

-Home Automation
-Construction and Manufacturing processes
-Automobiles
-Health care
-Smart Cities
-Wearable
-Reactive Computing and Analytics


Despite all this, there are numerous security concerns, limitations and considerations about IOT implementations such as:

-Precise selection of use cases for IOT
-profit margins after investment and implementation
-choosing a type of connection
-adherence to standards
-choosing a type of energy source like battery
-data misuse etc

Comments

Popular posts from this blog

Mobile Automation using Appium-Java

Appium is an open-source, UI automation tool for automating mobile apps. This tutorial is helpful for setting up a Java-Selenium based project in Eclipse IDE for you to be able to execute test automation scripts for your mobile application. Please note that, we assume you already have an existing project for importing locally or cloning from git.  Steps to be performed for setup required for automation of mobile applications using Appium Mobile Automation tool using Java-Selenium: Below is the list of steps that needs to be performed for setting up the environment for execution of test cases on Windows: JDK Installation. Setting PATH variable. Installation of Android SDK. Installation of Eclipse. Importing a project in Eclipse. Install Eclipse ADT plugin. Install other required softwares. Install Appium. JDK Installation: Install JDK from http://www.oracle.com/technetwork/java/javase/downloads/index.html. After installation of java software...

Cookies

What is a Cookie? A typical application is likely to involve a number of interactions between the client and the server. There must be some mechanism for the client to identify itself to the server each time it sends an HTTP request to the server. For this, cookies are used. Cookies are the most popular mechanism of maintaining state information. Working of Cookies: 1. When you interact with a website for the first time, the site might want you to register yourself. Here, you enter details line name, address etc. on a web page. 2. Server stores this information on its database. Additionally, it creates a unique id for you. It stores this id in the database and also sends it to you in the form of a cookie. 3. Next time when you interact with the server using a website, it would automatically send the id(i.e. Cookie) along with HTTP request for a particular page to the server. 4. The server matches this id in the database and knows that you are a registered user. Accordingly...

Bipartite and semihamiltonian graphs

Bipartite Graph: A graph is bipartite if its vertex set can be partitioned into two subsets X and Y so that every edge has one end in X and one end in Y; such a partition (X,Y) is called bipartition of the graph, and X and Y its parts. ex.- Notation: We denote a bipartite graph G with bipartition (X,Y) by G[X,Y]. Complete Bipartite Graph: If G[X,Y] is simple and every vertex in X is joined to every vertex in Y, then G is called a Complete Bipartite graph. ex.- Semi-Hamiltonian Graph: A semi-Hamiltonian graph is a graph that contains a Hamiltonian path, but not a Hamilton cycle. Hamiltonian Path: A Hamiltonian path in an undirected or directed graph is a path which visits each vertex exactly once. ex.- C-A-D-B-E is a Hamiltonian path Hamiltonian Cycle: A Hamiltonian cycle or a Hamiltonian Circuit is a Hamiltonian path which is a cycle. This post will be useful in understanding a question: "The nabhi kamal grapg is:" (A)Bipartite graph (B)Semi-...