This file contains 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 sys = require('sys') | |
, str = exports; | |
// generates those big random strings | |
str.uuid = function() { | |
var uuid = ''; | |
for (i = 0; i < 32; i++) { | |
uuid += Math.floor(Math.random() * 16).toString(16); | |
} | |
return uuid; |
This file contains 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> | |
<style> | |
#outer { | |
background-color: pink; | |
padding:20px; | |
} | |
#middle { | |
background-color: green; | |
padding:20px; | |
} |
This file contains 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
sudo apt-get update | |
sudo apt-get install libssl-dev | |
sudo apt-get install g++ | |
wget http://nodejs.org/dist/node-v0.3.1.tar.gz | |
tar -xvf node-v0.3.1.tar.gz | |
cd node-v0.3.1 | |
./configure | |
make | |
sudo make install | |
cd ~ |
This file contains 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 fs = require('fs'), | |
step = require('step'), | |
jsdom = require('jsdom'), | |
window = jsdom.createWindow(), | |
Script = process.binding('evals').Script; | |
window.document = {}; | |
window.Ext = {data:{Record:{}}}; | |
var fileNames = [ |
This file contains 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 | |
wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add - | |
sudo echo "deb http://pkg.jenkins-ci.org/debian binary/" > /etc/apt/sources.list.d/jenkins.list | |
sudo aptitude update | |
sudo aptitude install jenkins |
This file contains 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
Intro to Game Design - Antti | |
Delegation Poker - Jurgen Apello | |
Agile Engineering Practices without Computers - Ralf | |
Solutions for Conflict in 3D - Klaus | |
P2P Game Design Support - Antti | |
Coaching Game - Christine | |
Future Spectives - Ole | |
Nabaztag, Share Ideas & Create New Ones - Sebastian Lang | |
Medlers of Catan - Juergen Apelo | |
Outer Game, Inner Game - Christian |
This file contains 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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script> | |
<title>Revolverize</title> | |
</head> | |
<body> | |
<h1>Menu Example</h1> | |
<div> | |
<ul id="mymenu" class="revolverized"> |
This file contains 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
buster.testCase("modSource.getHtmlWithoutScripts", { | |
"setUp": function () { | |
$jt = jQuery.noConflict(); | |
var res = $jt.ajax('simple', {async:false, cache:false}).responseText; | |
document.open('text/html', 'replace'); | |
document.write(res); | |
document.close(); | |
this.doc = document; | |
}, | |
"has function": function () { |
This file contains 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
< HTTP/1.1 200 OK | |
< 0: t | |
< 1: e | |
< 2: x | |
< 3: t | |
< 4: / | |
< 5: c | |
< 6: s | |
< 7: s | |
< Content-Type: text/css; charset=utf-8 |
This file contains 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 runner = buster.testRunner.create({ | |
timeout: 500 | |
}); |
OlderNewer