🙌
I hereby claim:
- I am avuserow on github.
- I am avuserow (https://keybase.io/avuserow) on keybase.
- I have a public key whose fingerprint is 40B8 FB7B E34F 290D D724 2959 6E17 AEB6 3F2D C7A8
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
use Data::Dumper; | |
use Net::Hiveminder; | |
$Data::Dumper::Sortkeys = 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum GearmanReturn ( | |
'GEARMAN_SUCCESS', | |
'GEARMAN_IO_WAIT', | |
'GEARMAN_SHUTDOWN', | |
'GEARMAN_SHUTDOWN_GRACEFUL', | |
'GEARMAN_ERRNO', | |
'GEARMAN_EVENT', # DEPRECATED', SERVER ONLY | |
'GEARMAN_TOO_MANY_ARGS', | |
'GEARMAN_NO_ACTIVE_FDS', # No servers available | |
'GEARMAN_INVALID_MAGIC', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INFO:DefaultService:Requesting http://kcy.me/1dwta | |
INFO:requests.packages.urllib3.connectionpool:Starting new HTTP connection (1): kcy.me | |
Traceback (most recent call last): | |
File "scraper.py", line 60, in <module> | |
main() | |
File "scraper.py", line 37, in main | |
result = scraper_client.run() | |
File "/home/ak/terroroftinytown-client-grab/terroroftinytown/terroroftinytown/client/scraper.py", line 50, in run | |
result = self.service.scrape_one(item) | |
File "/home/ak/terroroftinytown-client-grab/terroroftinytown/terroroftinytown/services/base.py", line 43, in scrape_one |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# jsonrpc/t/server.t | |
GNU gdb (GDB) Fedora 7.6.1-46.fc19 | |
Copyright (C) 2013 Free Software Foundation, Inc. | |
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> | |
This is free software: you are free to change and redistribute it. | |
There is NO WARRANTY, to the extent permitted by law. Type "show copying" | |
and "show warranty" for details. | |
This GDB was configured as "x86_64-redhat-linux-gnu". | |
For bug reporting instructions, please see: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# built from https://github.com/avuserow/star/commit/05d4a2b787fc8b7be74a8670a5f31ada921f5d6f | |
make modules-test | |
/usr/bin/perl tools/build/modules-test.pl /home/ak/projects/perl6/star/work-moar/rakudo-star-2014.07 /home/ak/projects/perl6/star/work-moar/rakudo-star-2014.07/install/bin/perl6-m modules/MODULES.txt | |
Testing modules/zavolaj with /home/ak/projects/perl6/star/work-moar/rakudo-star-2014.07/install/bin/perl6-m... | |
t/01-argless.t ......... ok | |
t/02-simple-args.t ..... ok | |
t/03-simple-returns.t .. ok | |
t/04-pointers.t ........ ok | |
t/05-arrays.t .......... ok |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1: got user $VAR1 = { | |
'uid' => '1' | |
}; | |
with undef uid! | |
2: ok (didn't find a user) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all : amp-rg | |
debug : amp-rg-debug | |
CFLAGS = -Wall -std=gnu99 -pedantic -g -I/usr/include/ffmpeg | |
LINK = -lavutil -lavformat -lavcodec -lz -lavutil -lm | |
EXE = amp-rg | |
amp-rg : main.o gain_analysis.o | |
gcc $(CFLAGS) -o $(EXE) main.o gain_analysis.o $(LINK) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
MUTED=`perl -lne'print (/mute:\s+(\w+)/) if /mute:/' < /proc/acpi/ibm/volume` | |
# default to muted if the state is unknown | |
if [ "${MUTED}" == "off" ] ; then | |
amixer set Master on -q | |
else | |
amixer set Master off -q | |
fi |
NewerOlder