Skip to content

Instantly share code, notes, and snippets.

@Robertof
Robertof / mailinator_client.pl
Created December 20, 2012 17:20
Provides a simple Mailinator mail fetcher from commandline. Usage: perl mailinator.pl -m yourmailinatormail perl mailinator.pl -l -- enables loop mode, which never stops the script from execution perl mailinator.pl -- generates a random address.
#!/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;
$|++;
@Robertof
Robertof / JDownloaderPwdDecrypter.java
Created April 12, 2013 18:44
Decrypts JDownloader account data from 'org.jdownloader.settings.accountsettings.accounts.ejs' files. Supports dumping to file and direct printing. For educational purposes only. (...)
/**
* 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;
@Robertof
Robertof / HoloColorSequenceGenerator.java
Created August 6, 2013 15:12
Class for Android application to generate Holoish color sequences.
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 |
@Robertof
Robertof / Xenon.cs
Created March 16, 2014 18:39
Xenon. An IP renewal manager. Works with Netgear routers (or any router which supports telnet & telnetEnable). Generate the packet with the source provided here: http://wiki.openwrt.org/oldwiki/OpenWrtDocs/Hardware/Netgear/TelnetConsole
using System;
using System.Net;
using System.Net.Sockets;
using System.Text;
namespace Xenon
{
class Xenon
{
private static string pcName;
@Robertof
Robertof / pasteling.sh
Last active August 29, 2015 13:57
pasteling.sh - a Bash script for Pasteling. Please check out the help with `pasteling -h`.
#!/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 || \

Keybase proof

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:

@Robertof
Robertof / router-report.pl
Created May 22, 2015 17:31
This script generates a report containing various statistics about the Technicolor AG plus VDNT-S Router VDSL2 (also known as the "Telecom Italia VDSL/Fibra modem"). This is achieved by logging in to the router, requesting the various statistics page and summarising everything in a JSON file. The file is saved inside the REPORT_DIR, with the for…
#!/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;