Featured Post

Organize and rename photos by EXIF data with PowerShell

This PowerShell script organizes and renames all photos in a selected folder using EXIF data. It will also create thumbnails of the images i...

Saturday, November 26, 2016

Building a Raspberry Pi Baby Monitor

sudo apt-get install motion
sudo vi /etc/motion/motion.conf

daemon on
framerate 30
width 640
heigh 480
ffmpeg_video_codec mpeg4
webcam_localhost off

sudo vi /etc/default/motion
start_motion_daemon=yes

sudo service motion start
Control: http://192.168.0.2:8080
Stream: http://192.168.0.2:8081

Installing Mono and ASP.NET on Raspberry Pi

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install mono-complete
mono --version
To install Mono Develop:
sudo apt-get install monodevelop
sudo apt-get install mono-xsp4