Skip to content

Instantly share code, notes, and snippets.

View joshrobb's full-sized avatar

Josh Robb joshrobb

  • Auckland, New Zealand
View GitHub Profile
@joshrobb
joshrobb / passwd.js
Last active January 19, 2016 23:32
Password validation by hashing difficulty
String.prototype.hackability = function() {
var toppasswords = /password|123456|12345678|1234|qwerty|12345|dragon|pussy|baseball|football|letmein|monkey|696969|abc123|mustang|michael|shadow|master|jennifer|111111|2000|jordan|superman|harley|1234567|fuckme|hunter|fuckyou|trustno1|ranger|buster|thomas|tigger|robert|soccer|fuck|batman|test|pass|killer|hockey|george|charlie|andrew|michelle|love|sunshine|jessica|asshole|6969|pepper|daniel|access|123456789|654321|joshua|maggie|starwars|silver|william|dallas|yankees|123123|ashley|666666|hello|amanda|orange|biteme|freedom|computer|sexy|thunder|nicole|ginger|heather|hammer|summer|corvette|taylor|fucker|austin|1111|merlin|matthew|121212|golfer|cheese|princess|martin|chelsea|patrick|richard|diamond|yellow|bigdog|secret|asdfgh|sparky|cowboy|camaro|anthony|matrix|falcon|iloveyou|bailey|guitar|jackson|purple|scooter|phoenix|aaaaaa|morgan|tigers|porsche|mickey|maverick|cookie|nascar|peanut|justin|131313|money|horny|samantha|panties|steelers|joseph|snoopy|boomer|whatever|
@joshrobb
joshrobb / hipchatEmoticon.user.js
Last active December 25, 2015 20:39
Autocomplete user script for Hipchat - drop this file into an open Chrome extensions window and it will enable autocomplete for hipchat emoticons.
// ==UserScript==
// @name HipchatEmotiAutocomplete
// @description Autocomplete for emoticons in hipchat
// @include https://*.hipchat.com/chat*
// @version 1.0
// ==/UserScript==
var code = function() {
window.emoti_autocomplete = {
input: null,
Peer Review Questions:
Private feedback to the reviewee's manager:
1. If you started a new company tomorrow, would you hire this person?
2. Is there any other confidential feedback you would like to provide about this person?
Feedback to be shared verbatim with the peer:
1. Think about the projects you worked on with this individual this year. Where did they
NSString *reachabilityType = @"";
Reachability *reach = [Reachability reachabilityForInternetConnection];
if ([reach isReachableViaWiFi]){
reachabilityType = @"wifi";
} else if ([reach isReachableViaWWAN]){
using System;
using System.Diagnostics;
using Pushpay.Core;
using StatsdClient;
namespace Pushpay.Base
{
public static class Stats
{
static readonly string Prefix = GetPrefix();

Keybase proof

I hereby claim:

  • I am joshrobb on github.
  • I am josh_robb (https://keybase.io/josh_robb) on keybase.
  • I have a public key whose fingerprint is DE5E B120 E661 1512 A8AC 4247 1229 F31C 1776 4041

To claim this, I am signing this object:

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Autofac;
using Autofac.Features.Indexed;
namespace AutofacStrategyPattern
@joshrobb
joshrobb / librato-deploy.ps1
Created November 2, 2014 02:27
Octopus Deploy Annotate Librato
$encoded = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes("user@example:apikey" ))
$headers = @{Authorization = "Basic "+$encoded}
if ($OctopusEnvironmentName -eq 'Production') {
$envname = "prod"
} else {
$envname = "qa"
}
#OH yeah - that doesn't work @#$@#$@#$@#$@#$@#$ in PS2
public class LongRunningNHOperation : IDisposable
{
SessionScope session;
int newsessioncount = 250;
Stopwatch stopwatch = Stopwatch.StartNew();
private LongRunningNHOperation() { }
@joshrobb
joshrobb / platformstats.linqpad
Last active August 29, 2015 14:16
Team Stats
var github = new GitHubClient(new ProductHeaderValue("PushpayTech"));
var tokenAuth = new Credentials("XXX");
github.Credentials = tokenAuth;
var releases = await github.Release.GetAll("pushpay","pushpay");
var prfilter = new PullRequestRequest {
State = ItemState.All
};