Skip to content

Instantly share code, notes, and snippets.

View phodal's full-sized avatar
🕶️
digging a new hole.

Fengda Huang phodal

🕶️
digging a new hole.
View GitHub Profile
@phodal
phodal / nginx.sh
Created September 2, 2014 05:33
Nginx compile with PageSpeed with cache_purge
./configure --user=www --group=www --add-module=../nginx-static-etags --add-module=../ngx_pagespeed-1.8.31.4-beta --add-module=../ngx_cache_purge --prefix=/usr/local/nginx --with-pcre --with-http_spdy_module --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-mail --with-mail_ssl_module --with-ipv6
import pcd8544.lcd as lcd
import time, os, sys
import subprocess
if not os.geteuid() == 0:
sys.exit('Script must be run as root')
ON, OFF = [1, 0]
arg='ip route list'
@phodal
phodal / arduino-with-hc-sr04-lm35
Created February 13, 2014 12:10
arduino with hc-sr04 lm35
const int trigPin = 13;
const int echoPin = 12;
float temp;
int tempPin = 0;
void setup() {
Serial.begin(9600);
}
@phodal
phodal / index.html
Created October 9, 2012 14:35 — forked from musart/index.html
web application for breakout.js client
<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=320; user-scalable=no" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>PhoneGap</title>
<style type="text/css">
body {
margin: 15px;
font-family: sans-serif;