I hereby claim:
- I am xnox on github.
- I am xnox (https://keybase.io/xnox) on keybase.
- I have a public key ASBvjajfbjsKg63UPOO7h6gvXKlFb4Jr_mQX1DNPwI0q3go
To claim this, I am signing this object:
| diff --git a/Config.in b/Config.in | |
| index ad0cd1e26..6a0727086 100644 | |
| --- a/Config.in | |
| +++ b/Config.in | |
| @@ -212,6 +212,15 @@ config INSTALL_NO_USR | |
| will install applets only to /bin and /sbin, | |
| never to /usr/bin or /usr/sbin. | |
| +config INSTALL_ALWAYS_USR_BIN | |
| + bool "Always use /usr/bin" |
I hereby claim:
To claim this, I am signing this object:
| ##source http://unix.stackexchange.com/questions/73807/change-colors-in-console-virtual-terminal | |
| /sys/module/vt/parameters/default_red | |
| /sys/module/vt/parameters/default_grn | |
| /sys/module/vt/parameters/default_blu | |
| clr () { | |
| clear # GFX bug otherwise | |
| setterm -regtabs 4 | |
| Color_names="bla red gre yel blu mag cya whi" |
| In [1]: lp | |
| Out[1]: <launchpadlib.launchpad.Launchpad at 0x7f49ecc649b0> | |
| In [2]: lp.distributions | |
| Out[2]: <launchpadlib.launchpad.DistributionSet at 0x7f49ddf0e630> | |
| In [3]: lp.distributions['ubuntu'] | |
| Out[3]: <distribution at https://api.launchpad.net/1.0/ubuntu> | |
| In [4]: lp.distributions['ubuntu'].display_name |
| package main | |
| import "fmt" | |
| func split(sum int) (x, y int) { | |
| x = sum * 4 / 9 | |
| y = sum - x | |
| return | |
| } |
| #!/usr/bin/python | |
| # | |
| # use avahi to find a _apt_proxy._tcp provider and return | |
| # a http proxy string suitable for apt | |
| import socket | |
| from subprocess import Popen, PIPE | |
| def is_ipv6(a): |