Skip to content

Instantly share code, notes, and snippets.

View mashihua's full-sized avatar
🏠
Working from home

Shihua Ma mashihua

🏠
Working from home
View GitHub Profile
@mashihua
mashihua / install.md
Last active November 16, 2017 02:18 — forked from seamusjr/install.md
Setup OS X 10.7 w/ homebrew, oh-my-zsh, rvm, nvm

Setup new Mac with OSX Lion from scratch.

These commands are good as of 2012-03-18.

Install Xcode 4

The download/install takes a while so start it first. When it finishes downloading you will still need to run it to complete installation.

Note: Make sure you install the XCode Command Line Tools after XCode is done installing. To do this go to Xcodes -> Preferences -> Downloads -> Command Line Tools -> Install. If you don't you might not be able to install brew packages (i.e. brew install wget will fail).*

@mashihua
mashihua / hello.coffee
Created September 3, 2012 07:56
Phantomjs invoke seajs
define (require, exports, module) ->
console.log 'From hello'
exports.sayHello = ->
"Hellow world!"
return
@mashihua
mashihua / README.md
Created September 3, 2012 02:36
Watch file or directory changed
@mashihua
mashihua / README.md
Created July 9, 2012 05:04
FIN_WAIT2 problem at socket.io

#FIN_WAIT2 problem at socket.io

I found FIN_WAIT2 was increased at server by using socket.io, version is 0.9.5. So I investigate what protocol was cause this issues. First I was do command sysctl -A | grep net.ipv4 to see my TCP setting:

net.ipv4.tcp_fin_timeout = 30
net.ipv4.tcp_keepalive_time = 300
net.ipv4.tcp_keepalive_probes = 9
net.ipv4.tcp_keepalive_intvl = 75

Second, I do this follow:

@mashihua
mashihua / ddosdeny.sh
Created July 5, 2012 03:50
Simply block DDOS attack
#!/bin/bash
##
## Simply block DDOS attack
##
ARGV1=$1
if [ $ARGV1 ]; then
DEFINE=$ARGV1
else
DEFINE="100"
@mashihua
mashihua / example.coffee
Created July 3, 2012 10:36
watch file or directory
#!/usr/bin/env coffee
{watch,eventWatch} = require './watch'
{spawn} = require 'child_process'
less = require 'less'
path = require 'path'
watch 'lib', {extention: '.coffee'}, (err, file) ->
throw err if err
coffee = spawn 'coffee', ['-c', '-o', 'lib', "#{file}"]
@mashihua
mashihua / dnspod.coffee
Created June 20, 2012 03:54
Simply node.js client for DNSPod
#!/usr/bin/env coffee
common =
# login email
login_email : 'your mail'
# password
login_password : 'password'
# response format
format : 'json'
@mashihua
mashihua / post-commit
Created June 19, 2012 07:34
Git commit hook for trello.com
#!/usr/bin/env node
//please requist your app token from
//https://trello.com/1/connect?key=yourkey&name=git-hook&expiration=never&response_type=token&scope=read,write
var key = "your key";
var token = "your token";
//https://trello.com/board/-/4e9003324a517dad44465056
var board_id = "4e9003324a517dad44465056";
var Trello = require("node-trello");
@mashihua
mashihua / README.md
Created June 15, 2012 09:59
Practice BFN
@mashihua
mashihua / README
Created June 15, 2012 04:26
TextMate 2 的 rmate 用法
打开 Preferences -> Terminal 保证:Accept ramte connectio 选中。
mate ~/.ssh/config
添加下面:
Host *
RemoteForward 52698 127.0.0.1:52698
登录远程的一台 linux 机器。运行下面的命令: