Skip to content

Instantly share code, notes, and snippets.

View sirleech's full-sized avatar

Christopher Lee sirleech

  • Canberra, Australia
View GitHub Profile
@sirleech
sirleech / install-mapnik2.md
Created February 8, 2012 05:04 — forked from cspanring/install-mapnik2.md
Mapnik2 on Ubuntu 11.10 installation

Mapnik2 on Ubuntu 11.10 installation

Dependencies

sudo apt-get install -y g++ cpp \
python-dev libxml2 libxml2-dev \
libfreetype6 libfreetype6-dev \
libjpeg62 libjpeg62-dev \
libltdl7 libltdl-dev \
libpng12-0 libpng12-dev \
@sirleech
sirleech / arduino_multibyte_serial_example.cpp
Created August 2, 2011 23:43 — forked from fairchild/arduino_multibyte_serial_example.cpp
Simple updated examples of arduino serial communications
/* ------------------------------------------------
* SERIAL COM - HANDELING MULTIPLE BYTES inside ARDUINO - 03_function development
* by beltran berrocal
*
* this prog establishes a connection with the pc and waits for it to send him
* a long string of characters like "hello Arduino!".
* Then Arduino informs the pc that it heard the whole sentence
*
* the same as examlpe 03 but it deploys 2 reusable functions.
* for doing the same job.