Text

Vim links (for vim fans)

Tags: vim
Photo
Forget cowsay. Use Ponysay!
    $ sudo add-apt-repository ppa:vincent-c/ppa 
    $ sudo apt-get update
    $ sudo apt-get install ponysay

Forget cowsay. Use Ponysay!

    $ sudo add-apt-repository ppa:vincent-c/ppa 
    $ sudo apt-get update
    $ sudo apt-get install ponysay

Tags: bash
Link

IE6/7/8/9/10 in XP/Vista/Seven virtualbox images, to be run inside a virtualbox host for Linux/Mac

Download a Virtual Machine. For Mac, Linux, or Windows.

Tags: IE
Text

PHP on Heroku

Tags: php heroku
Link

Circuit

Text

Saturday mornin’ git tricks

Git tricks

List all changed files between two commits:

git show --pretty="format:" --name-only  684ac7e..a1a0667 | sort | uniq

Delete local branche 3301:

git branch -d 3301

Delete remote branche 3301:

git push origin :3301

Pushing the local dev branch to the remote master branch:

git push staging dev:master

Create a new branch from another you’re not currently in:

git checkout -b feature_branch dev

is equal to

git checkout dev

plus

git checkout -b feature_branch

Git-gutter

Vim version : https://github.com/airblade/vim-gitgutter

SublimeText version : https://github.com/jisaacks/GitGutter

screenshot

(Thanks to @kwlisje)

Tags: git
Text

PCD8544 Library for Raspberry Pi

binerry:

(Nokia 3310/5110 Display)

image

For some Arduino/ATmega328p/µC-based projects i’ve used a PCD8544-based Nokia 3310/5110 Display. The main advantages of this display are the low price and the simplicity of driving it. So since i’ve got my first Raspberry Pi and discovered the GPIO-functionality i wanted to drive this display with my RPi.

Read More

Link

A simple github project I setted up recently. Generates graphs :

graph

Link

temperature-pi is a simple Raspberry Pi based temperature logger using a DS18B20 1-Wire digital temperature sensor, & a local sqlite database. It’s based on the php-gpio PHP library

Link

php-gpio : a PHP library to play with the Raspberry PI’s GPIO pins