I hereby claim:
- I am PisoMojado on github.
- I am michaeljones (https://keybase.io/michaeljones) on keybase.
- I have a public key whose fingerprint is 94F1 7464 CAF9 6F3C F503 76D4 5D3A 60C0 E416 D8BC
To claim this, I am signing this object:
// Original author: Paul Rascagneres <rootbsd@r00ted.com> | |
// Patched by (GalaxyMaster) [https://github.com/galaxy4public/] | |
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
#define ENCRYPT_SIZE 0x100000 | |
int keybits; | |
int y, z; |
#!/usr/bin/env bash | |
NEW_TERM_SCRIPT=$(cat <<EOF | |
on run {} | |
tell application "Terminal" | |
do script "" | |
activate | |
end tell | |
return | |
end run |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# bash 4.1.5(1) Linux Ubuntu 10.04 Date : 2011-10-09 | |
# | |
# _______________| netspeed : check download speed via command line. | |
# | |
# Usage: netspeed [tokyo, london, usw, use, east, west, URL] | |
# ^default U.S. west coast. | |
# [ -speed_KB/sec ] | |
# ^negation activates the Mbps converter. | |
# |
# Use Gists to store entire functions | |
class QuickSort | |
def self.sort!(keys) | |
quick(keys,0,keys.size-1) | |
end | |
private | |
def self.quick(keys, left, right) |