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 | |
# depends on a file named full.bin containing the base64 decoded contents of the message | |
# yes this is a mess, sorry I'm in a rush | |
CIPHERS="bf-cfb | |
bf-ofb | |
cast5-cfb | |
cast5-ofb | |
des-cfb |
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/env bash | |
# depends on a file named full.bin containing the base64 decoded contents of the message | |
# yes this is a mess, sorry I'm in a rush | |
CIPHERS="aes-128-cbc | |
aes-128-ecb | |
aes-192-cbc | |
aes-192-ecb | |
aes-256-cbc |
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
(defn super-shake [item value] | |
(start (apply bind item (mapcat (fn [dist] [{:effect :slide, :left dist, :time 375} | |
{:effect :slide, :left (- dist), :time 375}]) | |
(range 500 0 -100))))) |
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
BTW DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
BTW Version 2, December 2004 | |
BTW | |
BTW Copyright (C) 2004 Sam Hocevar <[email protected]> | |
BTW | |
BTW Everyone is permitted to copy and distribute verbatim or modified | |
BTW copies of this license document, and changing it is allowed as long | |
BTW as the name is changed. | |
BTW | |
BTW DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
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> | |
<head><title>Hola!</title> | |
<script src="/javascripts/prototype.js"></script> | |
</head> | |
<body> | |
<%- body %> | |
<pre> | |
<div id="mid"></div> | |
</pre> | |
<div id="fin"><br/><br/></div> |
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
// | |
// Just skip to the bottom | |
// | |
var express = require('express'); | |
var io = require('socket.io'); | |
var app = module.exports = express.createServer(); | |
// Configuration |
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
<script src="/socket.io/socket.io.js"></script> | |
<script type="text/javascript"> | |
var socket = new io.Socket(); | |
socket.connect(); | |
socket.on('connect', | |
function(){ | |
console.log('connected'); | |
socket.send('/var/log/system.log'); | |
}); |
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
// vows calls transmute, which registers trap as the listener to all specified events | |
// node sends each message to the trap() callback | |
// FAIL: trap calls this.callback with its arguments | |
// PASS: trap calls this.callback with a property which cached arguments from each invocation of trap | |
// HOWTO pass / fail: toggle the conditional at line 152 | |
// revised sample output: | |
// | |
// PASS | |
// |
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 batch_util = { | |
'utility functions': { | |
'starts_sequence' : { | |
'can detect a simple sequence': function() { | |
assert.ok(ansi.util.starts_sequence('\u001b[foobar')); | |
}, | |
'rejects something obviously not a sequence': function() { | |
assert.ok(!ansi.util.starts_sequence('foobar')); | |
}, | |
'rejects a truncated sequence': function() { |
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
function hello_world () { | |
setTimeout(function() { | |
console.log("world"); | |
}, 5000); | |
console.log("hello"); | |
} | |
hello_world(); |
NewerOlder