tiefpunkt:

The PirateJukeBox

The PirateJukeBox is a wifi controlled music player, housed in an old ghettoblaster. It takes the PirateBox idea one step further by letting people play music, add their own music, or grab what’s currently playing using a wifi access point.

I used a RaspberryPi together with a USB Wifi stick, and fitted them inside the old boombox, onto which I soldered an internal 3,5mm audio connector. On the Pi, there’s the original PirateBox software running, alongside with an MPD server, that can be controlled from any laptop or mobile device.

Currently, it still has to be powered from mains power, but I hope to make it portable in the future.

Raspberry Pi Automatic Video Looper

Raspberry Pi Automatic Video Looper

Updating Raspberry Pi: Packages, Kernel, and Firmware.

Updating Packages

sudo apt-get update && sudo apt-get upgrade
This updates the package list and upgrades all the packages. You can use the -y flag if you hate typing yes. After the kernel and all packages are upgraded, this command should show you:
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded

 

Updating the Kernel

sudo apt-get update && sudo apt-get -y dist-upgrade
This upgrades your linux kernel distribution. These are regularly released. You can see which version you have by running:
uname -a
 

Updating the Firmware

sudo rpi-update
This upgrades the firmware as long as you have the Hexxeh script downloaded. It and instructions can be found here: https://github.com/Hexxeh/rpi-update

Raspberry Pi as low-cost HD surveillance camera – CodeProject

Raspberry Pi as low-cost HD surveillance camera – CodeProject