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
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 |
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
// ==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, |
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
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| |
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
#tested using http://grokdebug.herokuapp.com/ | |
input { | |
tcp { | |
type => "iis" | |
port => 3333 | |
} | |
} | |
filter { |
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
[user] | |
name = Brad Wilson | |
email = [email protected] | |
[alias] | |
amend = commit --amend | |
bl = blame -w -M -C | |
br = branch | |
cat = cat-file -t | |
co = checkout | |
df = diff --word-diff |
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/sh | |
## | |
## Redhat / Linux / LSB | |
## | |
# chkconfig: 345 85 15 | |
# description: Startup script for Express / Node.js application with the \ | |
## forever module. | |
## | |
## A modification of https://gist.github.com/1339289 | |
## |
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
var async = require('async') | |
var git = require('util/git') | |
var misc = require('util/misc') | |
exports.get_deployedRevision = function(args, callback) { | |
git.revParse(this.config.program_creator_dir, 'HEAD', function(err, stdout) { | |
callback(null, stdout.replace(/^\s+|\s+$/g, '')) | |
}) | |
} |
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
$snapins = Get-PSSnapin -Registered | |
$snapins | Add-PSSnapin | |
Get-Module -ListAvailable | Import-Module | |
Get-PSSnapin | Format-Table -autosize PSVersion, Name | |
Get-Module | Format-Table -autosize ModuleType, Name | |
function ff ([string] $glob) { get-childitem -recurse -include $glob } |
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
<Types> | |
<Type> | |
<Name>System.String</Name> | |
<Members> | |
<ScriptProperty> | |
<Name>ToBase64</Name> | |
<GetScriptBlock> | |
[System.Convert]::ToBase64String([System.Text.Encoding]::Unicode.GetBytes($this)) | |
</GetScriptBlock> | |
</ScriptProperty> |
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
<Types> | |
<Type> | |
<Name>System.String</Name> | |
<Members> | |
<ScriptProperty> | |
<Name>ToBase64</Name> | |
<GetScriptBlock> | |
[System.Convert]::ToBase64String([System.Text.Encoding]::Unicode.GetBytes($this)) | |
</GetScriptBlock> | |
</ScriptProperty> |