Posts

Showing posts from 2016

SEO

Image
5 Psychology-Based Design Tips to Improve Engagement on Your Website   SEO Your brand’s message isn’t limited to the word choices that you make. The environment under which you present your message is equally (perhaps even more) important. Subtle aspects, such as color, line, shape and font, matter. I’ve already shared details about  and a few But, most people believe that design is a creative talent. And, they think that you’re either born with it or that you can’t develop a knack for it. I beg to differ… People respond to visual stimuli subconsciously. For starters, you need to ditch the notion that your website has to be elegant. Beautiful websites that don’t function well have high bounce rates. And, they don’t convert well. You just need a functional website that’s easy to use and loads fast. But, learning a few psychology principles will help you to improve the usability of your website and thereby increase the engagement that you receive. S...

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...