Here is some text that has rudimentary formatting
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 $args = array( | |
'post_type' => 'attachment', | |
'orderby' => 'menu_order', | |
'order' => 'ASC', | |
'post_mime_type' => 'image', | |
'post_status' => null, | |
'post_parent' => get_the_ID() | |
); | |
$attachments = get_posts($args); | |
$count=0; $i=0; |
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
void* | |
memmove(void *vdst, void *vsrc, int n) | |
{ | |
char *dst, *src; | |
dst = vdst; | |
src = vsrc; | |
if(*vdst > *vsrc) { | |
*vdst += n; | |
*vsrc += n; |
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
4 < Jerub> antihero: the api would eventually look like: def render_GET(self, request): return deferToProcess(convert_image, request.args('imageid')).addCallback(lambda image: | |
(request.write(image), request.close())); return NOT_DONE_YET |
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
[Background] | |
Color=0,0,0 | |
Transparency=false | |
[BackgroundIntense] | |
Color=20,44,27 | |
Transparency=false | |
[Color0] | |
Color=0,0,0 |
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
<gconfentryfile> | |
<entrylist base="/apps/gnome-terminal"> | |
<entry> | |
<key>global/active_encodings</key> | |
<schema_key>/schemas/apps/gnome-terminal/global/active_encodings</schema_key> | |
<value> | |
<list type="string"> | |
<value> | |
<string>UTF-8</string> | |
</value> |
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 | |
$msg = "Lorem"; | |
// Key that user inputs | |
$okey = "potato"; | |
// A slow hash is made from this key - 2^14 iterations of whirlpool. Salt is generated automatically and is about 100 characters long. | |
$hash = $hasher->hash($okey); | |
// Salt of this hash is taken and stored, so that hash can be re-created with correct original key. | |
$salt = $hasher->pull_salt($hash); | |
// Last 32 characters of hash are taken for use as actual key | |
$key = substr($hash, -32); |
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
<pre><?php | |
class WhirlHasher { | |
protected $_strength; | |
protected $_itoa64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; | |
public function __construct($strength=14) { | |
$this->_strength = $strength; | |
} | |
public function hash_password($password, $salt=False) { |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>author</key> | |
<string>Michael Sheets, James Cleveland</string> | |
<key>name</key> | |
<string>TwilightMod</string> | |
<key>settings</key> | |
<array> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>author</key> | |
<string>Michael Sheets, James Cleveland</string> | |
<key>name</key> | |
<string>TwilightMod</string> | |
<key>settings</key> | |
<array> |