This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
REQUEST="http://example.com" | |
NUM_REQ=100 | |
CONCURENT=10 | |
# Set up parallel processes (http://mlo.io/blog/2012/06/13/parallel-processes-in-bash.html) | |
mkfifo pipe | |
exec 3<>pipe | |
rm -rf pipe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Add or source this from .bash_profile/.bashrc | |
# usage: project project_name | |
PROJECT_DIR="~/Code" | |
project() { | |
PROJECTS=( $(find $PROJECT_DIR -type d -iname "$1") ) | |
if [[ "${#PROJECTS[@]}" -gt 1 ]]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var irc = require('irc'), | |
werewolf = require('./game'); | |
var client = new irc.Client('server', 'Werebot', { | |
channels: [ '#channel' ], | |
autoConnect: false | |
}); | |
client.connect(); | |
client.addListener('registered', function(msg) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
PREFIX=wiki | |
FILES=$(find . -type f -iname '*.md' -o -iname '*.markdown') | |
if [[ "$1" == "revert" ]]; then | |
# To Parse back to normal local [[links]] | |
for file in $FILES; do | |
sed -e 's/\[\(.*\)\](\/$PREFIX\/\(.*\))/[[\1]]/g' $file > $file.tmp | |
mv $file.tmp $file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/php | |
<?php | |
/** | |
* The Analyzer class. | |
*/ | |
class Analyzer { | |
private $fp; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: include/curl/multi.h | |
=================================================================== | |
RCS file: /cvsroot/curl/curl/include/curl/multi.h,v | |
retrieving revision 1.45 | |
diff -u -r1.45 multi.h | |
--- curl-old/include/curl/multi.h 20 May 2008 10:21:50 -0000 1.45 | |
+++ curl-new/include/curl/multi.h 29 Jan 2010 23:45:18 -0000 | |
@@ -135,6 +135,19 @@ | |
int *max_fd); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "socket" | |
class IRC | |
def initialize(info) | |
@server = info[:server] | |
@port = info[:port] || 6667 | |
@password = info[:password] | |
@nick = info[:nick] | |
@channel = info[:channel] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MooTools | |
var onImagesLoad = function(callback){ | |
var images = 0, | |
check; | |
$$("img").each(function(item, key){ | |
images++; | |
var img = new Image(); | |
img.onload = function(){ | |
images--; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, | |
del, dfn, em, img, ins, kbd, q, s, samp, | |
small, strike, strong, sub, sup, tt, var, | |
b, u, i, center, | |
dl, dt, dd, ol, ul, li, | |
fieldset, form, label, legend, | |
table, caption, tbody, tfoot, thead, tr, th, td, | |
article, aside, canvas, details, embed, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
directory = './tmp/' | |
# ajax upload | |
if params[:qqfile].class == String | |
name = params[:qqfile] | |
string_io = request.body | |
data_bytes = string_io.read | |
path = File.join(directory, name) | |
File.open(path, "w") do |f| | |
f.write(data_bytes) | |
end |