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
(function () { | |
var cheatDelay = 1000; //set how fast you want to cheat | |
var cheat = function () { | |
var boxArr, tempColor, i, $firstBox, $tempBox; | |
boxArr = $('#box').find('span'); | |
$firstBox = $(boxArr[0]); | |
$firstBox.click(); //just click the first box in case it's the win | |
tempColor = $firstBox.css('background-color'); | |
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/bash | |
############################################################ | |
# core functions | |
############################################################ | |
function check_install { | |
if [ -z "`which "$1" 2>/dev/null`" ] | |
then | |
executable=$1 |
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
// ---- | |
// Sass (v3.3.10) | |
// Compass (v1.0.0.alpha.20) | |
// ---- | |
.dog { | |
display: block; | |
&__title { | |
colour: purple; | |
} |
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 = require('http'); | |
fs = require('fs'); | |
cluster = require('cluster'); | |
numCPUs = require('os').cpus().length; | |
console.log(numCPUs); | |
blockWriter = {}; | |
blockWriter.arr = []; | |
blockWriter.count = 0; | |
blockWriter.countLimit = 20; |
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 = require('http'); | |
fs = require('fs'); | |
blockWriter = {}; | |
blockWriter.arr = []; | |
blockWriter.count = 0; | |
blockWriter.countLimit = 10; | |
blockWriter.blockLog = ""; | |
server = http.createServer( function(req, res) { |