This file contains hidden or 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
| http://sharebee.com/aaf1ed16 | |
| http://sharebee.com/902e5ea9 | |
| http://sharebee.com/595d5a6a | |
| http://sharebee.com/f3734fdd | |
| http://sharebee.com/511b24d6 | |
| http://sharebee.com/bb77c09d | |
| http://sharebee.com/11f22ad4 | |
| http://sharebee.com/6be3a9ec | |
| http://sharebee.com/4154d61a |
This file contains hidden or 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 Coro; | |
| use Coro::AnyEvent; | |
| use Coro::Channel; | |
| use Coro::Signal; | |
| use Coro::Timer; | |
| use AnyEvent; | |
This file contains hidden or 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 Coro; | |
| use Coro::AnyEvent; | |
| use Coro::Semaphore; | |
| use AnyEvent; | |
| my @coros; | |
| my $s = Coro::Semaphore->new; |
This file contains hidden or 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 | |
| # countdown = sleep + verbosity | |
| # countdown 300 && wget http://wu.sauceruney.com/digitrash/freemanradio/RadioFreeman01.mp3 | |
| use strict; | |
| use warnings; | |
| use AnyEvent; | |
| $| = 1; | |
| my $duration = shift; | |
| my $count = $duration; |
This file contains hidden or 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
| 090204 0:32:51 13 Connect kohaadmin@localhost on koha | |
| 13 Query set autocommit=1 | |
| 13 Query set NAMES 'utf8' | |
| 13 Query select * from auth_types order by authtypetext | |
| 13 Query SELECT description FROM language_descriptions WHERE subtag='en' AND lang='en' AND type='language' | |
| 13 Query SELECT description FROM language_descriptions WHERE subtag=NULL AND lang='en' AND type='script' | |
| 13 Query SELECT description FROM language_descriptions WHERE subtag=NULL AND lang='en' AND type='script' | |
| 13 Query SELECT description FROM language_descriptions WHERE subtag=NULL AND lang='en' AND type='region' | |
| 13 Query SELECT description FROM language_descriptions WHERE subtag=NULL AND lang='en' AND type='region' | |
| 13 Query SELECT description FROM language_descriptions WHERE subtag=NULL AND lang='en' AND type='variant' |
This file contains hidden or 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
| 090204 0:32:28 11 Connect kohaadmin@localhost on koha | |
| 11 Query set autocommit=1 | |
| 11 Query set NAMES 'utf8' | |
| 11 Query SELECT value | |
| FROM systempreferences | |
| WHERE variable='LibraryName' | |
| LIMIT 1 | |
| 090204 0:32:29 11 Query select * from auth_types order by authtypetext | |
| 11 Query SELECT value | |
| FROM systempreferences |
This file contains hidden or 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 Net::Delicious; | |
| use XML::Feed; | |
| use Storable; | |
| use URI::Escape; | |
| my %args = ( |
This file contains hidden or 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
| 090204 0:32:28 11 Connect kohaadmin@localhost on koha | |
| 11 Query set autocommit=1 | |
| 11 Query set NAMES 'utf8' | |
| 11 Query SELECT value | |
| FROM systempreferences | |
| WHERE variable='LibraryName' | |
| LIMIT 1 | |
| 090204 0:32:29 11 Query select * from auth_types order by authtypetext | |
| 11 Query SELECT value | |
| FROM systempreferences |
This file contains hidden or 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
| diff -rN -u old-Continuity/lib/Continuity/Adapt/HttpDaemon.pm new-Continuity/lib/Continuity/Adapt/HttpDaemon.pm | |
| --- old-Continuity/lib/Continuity/Adapt/HttpDaemon.pm 2008-12-10 15:20:22.000000000 -0800 | |
| +++ new-Continuity/lib/Continuity/Adapt/HttpDaemon.pm 2008-12-10 15:20:22.000000000 -0800 | |
| @@ -215,6 +215,8 @@ | |
| sub debug_level { exists $_[1] ? $_[0]->{debug_level} = $_[1] : $_[0]->{debug_level} } | |
| +sub debug_callback { exists $_[1] ? $_[0]->{debug_callback} = $_[1] : $_[0]->{debug_callback} } | |
| + | |
| =for comment |