I hereby claim:
- I am Robertof on github.
- I am robertof (https://keybase.io/robertof) on keybase.
- I have a public key whose fingerprint is 9786 7646 60D9 AA54 3072 306D B7F6 7885 CA4B D3E8
To claim this, I am signing this object:
| #!/usr/bin/perl | |
| # Mailinator Client, by Robertof (about.me/roberto.f) | |
| use strict; | |
| use warnings; | |
| use Getopt::Long; | |
| use Term::ANSIColor qw(:constants); | |
| use LWP::UserAgent; | |
| $Term::ANSIColor::AUTORESET = 1; | |
| $|++; |
| /** | |
| * Created by Robertof <[email protected] / http://about.me/roberto.f>. | |
| * File creation date: 12-apr-2013 16.24.15 | |
| * Licensed under GNU/GPL v3. | |
| * | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation, either version 3 of the License, or | |
| * (at your option) any later version. | |
| * |
| <?php | |
| /** | |
| * Robertof's CMS config parser. | |
| * Written by Robertof, released under GNU/GPL version 3. | |
| * Strictly coded while hearing Children of Bodom! \m/ | |
| * It's gonna be quite complex, it will support the following options: | |
| * - configuration options grouping (groupa.optiona, groupb.optionb, ecc.) | |
| * - configuration options delimited by '='. Lines terminated by a ';'. | |
| * - support for string and integer values | |
| * - support for hashes with { 'k1' > 'v1' } and |
| #!/usr/bin/perl | |
| # PlIB's Googlefight module | |
| # Description: battles given keywords based on amount of google search results and announces the winner | |
| # BASED ON: rbot's plugin googlefight | |
| # Originally written by: Raine Virta <[email protected]> | |
| # Usage: !googlefight keyword1 keyword2 [keyword3 ...] | |
| package Plib::modules::googlefight; | |
| use strict; | |
| use warnings; |
| package it.robertof.rpm.utils; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.Random; | |
| /** | |
| * Wanna some cool colors? Enjoy. | |
| * (see {@link HoloColorSequenceGenerator#randomColor()}) | |
| * @author Robertof |
| 115 | download | | | | | | |
| 180upload | download | upload | | | probe | | |
| 1fichier | download | upload | delete | list | probe | | |
| 2shared | download | upload | delete | | probe | | |
| 4shared | download | upload | | list | probe | | |
| anonfiles | download | upload | | | probe | | |
| anonymousdelivers|download | upload | | | probe | | |
| bayfiles | download | upload | delete | | probe | | |
| bayimg | download | upload | delete | | probe | | |
| billionuploads | download | upload | | | probe | |
| using System; | |
| using System.Net; | |
| using System.Net.Sockets; | |
| using System.Text; | |
| namespace Xenon | |
| { | |
| class Xenon | |
| { | |
| private static string pcName; |
| #!/usr/bin/env bash | |
| PL_VERSION="1.1.1" | |
| PL_KEY="" | |
| PL_LANG="" | |
| PL_FULLPAGE="" | |
| PL_URL="http://pasteling.giovannicapuano.net/api" | |
| command -v curl >/dev/null 2>&1 || \ | |
| { echo >&2 "This script requires 'curl'. Aborting."; exit 2; } | |
| command -v rev >/dev/null 2>&1 || \ |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env perl | |
| use autodie; | |
| use strict; | |
| use warnings; | |
| use Digest::MD5 "md5_hex"; | |
| use File::Path (); | |
| use File::Spec; | |
| use Fcntl qw(:DEFAULT :flock); | |
| use HTTP::Cookies; | |
| use JSON::MaybeXS; |