React is a declarative, efficient, and flexible JavaScript library for building user interfaces. It lets you compose complex UIs from small and isolated pieces of code called “components”. Followings are some fundamentals that you need to know when you work on React.
Sunday, November 4, 2018
Saturday, October 6, 2018
An Introduction to React using Flux Architecture
Flux is developed by Facebook as an application architecture for UI implementation. React is a JavaScript library which is used to build user interfaces. So Facebook use Flux architecture when they implementing user interfaces with React.
Applications which are implemented in React using flux architecture have four major parts. These are independent nodes with distinct inputs and outputs.
- Actions
- Dispatcher
- Stores
- Controller Views
Unidirectional Data Flow through major parts
Sunday, February 25, 2018
What is Natural Language Processing and how does it works ?
In 1950 Alan Mathison Turing (often called as the father of modern computing) published his famous paper titled “Computing Machinery and Intelligence”. That was a seminal paper on the topic of artificial intelligence. In here Alan introduced a game called "The Imitation Game” and he proposed a variation of this game that involves the computer.
Then Alan Turing expressed an opinion that if a machine could have a conversation with a human and trick the human into thinking the machine was a person itself, then it was artificially intelligent. That was named as Turing test and became the first step to the birth of artificial intelligence.
Sunday, November 12, 2017
What is Quantum Computing?
Today's computers which are named as classical computers, work by manipulating sequence of bits. A bit is the smallest unit of data in a classical computer which has single binary value, either 0 or 1. A quantum computer is worked by manipulating sequence of qubits. But a qubit is not limited to two values. A single qubit can represent 1 or 0 or any quantum superposition of 0 and 1.
Sunday, September 3, 2017
What is Microservices Architecture?
Since everything changes in the digital world, software applications developing techniques are also changing day by day. Microservices Architecture is a software development method which is a variant of the service-oriented architecture (SOA) architectural style.
Sunday, May 7, 2017
What is Docker?
“ It works on your computer. So why is it not working on my computer? ”
This is a familiar problem with all computer users. Is there a way to solve this problem? Yes. Have you heard about Docker? Docker is the world’s leading software container platform which supports to eliminate this problem. Let’s get to know about Docker.
Friday, March 31, 2017
What is failure detection and failure masking in distributed system ?
A distributed system
Is a model in which components located on networked computers communicate and coordinate their actions by passing messages. The components interact with each other in order to achieve a common goal.Tuesday, March 28, 2017
Let's create 8 bit LED binary counter
Here, I am going to discuss how to create 8 bit LED binary counter using Arduino micro controller board . This binary counter displays decimal numbers from 0 to 255 in 8 bit binary format using 8 LEDs, where as 1 is represented by lighting only left most (2) LED.Number representation will be increased from 0 to 255 automatically .
Following figure shows several lighting patterns according to the decimal value from 0 to 7.
Saturday, February 11, 2017
How to install eclipse juno IDE in ubuntu 16.04 ?
Are you tired of trying to install eclipse IDE in ubuntu
16.04 ? You don’t have to worry about that moreover. In this article, I am
going to describe how to install Eclipse juno IDE(from Eclipse Juno SR2 Packages, that has developed for Java EE Developers) in ubuntu 16.04.Eclipse
is an integrated development environment (IDE) used in computer programming,
and is the most widely used Java IDE.
Wednesday, February 8, 2017
How to install Apache Maven & Apache Hadoop in Ubuntu 16.04
In this article I am going to discuss how to setup Maven and Hadoop. The steps for all two frameworks are always the same:
1.Decompress the archive
2.Add the correct console variable
3.Test the correctness of the installation
1. 1 Download Latest Maven binaries from apache site
First you have to go apache site using this link
Sunday, February 5, 2017
How to install java in Ubuntu 16.04 using the terminal
In this article, I am going to describe how to install java in Ubuntu 16.04 using the terminal.
First I am going to add Oracle's PPA(Personal Package Archive) using terminal command.
You can open terminal easily by pressing Ctrl + Alt + t
Then type and enter below code.
sudo add-apt-repository ppa:webupd8team/java
After that update your package repository using this terminal command.
sudo apt-get update
Subscribe to:
Posts (Atom)
How to send Slack notification using a Python script?
In this article, I am focussing on sending Slack notifications periodically based on the records in the database. Suppose we have to monit...
-
What is Arduino Mega 2560 ? The Mega 2560 is a micro controller board which is designed for more complex projects like 3D printers an...
-
Last time I discussed about Arduino Mega 2560 micro controller board . Now I'm going to discuss about a simple project using Arduino Meg...