Keybase proof
I hereby claim:
- I am pcarrier on github.
- I am pierre (https://keybase.io/pierre) on keybase.
- I have a public key ASCylU4ZFkw4nZuiIER-aKrezWyOEHZd9phPrna62tvSvAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
function safe { Set-Variable WhatIfPreference $true -Scope Global }; | |
function unsafe { Set-Variable WhatIfPreference $false -Scope Global -WhatIf:$false }; | |
function isAdmin { | |
$user = [Security.Principal.WindowsIdentity]::GetCurrent(); | |
(New-Object Security.Principal.WindowsPrincipal $user).IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator); | |
} | |
function shell { Start-Process powershell -WorkingDirectory $PWD -ArgumentList "-NoLogo" }; | |
function admin { Start-Process powershell -ArgumentList "-NoLogo" -Verb RunAs }; |
#!/usr/bin/env ruby | |
OPS = [:+, :-, :*, :/] | |
ALL_OPS = OPS.product(OPS).product(OPS).map do |n| n.flatten end | |
ALL_FOUR_CARDS = (0..9999).map do |n| | |
a = n % 10 + 1 | |
b = n/10 % 10 + 1 | |
c = n/100 % 10 + 1 | |
d = n/1000 % 10 + 1 |
resource "aws_iam_user" "asg_healthreport" { | |
name = "${var.stack}-asg_healthreport" | |
# can't use create_before_destroy due to fixed name | |
} | |
resource "aws_iam_access_key" "asg_healthreport" { | |
user = "${aws_iam_user.asg_healthreport.name}" | |
# can't use create_before_destroy due to fixed name of user | |
} |
[remote "stable"] | |
url = https://kernel.googlesource.com/pub/scm/linux/kernel/git/stable/linux-stable.git | |
url = git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git | |
fetch = +refs/heads/*:refs/remotes/stable/* | |
[remote "mainline"] | |
url = https://kernel.googlesource.com/pub/scm/linux/kernel/git/torvalds/linux.git | |
url = git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git | |
fetch = +refs/heads/*:refs/remotes/mainline/* | |
[remote "history"] | |
url = https://kernel.googlesource.com/pub/scm/linux/kernel/git/history/history.git |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
callbench: callbench.o parse_vdso.o | |
musl-gcc -o $@ $? -lrt -static | |
sstrip $@ | |
%.o: %.c | |
musl-gcc -c $< -o $@ | |
clean: | |
rm *.o callbench |
% cat ~/Library/Preferences/IntelliJIdea14/codestyles/Tweet.xml | |
<code_scheme name="Tweet"> | |
<option name="LINE_SEPARATOR" value=" " /> | |
<option name="CLASS_COUNT_TO_USE_IMPORT_ON_DEMAND" value="1000" /> | |
<option name="NAMES_COUNT_TO_USE_IMPORT_ON_DEMAND" value="1000" /> | |
<option name="PACKAGES_TO_USE_IMPORT_ON_DEMAND"> | |
<value /> | |
</option> | |
<option name="IMPORT_LAYOUT_TABLE"> | |
<value> |