Skip to content

Instantly share code, notes, and snippets.

View summerblue's full-sized avatar

Summer summerblue

View GitHub Profile
@summerblue
summerblue / gist:4363625
Last active December 10, 2015 01:58
batch delete "manage my kindle list"
// prevent window reload while delete operation is in process, work in opera
// link: http://stackoverflow.com/questions/5204615/programatically-disable-window-location-reload
window.location.reload = function() {};
// set the page size
pageList.pageSize = 200;
pageList.gotopage(1);
// fire up
var a=document.getElementsByClassName('rowHeaderCollapsed');
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
. ~/.bashrc
mkdir ~/local
mkdir ~/node-latest-install
cd ~/node-latest-install
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1
./configure --prefix=~/local
make install # ok, fine, this step probably takes more than 30 seconds...
curl https://npmjs.org/install.sh | sh
var http = require("http"),
url = require("url"),
path = require("path"),
fs = require("fs")
port = process.argv[2] || 8888;
http.createServer(function(request, response) {
var uri = url.parse(request.url).pathname
, filename = path.join(process.cwd(), uri);
@summerblue
summerblue / python-SimpleHTTPServer-util
Created May 19, 2013 14:03
python-SimpleHTTPServer-util
#!/bin/sh
echo "Serving at http://localhost:3000"
python -m SimpleHTTPServer 3000
// We start by checking if the browser supports the
// Clipboard object. If not, we need to create a
// contenteditable element that catches all pasted data
if (!window.Clipboard) {
var pasteCatcher = document.createElement("div");
// Firefox allows images to be pasted into contenteditable elements
pasteCatcher.setAttribute("contenteditable", "");
// We can hide the element and append it to the body,
@summerblue
summerblue / gist:5655070
Created May 27, 2013 03:40
opening Go2Shell app preferences
open -a Go2Shell --args config
@summerblue
summerblue / gist:5669434
Created May 29, 2013 10:43
删除所有带后缀 .video 的文件
find . -name "*.video" -exec rm -rf {} \;

Laravel Cheat-Sheet

Common usage

View::share('user', $user); Makes $user available to all views.

URI::segment(1); First segement uf an URL (eg. site.com/de/hello = de).

@summerblue
summerblue / gist:5720257
Created June 6, 2013 08:59
lazy umount
umount -l /home/www/cj
mount /home/www/cj
@summerblue
summerblue / gist:5791164
Created June 16, 2013 07:01
Finding the process that is using a certain port in Linux, using the pid to kill
lsof -i tcp:7070