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
#include "Bind.hpp" | |
namespace OTR | |
{ | |
template <typename Object> | |
int objectID(Object const& object) | |
{ | |
return reinterpret_cast<intptr_t>(&object); | |
} | |
template <typename Sig, typename Func> |
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 python | |
# Original work by Rowan James at https://gist.github.com/rowanj/5475988 | |
# This is free and unencumbered software released into the public domain. | |
# http://unlicense.org | |
import argparse | |
import subprocess | |
import os | |
import glob |
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
#import <Foundation/Foundation.h> | |
@interface UIImage (Extensions) | |
+ (UIImage*)blankImage:(CGSize)_size; | |
+ (UIImage*)blankImage:(CGSize)_size withColor:(UIColor*)_color; | |
@end |
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
[gui "net.phere.GitX"] | |
key = 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
__author__ = '[email protected]' | |
import os | |
import fnmatch | |
import plistlib | |
import filecmp | |
import shutil | |
import sys |
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
{ | |
"controller": "GalleryViewController", | |
"name": "background", | |
"color": { | |
"red": 0.16862745098039, | |
"green": 0.16862745098039, | |
"blue": 0.16862745098039 | |
}, | |
"subviews": [ | |
{ |
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//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>DVTConsoleDebuggerInputTextColor</key> | |
<string>0.127549 0.462659 0.782314 1</string> | |
<key>DVTConsoleDebuggerInputTextFont</key> | |
<string>Menlo-Bold - 12.0</string> | |
<key>DVTConsoleDebuggerOutputTextColor</key> | |
<string>0.127549 0.462659 0.782314 1</string> |
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
/** | |
* Config was created in XVM Editor v0.7417 | |
* at Sat Mar 15 14:02:43 GMT+1100 2014 | |
*/ | |
{ | |
"configVersion": "5.0.1", | |
"editorVersion": "0.74", | |
"definition": { | |
"author": "rvalue (based on QuickyBaby)", | |
"date": "15/03/2014", |
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 | |
require_once('wp-includes/post-thumbnail-template.php'); | |
$test_post = "some post specifier"; | |
$result = get_post_thumbnail_id($test_post); | |
print("testing the function: $result"); | |
?> |