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 | |
/* | |
* InfernoBot 3.0 | |
* Created by Robertof | |
* Released under GNU/GPL 3.0 | |
* | |
* http://www.informarts.org | |
*/ | |
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 | |
if (isset ($_GET["risposta"]) && $_GET["risposta"] == "quadrato") { | |
$_COOKIE["LQui"] = md5 ("3rd"); | |
header ("Location: third.php"); | |
exit; | |
} else { | |
header ("Location: second.php"); | |
exit; | |
} | |
?> |
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); | |
/* Lufny dark theme v1.0 */ | |
/* Author: Robertof */ | |
/* The code is very bad, but I wrote this in 15 minutes, so.. */ | |
/* Screenshot: http://i.imgur.com/yuTVX.png */ | |
/* Fix for /about.html page */ | |
@-moz-document url("http://lufny.it.cx/about.html") { | |
body { color: #fff; } |
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 | |
# Robertof's imgur uploader version 1.1 | |
# Author: Guess who? Robertof | |
# Requirements: LWP::UserAgent, Term::ProgressBar, Getopt::Long, Term::ANSIColor, File::Basename, Pod::Usage | |
# Based on shura's imageshack uploader. | |
use strict; | |
use LWP::UserAgent; | |
use Term::ProgressBar 2.00; | |
use Getopt::Long; | |
use Term::ANSIColor qw(:constants); |
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 | |
// Author: Robertof | |
// You are free to use this, but please don't remove my name from the source. ty :3 | |
class EncryptionManager | |
{ | |
private $algorithm; | |
private $mode; | |
private $cipher; | |
public function __construct ($algorithm="rijndael-256", $mode="cbc") |
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.12.25 | |
* Licensed under GNU/GPL v3. | |
*/ | |
package com.robertof; | |
import java.io.UnsupportedEncodingException; | |
import java.security.AlgorithmParameters; | |
import java.security.InvalidAlgorithmParameterException; |
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. # | |
######################################## |
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
@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; } | |
} |
OlderNewer