Blog Feed

Bluetooth controlled RC Robot

Table of Contents 1. About Arduino / Raspberry Pi : 2. Architecture of Arduino / Raspberry Pi : 3. Kit details: 4. Project Statement: 5. Details of the project: 6. Conclusion : 1.About Arduino UNO: Arduino is a single-board microcontroller to make applications more interactive with its surroundings . Arduino Uno is a microcontroller based […]

Read More Bluetooth controlled RC Robot

Ubuntu

Ubuntu is an African word that literally means “humanity to others .” Ubuntu is a complete Linux operating system . Ubuntu was a try to take the Debian Linux OS and make it user friendly with a GUI . Developed by Canonical Ltd , It has a few basic philosophical principles , Ubuntu will always […]

Read More Ubuntu

Conditionals and Loops

Control flow syntax makes use of colons and indentation or else know as white space. if some condition ,then execute some code. elif some other condition, then execute some other code. else if none of the above conditions are true , then execute some other code by default = if x: #it equates it to […]

Read More Conditionals and Loops

How a bitcoin transaction works

1. A user needs to open the wallet application and attempt to send the a certain crypto from sender to recipient .2. This transaction now awaiting to be picked up ,it hovers in a ‘pool of unconfirmed transaction’3. Miners on the network select transactions from these pools and form them into a ‘block’.4. By selecting […]

Read More How a bitcoin transaction works

Block Chain

it is immutable ,sequential chain of records called Blocks. They can contain transactions,files or any data you like .They are chained together using hashes. It uses hash functions :it takes in input value and that creates an out put value deterministic of the input value. It takes an input and outputs a hash . A […]

Read More Block Chain

Useful operators

range(): for num in range(starting_value,ending_value,increment)ending value is not considered inside the num range generates the number instead of storing it in a list.. Enumerate What it does is it returns an index counter with the data value in a loop .for egword=’abcde’for index,letter in enumerate(word): print(index) print(letter) zip (): just like a zipper it will […]

Read More Useful operators