Build your own digital clock with a Raspberry Pi with this Kickstarter

David Saul is running a Kickstarter campaign to fund a new add-on board for the Raspberry Pi. Compatible with the B+, A+ and Pi 2, the PiMuxClock plugs into the 40-way GPIO header and stands up, giving you a large digital clock display. Also attached (on the enhanced version) is a temperature sensor (just because there was room on the board) and on the back is a mount point for an Adafruit real-time clock board, which means that internet connectivity is not required once the time has been set. There are various pledging options available, depending on how much you’d like to learn from and do with the kit. There are also pre-built options available if you can’t face the soldering (although this is a great kit to start with if you want to learn!)

Take a look and back the Kickstarter here.

Big Data on the Raspberry Pi 2

Newcastle-based Darren has written a tutorial that covers installing Apache Spark on the Raspberry Pi. Spark is a Scala library that is used for the analysis of so-called “big data”. This is the first in a series of posts and his next will deal with setting up a cluster of Pi 2s to do fast, distributed analysis. As he points out, it has to be the Pi 2 due to the increased memory and multiple cores, and it is limited by the specs of the machine such as the comparatively low throughput of the network interface. Read more here.

Limit SD Card writes on Rasberry Pi using Ramlog

It’s well-established that SD cards have a finite lifespan. This lifespan is dependent on the number of writes that you do to the card (although the number of reads is largely irrelevant). Alexander van der Sar has blogged about using a piece of software called Ramlog. At boot time, the current logs are read into memory, then subsequent log writes are done directly to RAM, therefore not using the SD card. The logs are then written at shutdown time to the SD card, thus minimising the number of writes. Read about this here.

Thanks to Peter Scargill who went through the pain of finding some instructions that worked!