,ad8888ba, 88
d8"' `"8b "" ,d
d8' 88
88 88 MM88MMM
88 88888 88 88
Y8, 88 88 88
Y8a. .a88 88 88,
`"Y88888P" 88 "Y888
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
<?php | |
/** | |
* Recursively search an array for a given value. Returns the root element key if $needle | |
* is found, or FALSE if $needle cannot be found. | |
* | |
* @param mixed $needle | |
* @param array $haystack | |
* @param bool $strict | |
* @return mixed|bool |
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
<?php | |
require_once 'ControllerTestCase.php'; | |
class AccountControllerTest extends ControllerTestCase | |
{ | |
public function testSignupWithNoDataRedirectsAndHasErrors() | |
{ | |
$response = $this->post('account@signup', array()); |
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 Queue = function() { | |
var isInit = false; | |
var queue = []; | |
return { | |
onInit: function(callback) { | |
if (isInit) { | |
callback(); |
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 Event = function() { | |
var self = this; | |
self.queue = {}; | |
self.fired = []; | |
return { | |
fire: function(event) { |
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
=begin | |
This script will replay an Apache log file and verify whether each request | |
is cacheable by Akamai. | |
To run the script, provide the log file and your Akamai origin host name as | |
arguments, for example: | |
replayer.rb /var/log/apache/access.log http://dsd-www.example.com.edgesuite-staging.net | |
=end | |
require 'net/http' |
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
Show hidden characters
{ | |
"theme": "Soda Dark.sublime-theme", | |
"color_scheme": "Packages/Theme - Refined/Color Schemes/Monokai Refined.tmTheme", | |
"font_face": "Droid Sans Mono", | |
"font_size": 12, | |
"font_options": ["no_italic"], | |
"highlight_line": true, | |
"line_padding_top": 3, | |
"line_padding_bottom": 3, |
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
# This requires GNU sed (or any sed which supports -i) and expand | |
find . -type f -printf "sed -i 's/[ \t]*$//' %p && expand -t 4 %p > %p.tmp && mv %p.tmp %p\n" | sh | |
# It's better to be more specific about which files you want to run the replacement in, e.g. | |
find . -type f -name *.php -printf "sed -i 's/[ \t]*$//' %p && expand -t 4 %p > %p.tmp && mv %p.tmp %p\n" | sh | |
# You can use find's -regex option to match multiple extensions (you need to double-escape backslashes in bash): | |
find . -type f -regex .+\\\.\\\(php\\\|css\\\|js\\\)\$ -printf "sed -i 's/[ \t]*$//' %p && expand -t 4 %p > %p.tmp && mv %p.tmp %p\n" | sh |
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
#!/bin/bash | |
PIDFILE=".watch.pid" | |
touch $PIDFILE || (echo "Unable to write to .watch.pid" && exit 1) | |
# Kill off old processes | |
while read pid; do | |
kill $pid | |
done < $PIDFILE |
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 sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://gist.githubusercontent.com/wildlyinaccurate/5539084/raw/hack.sh | sh | |
# |
OlderNewer