Skip to content

Instantly share code, notes, and snippets.

View dshafik's full-sized avatar
🌈

Davey Shafik dshafik

🌈
View GitHub Profile
diff --git a/external/footer.php b/external/footer.php
index 0bd5e30..c6fa5da 100755
--- a/external/footer.php
+++ b/external/footer.php
@@ -4,7 +4,7 @@ if (extension_loaded('xhprof') && $_xhprof['doprofile'] === true) {
$xhprof_data = xhprof_disable();
$xhprof_runs = new XHProfRuns_Default();
$run_id = $xhprof_runs->save_run($xhprof_data, $profiler_namespace, null, $_xhprof);
- if ($_xhprof['display'] === true)
+ if ($_xhprof['display'] === true && PHP_SAPI != 'cli')
@dshafik
dshafik / closure-puzzle.php
Created January 13, 2012 17:29
The Closure Puzzle
<?php
class Bar {
public function A()
{
echo __METHOD__, PHP_EOL;
}
private function B()
{
echo __METHOD__, PHP_EOL;
<?php
class ClassName {
function foo()
{
echo __METHOD__, PHP_EOL;
}
function bar()
{
echo __METHOD__, PHP_EOL;
@dshafik
dshafik / README.md
Created January 31, 2012 05:14 — forked from ucnv/README.md
Diff for gist.github
<?php
$good_salt = '$2y$10$22randomcharactershere$';
$logged_in = false;
if (strpos($stored_password, '$2a$') === 0) {
$bad_hash = '$2x$' .substr($stored_password, 4);
if (crypt($input_password, $bad_hash) == $bad_hash)) {
// generate a new password
<?php
$interval = DateInterval::createFromDateString("1 hour");
$dateTime->add($interval);
echo $dateTime->format(DateTime::ATOM); // 2012-09-01T23:20:01+01:00
?>
<?php
$array = new SplFixedArray($size);
$array[0] = 'foo';
$array[1] = 'bar';
...
$array[100000] = 'baz';
?>
#!/usr/bin/env python
"""
Convert JSON data to human-readable form.
(Reads from stdin and writes to stdout)
"""
import sys
import json
#!/usr/bin/env python
"""
Convert JSON data to human-readable form.
(Reads from stdin and writes to stdout)
"""
import sys
import json
The media type quality factor associated with a given type is determined by finding the media range with the highest precedence which matches that type. For example,
Accept: text/*;q=0.3, text/html;q=0.7, text/html;level=1,
text/html;level=2;q=0.4, */*;q=0.5
would cause the following values to be associated:
text/html;level=1 = 1
text/html = 0.7
text/plain = 0.3
image/jpeg = 0.5