Posts

Showing posts from October, 2016

The power of our sub conscious mind

Image
The power of your subconsious mind Here are a few of the many artificial intelligence systems out there. 1. 6sense 2. Botanic.io This company builds an interactive, verbal personality for your code. Yep, if you have a system that needs to interact, Botanic.io creates a user interface for it with voice. (I went to the company’s website for a comment, but it was only text as of today. I’ll check back tomorrow.) 3.  Arria An analyst and a writ er in one, this software “reads” complex data such as financial or meteorological and writes accurate, easy-to-read reports for people. Yep, it’s software that simplifies things so we can understand them. Arria spits out 60 accurate, detailed weather forecasts in less than a second. (People clock in at 24 hours on that task.) 4. Automated Insights Similarly, if you’ve got spreadsheets, Automated Insights turns them into stories. Think narratives for your sa...
Image
www.IoT (Internet of the things) According to Cisco, there will be 13.5 billion connected devices in manufacturing by 2022. And JP Morgan’s Global Equity Research team has already pegged manufacturing with having the greatest market potential. Although it’s difficult to accurately gauge the impact these technologies will have, it’s clear that experts are projecting it to be massive. But what do manufacturing leaders have to say about (IoT) Several months ago, LNS Research launched some new IoT survey questions that dig a little deeper into this topic. The study asks manufacturing executives and other senior leaders how the IoT is impacting their business today, as well as about their expected IoT investments going forward. What’s interesting is that almost half—43%—of these industry professionals indicated they still “don’t understand” or “know about” the IoT. Given the hype around the IoT, these numbers may seem a bit odd to some. But the emerging technologies have t...
Image
    Why is cyberspace security important? Cyberspace is very use full in IT Electronic computing and communication pose some of the most complex challenges engineering has ever faced. They range from protecting the confidentiality and integrity of transmitted information and deterring identity theft to preventing the scenario recently dramatized in the Bruce Willis movie  "Live Free or Die Hard,"  in which hackers take down the transportation system, then communications, and finally the power grid. As that movie depicted, networks of electronic information flow are now embedded in nearly every aspect of modern life. From controlling traffic lights to routing airplanes, computer systems govern virtually every form of transportation. Radio and TV signals, cell phones, and (obviously) e-mail all provide vivid examples of how communication depends on computers — not only in daily life, but also for military, financial, and emergency services. Utility systems prov...
Image
Why should you reverse-engineer the brain? Great thing about the Reverse engineering While some of thinking machines have mastered specific narrow skills — playing chess, for instance — general-purpose artificial intelligence (AI) has remained elusive. Part of the problem, some experts now believe, is that artificial brains have been designed without much attention to real ones. Pioneers of artificial intelligence approached thinking the way that aeronautical engineers approached flying without much learning from birds. It has turned out, though, that the secrets about how living brains work may offer the best guide to engineering the artificial variety. Discovering those secrets by reverse-engineering the brain promises enormous opportunities for reproducing intelligence the way assembly lines spit out cars or computers. Figuring out how the brain works will offer rewards beyond building smarter computers. Advances gained from studying the brain may in return pay dividen...

My video of technology

Image
Program of Inserting a number in a sorted linked list #include <stdio.h> #include<stdio.h> #define NULL 0 struct linked_list { int number; struct linked-list *next; }; typedef struct linked_lit node; main() { int n; node *head; void create(node *p); node *insert(node *p, int n); void print(node *p); head = (node *)malloc( sizeof (node)); create(head); printf(“\n”); printf(“Original list: “); print(head); printf(“\n\n”); printf(“Input number to be inserted: “); scanf(“%d”, &n); head = inert(head,n); printf(“\n”); printf(“New list: “); print(head); } void create(node *list) { printf(“Input a number \n”); printf(“(type –999 at end): “); scanf(“%d”, &list->number); if (list->number == -999) { list->next = NULL; } else /* create next node */ { list->next = (node *)malloc( sizeof (node)); create(list->next); ...
Image
How Sundar Pichai make googles CEO Everything you need to know about Google's new CEO,  sunder life story Google just announced some huge changes to its executive structure. Larry Page will run a completely new company called Alphabet, a collection of Google companies including Life Sciences, which manufactures glucose-sensing contact lenses, and Calico, which focuses on longevity. Sergey Brin will serve as Alphabet's President. Former Chrome and Android head Sundar Pichai will be Google's CEO. Many are still unfamiliar with Google's new chief executive, who first joined Google in 2004 and eventually worked his way up to be Page's right-hand man. Originally from Tamil Nadu, one of India's 29 states, Pichai studied at the Indian Institute of Technology Kharagpur, where he received a Bachelor of Technology. He then received a M.S. from Stanford and obtained an MBA from Wharton School at the University of Pennsylvania. At Wharton, Pich...
Image
10 Things You Should Know About Jack Ma, Founder of This Year's Biggest Tech IPO Jack Ma may not be as much of a household name in the U.S. as tech executives like Mark Zuckerberg or Jeff Bezos, but that might change soon. Fifteen years ago, Ma gathered a group of friends in his one-bedroom apartment to create Alibaba, a service that would help small businesses in China use the Internet to connect with markets abroad. Alibaba is now the largest ecommerce service in China, a country with more than 600 million Internet user This week, Alibaba is more than $21 billion in what will certainly be the largest technology IPO ever and perhaps the largest public offering of any company ever. The company's market cap is expected to be around $160 billion, more than double that of eBay and slightly more than Amazon. The funds raised from the IPO will help fuel Alibaba's expansion into the U.S. and other new markets. The public offering will also add to Ma's perso...
Image
Bill Gates’s father was a lawyer. A very successful one. His mother a teacher. Reading business magazines in middle school, Bill Jr. had a different dream – to open a company. You could say that’s how he started – with a childish dream. Many kids have dreams, though. How was he different? How Bill Gates  Started To Hack Next, Bill Gates saw a computer at 13. The school he went to bought one machine and a teletype. He paid for the time to use it. When money ran out, he hacked into the computer to use it for free. Then he got banned by the school. Then the school realized he had a rare skill so they asked him to use the computer and help them find bugs. He started to be a hacker. Bill Gates believes he can improve the way he thinks in general. He suggests and himself practices “brain rules” from the eponymous book by John Medina. The rules explain how the brain works from musical memory to the ability to play baseball. Since this is an infographic blog, I shoul...