This file contains 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"?> | |
<cruisecontrol> | |
<project name="ghtlib" buildafterfailed="false"> | |
<modificationset> | |
<alwaysbuild/> | |
</modificationset> | |
<schedule interval="60"> | |
<ant anthome="apache-ant-1.7.0" buildfile="projects/${project.name}/build.xml"/> | |
</schedule> |
This file contains 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"?> | |
<project name="ghtlib" default="build" basedir="."> | |
<target name="build" depends="checkout,php-documentor,php-codesniffer,phpunit" /> | |
<target name="checkout"> | |
<exec executable="git" dir="${basedir}/source"> | |
<arg line="pull master origin" /> | |
</exec> | |
</target> |
This file contains 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
protected $_elementDecorators = array( | |
'ViewHelper', | |
'Description', | |
'Errors', | |
array( | |
// Decorator name | |
'Callback', | |
// Options | |
array( | |
'callback' => function($content, $element, array $options) |
This file contains 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
<form id="my-form"> | |
<input type="text" name="in" value="some data" /> | |
<button type="submit">Go</button> | |
</form> | |
<script> | |
// Should only be triggered on first page load | |
alert('ho'); |
This file contains 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 node | |
/* | |
* Takes a list of files and runs them through JSHint | |
* | |
* Usage: | |
* check.js file1 file2 file3 | |
*/ | |
var fs = require('fs'), |
This file contains 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 <stdio.h> | |
#include <string.h> | |
#include <time.h> | |
#include <vector> | |
#include <openssl/sha.h> | |
using namespace std; | |
int main() | |
{ |
This file contains 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
var worker = new Worker('worker.js'); |
This file contains 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
function init() { | |
document.parser = new Worker('https://raw.github.com/guyht/Giki/master/lib/gworker.js'); | |
document.parser.onerror = function(event){ | |
throw new Error(event.message + " (" + event.filename + ":" + event.lineno + ")"); | |
}; | |
document.parser.onmessage = function(event) { | |
document.getElementById('wiki_div').innerHTML = event.data; | |
}; | |
document.parser.postMessage(document.getElementById('wiki_textarea').value); | |
} |
This file contains 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
<div id="bbcode_div"></div> | |
<textarea id="bbcode_ta" cols="20" rows="5"></textarea></pre> |
This file contains 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
Incident Identifier: A2EAC453-F4AC-4240-B364-D4E29EEBCDAD | |
CrashReporter Key: d80c282094567ce2b4a19bbc8aae0e3697976995 | |
Hardware Model: iPhone3,1 | |
Process: [APP_NAME [1037] | |
Path: /var/mobile/Applications/71A84C67-8919-42FC-B3B2-55EAA143D757/[APP_NAME.app/[APP_NAME | |
Identifier: [APP_NAME | |
Version: ??? (???) | |
Code Type: ARM (Native) | |
Parent Process: launchd [1] |
OlderNewer