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
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <meta name="generator" content= | |
| "HTML Tidy for Linux/x86 (vers 11 February 2007), see www.w3.org" /> | |
| <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" /> | |
| <title>xHTMLx Has Defaced</title> | |
| <meta content="MSHTML 6.00.2900.2180" name="GENERATOR" /> | |
| <style type="text/css"> | |
| /*<![CDATA[*/ |
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 | |
| namespace PHPacker | |
| { | |
| class CodePacker | |
| { | |
| private $file; | |
| private $parser; | |
| private $stmnts; | |
| public static $SUPERGLOBALS = array('GLOBALS', '_SERVER', '_GET', '_POST', '_FILES', '_COOKIE', '_SESSION', '_REQUEST', '_ENV'); |
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; | |
| unsafe class Unsafe | |
| { | |
| public static unsafe string DoStuff() | |
| { | |
| string st = "-0.5"; | |
| fixed (char *str = st) | |
| return new String(str + 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
| class Room | |
| constructor: (@name) -> | |
| owner: (cb) -> | |
| R.get "rooms:#{@name}:owner", (err, owner) -> | |
| cb owner | |
| members: (cb) -> | |
| R.smembers "rooms:#{@name}:members", (err, members) -> | |
| cb members |
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
| ActionScript | |
| AppleScript | |
| ASP | |
| Batch File | |
| C# | |
| C++ | |
| Clojure | |
| coffee-script-tmbundle | |
| Color Scheme - Default | |
| CSS |
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
| class Room | |
| constructor: (@name) -> | |
| owner: (cb) -> | |
| R.get "rooms:#{@name}:owner", (err, owner) -> | |
| cb owner | |
| members: (cb) -> | |
| R.smembers "rooms:#{@name}:members", (err, members) -> | |
| cb members |
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
| !!! | |
| %html | |
| %head | |
| %title DupeShare | |
| = stylesheet_link_tag "application" | |
| = javascript_include_tag "application" | |
| = csrf_meta_tags | |
| :javascript | |
| setTimeout(function () { | |
| window.location.reload(); |
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
| #!/bin/bash | |
| SIZE="1280x720" | |
| THUMB="512x512" | |
| OUT="mc.itsbth.com:/var/www/img/w/" | |
| WEB="http://img.itsbth.com/w/" | |
| TITLE=$(curl "$1" 2> /dev/null | perl -ne '$_ =~ m#<title>(.+)</title># and print $1') | |
| TITLE=$(perl -e '$ARGV[0] =~ s/[^A-Za-z0-9]+/-/g; print $ARGV[0]' "$TITLE") | |
| FILENAME="${TITLE}_$(date '+%d-%m-%y_%H-%M-%S')" |
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
| local function map(f, iter, state, k) | |
| return function(state, k) | |
| local v | |
| k, v = iter(state, k) | |
| if k then | |
| return k, f(v) | |
| end | |
| end, state, k | |
| end |