Skip to main content

Elon Musk found something 'Awesome'

Recently a tweet of Elon got a viral response around the tech enthusiastic community.  It's not about space, autonomous cars or the financial success of Tesla stock this time.

We all know that there is an ongoing project called 'NeuraInk'. This is going to be all about that. To the people who don't know that, Neuralink is an ultimate goal of artificial super-intelligence and It could be an ultimate success of human evaluation.

The billionaire said his start-up Neuralink is going to deliver an awesome update by end of this year. There is no doubt, Elon had shown rapid growth in most of the sectors by his inspirational thoughts over the last year and he is not done yet. He believes the brain-machine interface can help to overcome disabilities, injuries and may more real-life problems by control the computers without a physical connection. The idea of Neuralink is to implant the flexible threads between the neurons in the human brain and collect the data as they fire. It is sounds weird but not new. The history of implantation starts in 1957. 

Neurons fire the signals as a very small electrical impulse (for action potential known as spikes) which can be tracked by Neuralink electrical threads. these threads are capable of transferring a higher volume of real-time data (according to the papers as many as 3,072 electrodes per array distributed across 96 threads) and less likely to damage the brain. Also, these threads are thinner than a hair(4 to 6 micrometer). Musk and the team say the implantation could be done with a surgical robot winch has an 87.1 percent success rate over the 19 surgeries. So the next question is going to be "Will it work?". Yes, It worked while testing on a male Long-Evans rat. Neuralink claimed it was implanted with the help of a surgical robot and action potentials are successfully identified using an online detection algorithm. The only concern here is, there are no updates on how secure it is medically to carry an electronics gadget inside the brain.

As we know last July, musk and the Neuralink team did a complete presentation on their plan. Also, they announced N1 which made with flexible threads to be implanted and promised to implant that for the first human by 2020. The updates that we got so far say we're going to meet the early stage of this technology by end of this year. Along with that Elon's tweets makes us even more excited. with those wonders, we can expect a live follow-up event this summer. Anyhow, from these crazy AI-powered innovations the way of living is going to be 'Awesome'.  


Find me on medium  and follow me on instagram to get the constant updates.

Comments

Popular posts from this blog

Batch processing in modern Java applications with Spring Batch.

In the world of software development, Batch processing has been one of the challenging areas to implement in the early stages. But these days there are plenty of solutions available out of the box in the frameworks and platforms to do batch processing. In this article, I will share my experience with one such tool, Spring Batch. This will enable you to do batch processing by configuring this with your existing Spring Boot applications. Before we jump into the Spring Batch let me brief you about batch processing. the name might make you fear a lot about it in case if you are new to this. It’s nothing but processing the transactions (data) as small chunks or groups without any manual interaction from the user of the application. You may ask why you want to do that. The answer is because it has a lot of benefits in terms of performance and the efficiency of the application as you deal with a large dataset.  Now let’s understand how it’s going to work and how we are going to implement ...

FaaS in Action with AWS + Serverless Framework for Java Developers

Serverless is becoming popular and Function as a Service is one of the trends in the serverless world. So being familiar with this technology is a really good addition to the profile as a developer. But from the very beginning of serverless, the community was preferring to use javaScript as the programming language. The reason for that is Serverless was initially made for less compute-intensive and more I/O intensive services where the JavaScript is performing well. So, that leads JavaScript to hold nearly 90% of the serverless world. But moving forward the way we use serverless and utilize computational power has changed. So there is nothing wrong for a Java developer to try out the FaaS and build comprehensive services. Therefore, I will be giving a practical example for developing an API in Java and deploying it in the AWS cloud. There are a few prerequisites to follow along Basic knowledge developing an API Basic idea about AW...

Firebase Cloud Messaging — Part 1 — Send Messages From the Backend

Firebase Cloud Messaging is one of the easiest and reliable ways of sending messages/notifications from the backend to the front-end. So, I would like to share my experience with a cloud messaging service. The best part is, we all know that firebase has been providing a set of great services for free of charge. FCM is one of them. You could use this service for multiple scenarios in multiple ways. I am going to follow the Admin SDK option in our example which is the popular way of doing it. Also, in part — 01 of this topic, I will be focusing on sending the message from the back end, and in part — 02 of this topic I will show you how you can handle the received messages in the front-end. Admin SDK supports almost all the languages and technologies such as Java, ASP.NET Core, Node JS, etc. in this example I will be using the ASP.NET Core to demonstrate the back-end side of it. Feel free to use any languages that you prefer. In order to get started with the FCM admin SDK, you need to cre...