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:
| #!/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 |
| abstract class UsernameGenerator { | |
| private $user; | |
| abstract function generateUsername(); | |
| public function getUsername($user) { | |
| $this->user = strtolower($user); | |
| return $this->generateUsername(); | |
| } | |
| protected function getFirstName() { |
| 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') { |
| #!/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 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); |
I hereby claim:
To claim this, I am signing this object:
| //= Usage | |
| // Update the config below | |
| // Paste this file into the console on the edit geeklist page | |
| // Call addAllGames() | |
| // Config | |
| let gamelist = []; // Set this to an array containing the names of games you wish to add | |
| // e.g. let gamelist = ["Azul", "Carcassonne", "Codenames"]; | |
| // Exposed so they can be logged |
| JSON.stringify($('.filter-susd-recommends').map(function() { return $(this).find('.eg-games-page-element-1').text() }).toArray()) |
| cat *.metadata.json | jq -c '"\(.distance), \(.duration), \(.startTime.time), \(.avgHeartrate), \(.maxHeartrate), \(.activityType.internalName)"' | grep "Running" | grep -v "Treadmill" |
| function copytext(a) { | |
| var b = document.createElement("textarea"); | |
| b.innerText = a, document.body.appendChild(b), b.select(), document.execCommand("copy"), b.remove() | |
| } | |
| copytext("@cobot deploy harvestapp: PR " + document.querySelector('.gh-header-number').innerText + " - " + document.querySelector('.js-issue-title').innerText.trim() + ", see " + window.location); |