I hereby claim:
- I am aureooms on github.
- I am aureooms (https://keybase.io/aureooms) on keybase.
- I have a public key whose fingerprint is 842C 827C 3BC2 E3E5 0AC2 5D2F B795 F563 72A5 A850
To claim this, I am signing this object:
import os | |
import sys | |
import shutil | |
from PIL import Image | |
os.makedirs( '3_2' , exist_ok = True ) | |
os.makedirs( '4_3' , exist_ok = True ) | |
os.makedirs( 'unk' , exist_ok = True ) |
pkgname=astroid | |
pkgver=v0.4.r236.g68dd9ba | |
pkgrel=1 | |
epoch= | |
pkgdesc="a graphical threads-with-tags style, lightweight and fast, email client for notmuch, inspired by sup and others" | |
arch=('x86_64' 'i686') | |
url="https://github.com/ff2000/astroid" | |
license=('GPL') | |
groups=() | |
depends=('notmuch' 'boost' 'boost-libs' 'gmime' 'gtkmm3' 'webkitgtk' 'gvim' 'libsass') |
$ sudo pacman -Syu | |
:: Synchronizing package databases... | |
core 122.5 KiB 2042K/s 00:00 [-----------------------------------------------] 100% | |
extra 1763.9 KiB 5.94M/s 00:00 [-----------------------------------------------] 100% | |
community 3.3 MiB 5.78M/s 00:01 [-----------------------------------------------] 100% | |
:: Starting full system upgrade... | |
resolving dependencies... | |
looking for conflicting packages... | |
(51/51) checking keys in keyring [-----------------------------------------------] | |
(51/51) checking package integrity [-----------------------------------------------] 100% |
mount /dev/sda2 /mnt/sda2 | |
chroot /mnt/sda2 | |
mount -t proc proc /proc | |
mount -t sysfs sys /sys | |
mount -t devtmpfs udev /dev | |
mkinitcpio -p linux |
## | |
## Example for October 6, 2015 | |
## | |
Server = http://ala.seblu.net/repos/2015/10/06/$repo/os/$arch |
I hereby claim:
To claim this, I am signing this object:
__mergesort__ = require( "./sort/mergesort.js").__mergesort__ | |
tapemerge = require("./merge/tapemerge.js").tapemerge | |
mergesort = __mergesort__(tapemerge) | |
asc = function ( a , b ) { return a < b ? -1 : a > b ? 1 : 0 ; } | |
gen = function ( n ) { var a = [] ; var i = n ; while ( i-- ) { a.push(Math.random()) } ; return a ; } |
#include <iostream> | |
#include <utility> | |
#include <unordered_map> | |
int main(){ | |
std::unordered_map<std::string, std::string> m; | |
// uses pair's copy-constructor | |
m.emplace(std::make_pair(std::string("a"), std::string("a"))); |
from math import * | |
def f(x): | |
return int(round(96.75 + -21.98*cos(x*1.118) + 13.29*sin(x*1.118) + -8.387*cos(2*x*1.118)\ | |
+ 17.94*sin(2*x*1.118) + 1.265*cos(3*x*1.118) + 16.58*sin(3*x*1.118)\ | |
+ 3.988*cos(4*x*1.118) + 8.463*sin(4*x*1.118) + 0.3583*cos(5*x*1.118)\ | |
+ 5.878*sin(5*x*1.118))) | |
print "".join([chr(f(x)) for x in range(12)]) |
var bench = (fn, n) => { | |
const title = fn.name; | |
console.time(title); | |
while (n--) fn(); | |
console.timeEnd(title); | |
}; |