Skip to main content

A Path To Block Chain

 Make it easy

Out of oven

For a long time blockchain have been known as a theory but bitcoin changed it all. On January 3 2009 bitcoin actually came into existence. Satoshi Nakamoto found something unusual. With the concept of blockchain and mined very first block of bitcoin with reward of 50 bitbucks known as bitcoins. (ok enough with history class lets jump into fun part now).

Fun part

Bitcoin: Knock knock! 
Currency: who is there!
Bitcoin: Full stop
Trolling banks and financial departments of Europe and America, Bitcoin flew from ground to paramount in no time leaving others waving. For a very long time brokers have been piercing your gold mines with hammers but Bit dude being a good sheriff said "Stop that"  
Brokers: "Why"
Bit dude: "I wanna take over"
Brokers: "With what army"
Bit dude: "This army 'anonymous transactions' "
Brokers: "Fair enough"
With course of few years bitcoin went through so many ups and downs. Especially after Elon D Musk's tweet about wastage of resources but it is still in business because of its roots going down in market.
Other ico and nfts have been placing a high impact to market. It gave birth to a new race of digital world. But still if block chain based currencies are so cute to exist why are countries being jerks and banning it??? 
Why Why Why!!!!!!!!!!!!!!!!!
The answer is in next blog

Comments

Popular posts from this blog

Theory of Automata Assignment #2 Part #2 Regular Expression # 6 The set of strings over {a,b} that contain at least two a's or exactly two b's. (a+b)*(a)(b*)a(a+b)*+a*b(a*)b(a*) Regular Expression # 7 The set of strings over {a,b} that contain even length but not multiple of 3 (aa*)(aaa^) Regular Expression # 8 The language over {a,b}contains exactly one double letter.   (ε + b)(ab) ∗aa(ba) ∗(ε + b) + (ε + a)(ba) ∗ bb(ab) ∗(ε + a)

Data Types in C++

Hello azumavenger welcome to my blog. Today we are going to talk about the data types. Data Types in C++ Actually the data type tells the compiler or the interpreter that in which mean the programmer intends to use the data. That sounds confusing right? Well their is nothing to be confused of, most of the people use the word data type and they know what it is but they can't explain it in simple words.  Lets have an example. A student Kutbud'deen wrote the following code #include <iostream> using   namespace  std; void  main() {   int  var1 = 0; //integer    char  var2 =  '0' ; //character   if  (var1 == 0){ cout <<  "var1" ; }   else   if  (var2 == 0){ cout <<  "var2" ; }   else  { cout <<  "no one" ; }   system( "pause" ); } The...

TA ASSIGNMENT 1 PART 3

Theory of Automata Assignment #1 Part #3 Recursive Definition #11: Language of Expressions having at least one operator defined on  Σ ={+,-,*,/,a,b}  Step 1#- a+b ,a*b,a/b and a-b are in L Step 2#- If x is in L then x+x,x-x,x*x,x/x is also in L Step 3#- No words except generated above can be considered as member of Language. Recursive Definition #12: Language of string starting and ending on different alphabet defined on  Σ ={a,b} Step 1#- ab and ba are in L Step 2#- If x is in L then axb,and bxa are also in  Σ*.   Step 3#- No words except generated above can be considered as member of Language. Recursive Definition #13: Language of even numbers Step 1#- 0 and 2 are in L Step 2#- If x is in L then x+2 and x-2 is also in L .   Step 3#- No words except generated above can be considered as member of Language. Recursive Definition #14: Language of negative integers d...