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:
| 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| |
| // ==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(); |
I hereby claim:
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 |
| $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() { } |
| 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 | |
| }; |