Clone and backup your Raspberry SD Cards with dd command
One of the most useful tools in Linux world, especially when you spent zillion hours configuring that perfect setup on your Pi and you don’t want to lose it, is DDTool. This OS image management tool is not new, but it has become even more relevant since the introduction of…
Back to basic: Code “Hello world” in C with Raspberry Pi 3
So you all got your new and shiny Raspberry Pi 3, and you can’t figure out how to program it. Before you dwell into endless digital jungle, here is the most fundamental way to write your first piece of software, to take you back to a nostalgic era when software…
What do you use your Pi for?
In Melbourne we run our monthly Jam. We would like to know what people from other cities are doing in their Jams. Share your Raspberry Pi projects with the world here: Raspberry Jam Project List Get some suggestion on how to move forward, or simply brag on what you have achieved.
Speech recognition on Raspberry Pi 2 with Python 3 (preparation)
There are a few modules you can use for converting speech input into a textual output. One of the simplest one for the beginner is : https://pypi.python.org/pypi/SpeechRecognition/ Here are the preparation steps that we use to try the module: Plug a microphone into a USB Sound card dongle. Follow this…
Quickly and simply install Node.JS on Raspberry Pi 2 Raspbian
Update the system sudo apt-get update sudo apt-get upgrade Download the source curl -sL https://deb.nodesource.com/setup | sudo bash – Install it sudo apt-get install nodejs Check version number nodejs -v v0.10.40 Run it nodejs >console.log(‘hello mojo!’); hello mojo