Wednesday, November 5, 2014

Why I haven't tried this when I studied 555 timer

It always a good idea to connect output to a speaker to get the feeling that what actually the device do in reality.
Usually we connect the output to  CRO in our college labs, But I feel its always a good idea to take the output to a speaker in your own experiments labs.
The Sine waves you see in the CRO gives you experimental results,but if you need to feel electronics it always good to connect the outputs to some display or speaker kind of devices.



Electronics project: super hearing aid


Hadoop Tutorial 1 - What is Hadoop?

One of the advantage of Social networking website is  they helps to promote new technologies even though its their need.
 
 Apache Hadoop is an open-source software framework for distributed storage and distributed processing of Big Data on clusters of commodity hardware. Its Hadoop Distributed File System (HDFS) splits files into large blocks (default 64MB or 128MB) and distributes the blocks amongst the nodes in the cluster. For processing the data, the Hadoop Map/Reduce ships code (specifically Jar files) to the nodes that have the required data, and the nodes then process the data in parallel.
 
 
 



Raspberry Pi - How to check Free space in Raspberry Pi

I was actually looking  how to check free space in Raspberry. The linux df command helps to check the disk file system.
 
You can try df -BM to get the disk space .
 
Raspberry Pi Using ‘-h‘ parameter with (df -h) will shows the file system disk space statistics in “human readable” format, means it gives the details in bytes, mega bytes and gigabyte. For more details on Df command visit http://www.tecmint.com/how-to-check-disk-space-in-linux/ 

Sunday, November 2, 2014

Express node first program ran in Raspberry pi

Express is a framework for node.js. It will easy build application using Express. Started to try some applications with Express in Raspberry Pi.

Express is a minimal and flexible Node.js web application framework that provides a robust set of features.http://expressjs.com/

installation - http://expressjs.com/starter/installing.html

examples - http://expressjs.com/guide/error-handling.html