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
using System; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Text; | |
namespace Xenon | |
{ | |
class Xenon | |
{ | |
private static string pcName; |
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
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 | |
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
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 |
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 | |
# 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; |
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
<?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 |
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
/** | |
* 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. | |
* |
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 | |
# 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; | |
$|++; |
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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("facebook.com") { | |
.messageBody, .uiStreamHeadline { font-size: 11px !important; } | |
.actorName a { font-size: 12px !important; } | |
.uiStreamMessage { margin-top: -2px !important; } | |
} |
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
/** | |
* Created by Robertof <[email protected] / http://about.me/roberto.f>. | |
* File creation date: 10-ott-2012 19.14.37 | |
* Licensed under GNU/GPL v3. | |
*/ | |
package com.robertof; | |
public class Utils { | |
public static String bytesToHex(byte[] bytes) { | |
final char[] hexArray = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'}; |
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/env perl | |
######################################## | |
# Author............Robertof # | |
# Website...........about.me/roberto.f # | |
# [email protected] # | |
# License...........GNU/GPL version 3 # | |
######################################## | |
# Provides methods for RSA key # | |
# generation, DSA signing and more. # | |
######################################## |