Skip to main content

Technology prediction for 2018

Bubbles of bitcoin, blockchain, machine learning, deep learning, artificial intelligence and more



People usually appreciate me for my predictions on technologies. As I already noted our team will quickly hit the edge case for any use cases and that's supposed to be the reason for my better prediction rate. And so, here are my predictions…

Bitcoin bubble

When Bitcoin became talk of the town/industry, I informed my boss and colleagues that I find no real use case for this digital currency--except in underground markets like drugs, etc. In fiat currencies, there is at least a way to take legal route, in case, if you've transferred the money and not received the goods. But, in Bitcoin, this is not possible at all as it is not a legal currency. So, if there is no trust, the chances that other person can cheat you by not sending the goods and or not transferring bitcoins after receiving goods.
My stand above vindicated by the article Ten years in, nobody has come up with a use for blockchain

Blockchain bubble

Some overwhelmed people even told me that the Blockchain, the underlying technology behind Bitcoin will become huge hit. I'm highly skeptical from the initial stage itself. The only advantage of Blockchain in my opinion is its ability to provide immutable public ledger/database--but at very high cost (of mining). I think, people who're betting on Blockchain for such security feature will move back to PGP kind of public-private key encryption mechanism.

Machine learning, deep learning, artificial intelligence bubbles

In 2017, these buzz words became popular. These technologies were projected as serious human replacements. When I checked these technologies, I have noticed that these are far from perfect and at least now they can't replace people. My stand is vindicated by the interview of Ryan Dahl, creator of Node.js and Software Engineer working at Google Brain, in which he said:
I mean, this is my opinion. We are nowhere near matching human intelligence. I mean, the machine learning systems that we're using are very, very simplistic, and don't work at all. In fact, I have a blog post about my residency, in which I enumerate all the difficulties there are in developing these models. I think people who don't work in the field have this idea that you can kind of take this model and push some data through it, and it's just going to work. But that's not the case. These things are very finicky and not well understood, and it takes many, many months of careful tweaking and experiments to get even the most modest results.

Google based SEO bubble

I had my strong skepticism in SEO from the initial stage itself. As a Google user, I'm very much happy with its instant answers, instant lyrics display, etc--within Google's result page and without taking to any websites. But, from a vendor/website point of view, it will be a big letdown as Google is hijacking all contents and web. So, in my point of view, people will look for alternate source of traffic.

Back to idea-based startups and MVPs

So, I believe in this year, people will renew their interest in short term MVPs (Minimum Viable Product) and so there may be more idea based companies like AirBnB be coming up.

Better instant auto-magic REST API server technology

Unfortunately, this is one of the tiring aspects of webdeving. Current SPA (Single Page Application) approach is over 7-years old, but still we don't have a solid Rails-like framework/technology to build REST API server. As noted in the Restyaboard wishlist in GitHub, I'm eagerly waiting for one auto-magic REST API server technology and hoping for one in this year.

Multi platform React Native Starter Kits to take the lead

We already have few React Native Starter Kits such as react-native-nw-react-calculator, ReactNativeUniversalreact-native-web-fiber-boilerplate, react-native-desktop, React Native for OS XReact Native for macOS, React Native plugin for Universal Windows Platform (UWP)  that can target Android, iOS, Web and also Desktop. I hope that it will evolve to bring more standardization. I also believe and wish that such multi platform starter kit gets a WYSIWYG IDE for React Native.

Comments

Popular posts from this blog

Interview question #1

Since I have been asked to interview experienced PHP programmers, I was preparing few interview questions. I came to know, most of the people ask questions found in the Internet; most of them are like "What is the function used to connect MySQL DB in PHP". Personally, I don't like these types of questions; I'd thought the person must apply ideas what he was taught in colleges--finally I came out with one question: A product vendor has Quantity Vs. Price data like 1 -> Rs. 50 2 -> Rs. 95 3 -> Rs. 140 .... like upto 1 million data. He wants a system, which gives the price when the quantity is provided. For example, if you provide the quantity value as 2, then it should provide Rs. 95. How this system can be designed? As expected, all the people said about using database tables and quering on quantity. I have asked them to find out a system which doesn't use databases--provided the accuracy of the system may not be 100%--it may give at least 90% ac...

Open source resume templates with JSON-LD (SEO-friendly) support

I don't usually keep track of the projects that I worked on. I have been recently advised to keep resume updated with the projects list. And so I have searched for resume templates and tools. Indian resume Vs International resume During the process, I have found that there are vast differences between the format of Indian resumes and International resumes. Indian resumes are extremely verbose with number of projects, team size, client name, etc. whereas international format is more succinct and short. So I was kind of lost in the process in adopting the template. LinkedIn to the rescue? No. Unfortunately, LinkedIn format is "common" and is not easy to update. Moreover, these days LinkedIn has become signupware [sic] and so accessing resume is a nightmare. Enter JSON Resume JSON Resume is an awesome open source approach for creating resume. I accidentally came across while searching for JSON-LD format for resume. Couple of great features: Resume hosting (op...

htmlspecialchars() bug in blogger.com

Found a strange htmlspecialchars() bug in blogger.com The title of my blog is <?php echo 'R. Rajesh Jeba Anbiah'; ?> , but blogger.com doesn't convert the html entities in the title when it spits out. Because of this bug, the title doesn't appear in my blog--browser just treats it as a broken html tag. This bug could have been fixed by using htmlspecialchars() , if it's powered by PHP . Also, noticed that this compose box eats any texts entered such. I gonna report this bug.