Skip to main content

What Is the Internet of Things ( IoT )?

what is iot


There's been a lot of talk about the "Internet of Things" (IoT). But, what exactly does that term mean in the realms of cyberspace?

For the human race, which is relatively disorganized by nature, the "Internet of Things" is a great innovation. However, for people who value their privacy, the "Internet of Things" could be considered a massive intrusion.

Essentially, the "Internet of Things" means having every electronic device-and many other things-connected and interacting in real time with the Internet in some way so it can be tracked and monitored. By having everything categorized this way through the Internet "cloud," the reasoning goes, you'll be able to organize your life better by not needing to pay "time consuming" attention to your life.

There are upsides to such an existence. Having your phone buzz and remind you to buy eggs because your refrigerator sent a notification telling your phone you're almost out of eggs, for example. Who doesn't want to be reminded they're almost out of eggs?

Or you can set your home security system via your phone. Or you can lock your vehicle using your phone or handheld device. If you're tech savvy enough, you can use a handheld device to track and organize everything you deem important enough to track and organize.

The downside of the "Internet of Things" is that it's potentially vulnerable to surveillance, whether by companies or the government. While the government isn't necessarily going to be interested whether you're almost out of eggs or not, there are plenty of companies who would love to know your egg-buying routine. And they're willing to pay astonishing amounts of money for that kind of information so they can more accurately target their online advertisements to egg buying people like yourself.

So, how can you protect your privacy if you decide to go down the path of the "Internet of Things?" Here are some easy tips:

1.) Know what's important. If you're putting RFID tags on your eggs, rather than writing a note to yourself that you need to buy eggs, you're probably taking the "Internet of Things" concept a bit too far.

2.) If you notice online ads seem particularly targeted to you, you may want to consider unplugging a bit. At the very least, turn off or otherwise limit your Internet browser's capability to activate cookies. "Cookies" is a cute way of saying "tracking mechanisms." Cookies store your browsing history, passwords, usernames, and more. They can make your electronic life infinitely more convenient, but they can also be used to track an astonishing amount of personal information.

3.) Protect your WiFi and cloud passwords. Way too many people use their birthdays, pets' names, social security numbers, or other ridiculously dumb identifiers that even moderate hackers can figure out. The "Internet of Things" will become their digital playground if people don't take simple password precautions. Prankster hackers can open and close your garage door; expert hackers can destroy your life with little effort in the world of the "Internet of Things."

4.) Remember, the "Internet of Things" is essentially a convenience. It's not a necessity. If you're using a mobile device to turn your attic light on and off from three states away, you're using it in a frivolous and unnecessary fashion. If you're using it to monitor your security system and alert the authorities, you're using it correctly.

Ultimately, the "Internet of Things" represents only the latest in the ongoing evolution of the Internet. It will almost certainly be a different landscape six months from now.

Comments

Post a Comment

Popular posts from this blog

Automation Testing Python Interview Questions

1.What is Python? What are the benefits of using Python? Answer: Python is a programming language with objects, modules, threads, exceptions and automatic memory management. The benefits of pythons are that it is simple and easy, portable, extensible, build-in data structure and it is an open source. 2.   How Python can be used in software testing?  Answer: 1. To generate test data; parse test results; generate reports; testing API calls etc. 2. Python to extract requirements from a Word document. 3. For testing tasks automation, setting up environments for tests, extracting performance data, etc… 4. Testers use Python extensively in many companies with Selenium for test automation. 5. For writing desktop applications used by testers. 6. Test data manipulation. 7. To build test environment 8. Testing with IronPython on .NET  3.What Python frameworks do you know?  Answer:  Framework called Web2py, PAMIE (Python automation Module for I. E.), The p...

Python Flask Interview Questions and Answers

Q1). What is Flask? Ans1 : Flask is a web micro framework for  Python  based on “Werkzeug, Jinja 2 and good intentions” BSD licensed. Werkzeug and jingja are two of its dependencies. Q2). What is the benefit of using Flask? Ans2:  Flask is part of the micro-framework. Which means it will have little to no dependencies on external libraries. It makes the framework light while there is little dependency to update and less security bugs. Q3). What is the difference between  Django,  Pyramid, and Flask? Ans3:  Flask is a “microframework” primarily build for a small application with simpler requirements. In flask, you have to use external libraries. Flask is ready to use.Pyramid are build for larger applications. It provides flexibility and lets the developer use the right tools for their project. The developer can choose the database, URL structure, templating style and more. Pyramid is heavy configurable. Q4). What is Flask-WTF and what are t...

Python real time Interview Questions and Answers

Q1).What is Python? Ans1:  Python is a high-level, interpreted, interactive and object-oriented scripting language.  Python  is designed to be highly readable. It uses English keywords frequently where as other languages use punctuation, and it h as fewer syntactical constructions than other languages. Q2).Name some of the features of Python. Ans2:  Following are some of the salient features of python − It supports functional and structured programming methods as well as OOP. It can be used as a scripting language or can be compiled to byte-code for building large applications. It provides very high-level dynamic data types and supports dynamic type checking. It supports automatic garbage collection. It can be easily integrated with C, C++, COM, ActiveX, CORBA, and Java. Q3).Do you have any personal projects? Really? Ans3: This shows that you are willing to do more than the bare minimum in terms of keeping your skillset up to date. If you work on per...