I hereby claim:
- I am vgerak on github.
- I am vgerak (https://keybase.io/vgerak) on keybase.
- I have a public key whose fingerprint is 8C52 8BAC 1F73 C7E7 CED1 2292 E440 B463 9F95 ADA0
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Verifying that +indoril is my Bitcoin username. You can send me #bitcoin here: https://onename.io/indoril |
findcpu(){ | |
sysctl -n machdep.cpu.brand_string | |
} | |
findkernelversion(){ | |
uname -mrs | |
} | |
mem=$(sysctl -n hw.memsize) |
from bundle_volume import * | |
def _read_fstable(f): | |
"""Use this generator to iterate over the lines of and fstab file""" | |
if not os.path.isfile(f): | |
raise FatalError("Unable to open: `%s'. File is missing." % f) | |
FileSystemTableEntry = namedtuple('FileSystemTableEntry', | |
'dev mpoint fs opts freq passno') |
#include <stdio.h> | |
#include <sys/statvfs.h> | |
int main(int argc, const char *argv[]) | |
{ | |
const unsigned int GB = (1024 * 1024) * 1024; | |
struct statvfs buffer; | |
int ret = statvfs(argv[1], &buffer); |
Το bot απαντάει >> MONO << σε private messages. | |
Επιλέχτε private message στον client σας ή γράψτε "/query rcopy" και μετά δώστε κάποια εντολή. | |
Προσοχή: Περιοριστείτε σε 2 queries / 5 λεπτά, για αποφυγή flooding | |
Διαθέσιμες εντολές προς όλους: | |
.omilitis - Δείχνει τον τρέχων ομιλιτή | |
.apartia - Δείχνει την εκτιμώμενη απαρτία | |
.apotelesmata - Δείχνει τα αποτελέσματα της ψηφοφορίας | |
.plaisia - Δεν κάνει τίποτα (ακόμη) |
/* -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-. | |
* File Name : SCC.c | |
* Purpose : Find strongly connected components (SCCs) in directed graphs | |
* Creation Date : 12-03-2012 | |
* Last Modified : Mon Mar 12 23:36:16 EET 2012 |