I hereby claim:
- I am pezmc on github.
- I am pezcuckow (https://keybase.io/pezcuckow) on keybase.
- I have a public key ASDyRK69_gUJaGEqUKFiNvw93DXHivcblE_tIT87gPooego
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
var cheatInsteadOfPlayingTheGameProperlyAndImprovingYourMentalArithmatic = function() { | |
var q = $("#question").text(); | |
q = q.substr(0, q.length - 2).replace('÷', '/').replace('x', '*'); | |
$("#answer").val(eval(q)).keydown().keyup().keypress(); | |
} | |
setInterval(cheatInsteadOfPlayingTheGameProperlyAndImprovingYourMentalArithmatic, 250); |
#!/bin/sh | |
error_found=false | |
declare -a BANNED_PATTERNS=("app/config/database.php") | |
# Terminal | |
if [ -t 1 ]; then | |
ncolors=$(tput colors) | |
if test -n "$ncolors" && test $ncolors -ge 8; then |
var string = ''; | |
if(location.host == 'www.zoopla.co.uk') { | |
string += $('#listing-details h1').text().replace('to rent', '') + "\t"; | |
string += $('.listing-details-address h2').text().split(',')[0] + "\t"; | |
string += $('.listing-details-price.text-price').text().match(/\d+/gi)[0] + "\t"; | |
string += $('.sidebar strong a[href^="/find-agents/"]').text() + "\t"; | |
} | |
if(location.host == 'www.rightmove.co.uk') { |
abstract class UsernameGenerator { | |
private $user; | |
abstract function generateUsername(); | |
public function getUsername($user) { | |
$this->user = strtolower($user); | |
return $this->generateUsername(); | |
} | |
protected function getFirstName() { |
#!/usr/bin/env sh | |
## | |
# Customised for personal use, some things changed. | |
# | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh |