Bitcoin, the name became popular in 2017 when its price was touching the highs. Today everyone knows about Bitcoin. It is also because its price volatility is very high and some countries banned buying and selling it (then it was very much in the news). The first Bitcoin ledger started on 3 January 2009 (Organized by Satoshi Nakamoto). Let’s know some more interesting things about Bitcoin.
.
A few days ago, I met a girl in the office. She knew that I had been working on the blockchain for a long time. When I started going towards my workspace, she stopped me and said that I have some questions about blockchain, so can you help me with this? My answer was absolutely, you can ask comfortably. She asked me three questions, I share with you.
When asked, she had a light smile on her face, indicating her eagerness. I will share with you what I have answered. …
Bitcoin is the most popular cryptocurrency and its price is continuously grown up in 2020. Many developers are looking for a guide to set up a bitcoin node. I heard the word bitcoin first time in 2016 and I have worked on blockchain development for more than the last two years. Bitcoin code is written in C++
. We need to compile a code (if you want to do some changes to the code you can do it) then setup the node. So let’s look at the steps with a fresh operating system. I am dividing this article into two parts. …
There are many packages available to execute the command in the background but the most popular and easy approach is for Screen Command. Let’s understand how it works.
Installation
Firstly we have to install the screen package on our machine. In some operating system screen package already installed.
[CENTOS] yum install screen -y
[LINUX] apt-get install screen -y
Used
### We have to open the new screen using the below commandscreen -s <Tag_Name> (Here Tag_Name is for identity it is optional)Example:
screen -s mysite (With Tag)
screen (without the tag)## You can do whatever you want and come to the original screen…
Blockchain is the most popular word, Bitcoin has made it popular. We know about cryptocurrencies and the technology behind works is blockchain. Let’s understand first about the blockchain keyword. Blockchain has made with the two words Block and Chain or we can say it is a chain of blocks. Every block contains the data (more will discuss later) and added after the previous block that makes a chain.
Blockchain is a public electronic ledger based on a Peer to Peer system that can be accessibly publicly, anyone can see the ledger but no one can change or manipulate the ledger because it’s immutable and bind with cryptographic security. …
When we go to the reservation counter to book a ticket or bank to deposit the cash, So when we enter the line and we stand at the end of the line, and the person who is at the front of the line is served first. After that, the next person will come at the head of the line and exit from the queue. This process keeps working and finally, we will reach the head of the line and we will exit the query and be served.
What is a Queue: A queue is a data structure used for storing data (similar Stack). A queue is a line of people or things waiting to be served in sequential order starting at the beginning of the line. …
A stack is a linear data structure used for storing the data. let’s consider the office work, a developer is working on a long-term project and the manager gives the developer to a new task which is the high priority. So the developer puts the long-term project aside and starts work on the new task. After some time the phone rings and the priority is changed as it must be answered immediately. The developer pushes the present task into the pending tray and answers the phone. …
Backtracking is an improvement of the brute force approach. It systematically search for a solution to a problem among all available options. Backtracking can be thought of as a selective tree/graph traversal method. The tree is a way of representing some initial starting position (the root node) and a final goal state (one of the leaves.)
What is Backtracking: It is use when you have multiple solutions to a given problem and you want all those solution.
This is one of problem solving strategy. By using this we can solve to the problem or write an algorithm. This strategy use brute force approach. …
We heard the name of Data Structure & Algorithms in so many times. Let’s understand this with a real example: Suppose we have to go to another city and we have many options like: by bus, by train, by flight, my own vehicle, etc. So we choose the source based on the requirement like what budget we have and what time do we have to arrive. …
When we start to learn something new then many problems come but it is not to down your motivation but to teach you with the butter. Here we will discuss the below two questions with What should we do:
About