I hereby claim:
- I am rasky on github.
- I am giovannibajo (https://keybase.io/giovannibajo) on keybase.
- I have the public key with fingerprint AA14 40A1 3134 3E96 AC7F 23A4 E870 D9A3 69B8 348A
To claim this, I am signing this object:
| <!-- ================ --> | |
| <!-- Channel Switcher --> | |
| <!-- ================ --> | |
| <div class="col_left"> | |
| <div class="titlebar"></div> | |
| <div class="inner"> | |
| <channelbar active-channel="channel"></channelbar> | |
| </div> | |
| </div> | |
| <!-- ======= --> |
I hereby claim:
To claim this, I am signing this object:
| PEP: XXXX | |
| Title: Implement package signing in PyPI, pip, distutils | |
| Version: $Revision$ | |
| Last-Modified: $Date$ | |
| Author: Giovanni Bajo <rasky@develer.com> | |
| Status: Draft | |
| Type: Process | |
| Content-Type: text/x-rst | |
| Created: 25-Jul-2014 | |
| Post-History: XX-XXX-XXXX |
| diff --git a/Library/Formula/fakeroot.rb b/Library/Formula/fakeroot.rb | |
| index fecde7e..ecf8b94 100644 | |
| --- a/Library/Formula/fakeroot.rb | |
| +++ b/Library/Formula/fakeroot.rb | |
| @@ -9,6 +9,8 @@ class Fakeroot < Formula | |
| depends_on :automake | |
| depends_on :libtool | |
| + patch :DATA | |
| + |
| commit ef0d4a1d8ca5a809eb79e9203d4121107fc4e2c6 | |
| Author: Giovanni Bajo <rasky@develer.com> | |
| Date: Sat Dec 13 04:11:56 2014 +0100 | |
| Fix handling of emojii in msgpacks (handle surrogate pairs) | |
| diff --git a/src/msgpack/msgpack.js b/src/msgpack/msgpack.js | |
| index b30f2c4..7a91b55 100644 | |
| --- a/src/msgpack/msgpack.js | |
| +++ b/src/msgpack/msgpack.js |
| Host * | |
| ControlPersist yes | |
| ControlMaster auto | |
| ControlPath /tmp/ssh-%r@%h:%p | |
| ServerAliveInterval 60 |
| package main | |
| /* | |
| HEAD is: | |
| commit 88b230eaa69647405e7c278044550640fc098111 | |
| Author: David Chase <drchase@google.com> | |
| Date: Fri Jan 29 14:44:15 2016 -0500 | |
| [dev.ssa] cmd/compile: exposed do-log boolean to reduce allocations |
| set -g __fish_git_prompt_show_informative_status 1 | |
| set -g __fish_git_prompt_hide_untrackedfiles 1 | |
| set -g __fish_git_prompt_color_branch magenta --bold | |
| set -g __fish_git_prompt_showupstream "informative" | |
| set -g __fish_git_prompt_char_upstream_ahead "↑" | |
| set -g __fish_git_prompt_char_upstream_behind "↓" | |
| set -g __fish_git_prompt_char_upstream_prefix "" | |
| set -g __fish_git_prompt_char_stagedstate "●" |
| package main | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "os" | |
| "path/filepath" | |
| "strings" | |
| "sync" | |
| "sync/atomic" |
| package input | |
| import ( | |
| "bytes" | |
| "errors" | |
| "io" | |
| "os/exec" | |
| "strings" | |
| ) |