I hereby claim:
- I am dmedvinsky on github.
- I am dmedvinsky (https://keybase.io/dmedvinsky) on keybase.
- I have a public key whose fingerprint is A58A 0259 0CC7 2810 04C9 B2A6 5739 66DE 005F 8442
To claim this, I am signing this object:
| fabric.io | |
| maven.fabric.io | |
| slack.com | |
| zeplin.com | |
| apple.com | |
| trello.com | |
| zeplin.io | |
| hockeyapp.net | |
| stadiumvpc-265910089.us-east-1.elb.amazonaws.com | |
| sentry.io |
I hereby claim:
To claim this, I am signing this object:
| mkdir /tmp/test | |
| cd /tmp/test | |
| git init | |
| git remote add origin git@host:test1.git | |
| git remote set-url --add origin git@host:test2.git | |
| touch file | |
| git add file | |
| git commit -m 'commit 1' | |
| git push origin master | |
| echo change 1.1 > file |
| checking for a BSD-compatible install... /usr/bin/install -c | |
| checking whether build environment is sane... yes | |
| /private/tmp/homebank-JM82/homebank-4.4/missing: Unknown `--run' option | |
| Try `/private/tmp/homebank-JM82/homebank-4.4/missing --help' for more information | |
| configure: WARNING: `missing' script is too old or missing | |
| checking for a thread-safe mkdir -p... ./install-sh -c -d | |
| checking for gawk... no | |
| checking for mawk... no | |
| checking for nawk... no | |
| checking for awk... awk |
| from random import choice | |
| from operator import methodcaller | |
| l = [] | |
| for i in range(1000): | |
| l.append(choice(['1', '10', '', ' '])) | |
| def mapfilt(xs): |
| #!/bin/bash | |
| test -n "$1" || exit 1 | |
| test -d "$1" || exit 1 | |
| cd "$1" || exit 1 | |
| max() { | |
| if (($1 > $2)); then | |
| echo $1 | |
| else |
| # -*- coding: utf-8 -*- | |
| # align plugin | |
| # | |
| # For now only aligns usernames. | |
| # | |
| # Configure like this: | |
| # | |
| # Earthquake.config[:plugin_align] = { | |
| # :name_maxlen => 10, | |
| # :more_char => '…' |
| import Maybe | |
| import Data.List | |
| import Text.XML.Light | |
| main :: IO() | |
| main = readFile "test.xml" >>= putStrLn . solve | |
| solve :: String -> String | |
| solve = formatResult . getTotal . reduce . getList |
| diff -u xwrits-2.26//main.c xwrits/main.c | |
| --- xwrits-2.26//main.c 2009-04-04 01:17:02.000000000 +0400 | |
| +++ xwrits/main.c 2010-09-01 14:06:52.531052264 +0400 | |
| @@ -10,6 +10,7 @@ | |
| #ifdef HAVE_XINERAMA | |
| #include <X11/extensions/Xinerama.h> | |
| #endif | |
| +#include <signal.h> | |
| static Options onormal; |