View Homebrew Uninstall
#!/bin/sh | |
# Just copy and paste the lines below (all at once, it won't work line by line!) | |
# MAKE SURE YOU ARE HAPPY WITH WHAT IT DOES FIRST! THERE IS NO WARRANTY! | |
function abort { | |
echo "$1" | |
exit 1 | |
} | |
set -e |
View Homebrew usr-local
$ sudo chgrp -R admin /usr/local | |
$ sudo chmod -R g+rwx /usr/local | |
$ sudo chmod -R o-w /usr/local |
View Serial.read_to_string
// Buffer to store incoming commands from serial port | |
String inData; | |
void setup() { | |
Serial.begin(9600); | |
Serial.println("Serial conection started, waiting for instructions..."); | |
} | |
void loop() { | |
while (Serial.available() > 0) |
View Makefile up one folder
$(subst $(notdir ${CURDIR}),,${CURDIR}) |
View Sublimetext_Dropbox
ln -s ~/Dropbox/dev/app-data/sublime-imac/Installed\ Packages ./Installed\ Packages | |
ln -s ~/Dropbox/dev/app-data/sublime-imac/Packages ./Packages | |
ln -s ~/Dropbox/dev/app-data/sublime-imac/Pristine\ Packages ./Pristine\ Packages |
View Basename_Curdi
$(shell basename $(CURDIR)) |
View moti.sublime-project
{ | |
"folders": | |
[ | |
{ | |
"path": "/Users/Ladislas/dev/leka/moti" | |
} | |
], | |
"settings": | |
{ |
View serialPi.js
var serialport = require("serialport"), | |
SerialPort = serialport.SerialPort, | |
myPort; | |
var Fiber = require('fibers'); | |
// Delay function using fibers | |
function sleep(ms) { | |
var fiber = Fiber.current; | |
setTimeout(function() { |
View Arduino-Makefile
# Everything gets built in here (include BOARD_TAG now) | |
ifndef OBJDIR | |
OBJDIR = $(PROJECT_DIR)/bin/$(BOARD_TAG)/$(CURRENT_DIR) | |
$(call show_config_variable,OBJDIR,[COMPUTED],(from BOARD_TAG)) | |
else | |
$(call show_config_variable,OBJDIR,[USER]) | |
endif |
View john zsh theme
# Clean, simple, compatible and meaningful. | |
# Tested on Linux, Unix and Windows under ANSI colors. | |
# It is recommended to use with a dark background and the font Inconsolata. | |
# Colors: black, red, green, yellow, *blue, magenta, cyan, and white. | |
# | |
# http://ysmood.org/wp/2013/03/my-ys-terminal-theme/ | |
# Mar 2013 ys | |
# Machine name. | |
function box_name { |
OlderNewer