Skip to content

Instantly share code, notes, and snippets.

View nikitml's full-sized avatar

Nikita Lozhnikov nikitml

View GitHub Profile
@nikcub
nikcub / README.md
Created October 4, 2012 13:06
Facebook PHP Source Code from August 2007
@RedWolves
RedWolves / gist:3824059
Created October 2, 2012 23:50
Arduino Blink LED to SOS Morse code
int LED = 13;
int s = 300;
int o = 800;
void setup() {
// put your setup code here, to run once:
pinMode(LED, OUTPUT);
}
void character(int speed) {
@hisea
hisea / nginx
Created January 1, 2012 23:37
ubuntu passenger nginx init.d script
sudo cp nginx /etc/init.d/
sudo update-rc.d nginx defaults
sudo chmod +x /etc/init.d/nginx
/etc/init.d/nginx start