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
[ | |
{ | |
"letters": "e", | |
"numbers": "10", | |
"colors": "Red" | |
}, | |
{ | |
"letters": "g", | |
"numbers": "19", | |
"colors": "Orange" |
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(window, factory) { | |
if (typeof exports === "object") { | |
// Node. Does not work with strict CommonJS, but only CommonJS-like | |
// enviroments that support module.exports, like Node. | |
module.exports = factory(); | |
} else if (typeof define === "function" && define.amd) { | |
// Allow using this built library as an AMD module in another project. That | |
// other project will only see this AMD call, not the internal modules in | |
// the closure below. | |
define(factory); |
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
Dear Mr. Baker: | |
Thank you for your letter concerning the "Cyber Intelligence Sharing and Protection Act" (H.R. 3523). I appreciate your taking the time to write and welcome the opportunity to respond. | |
The Cyber Intelligence Sharing and Protection Act was introduced in the House of Representatives on February 13, 2013 by Representative Mike Rogers (R-MI). The bill would, among other things, establish procedures to allow the Intelligence Community to share cyber threat intelligence with the private sector. |
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 | |
gem update sass | |
gem update compass | |
if [ -h "/Applications/LiveReload.app/Contents/Resources/SASS.lrplugin/lib/sass" ] | |
then | |
sudo rm /Applications/LiveReload.app/Contents/Resources/SASS.lrplugin/lib/sass | |
else | |
sudo mv /Applications/LiveReload.app/Contents/Resources/SASS.lrplugin/lib/sass /Applications/LiveReload.app/Contents/Resources/SASS.lrplugin/lib/sass.orig | |
fi | |
if [ -h "/Applications/LiveReload.app/Contents/Resources/SASS.lrplugin/lib/compass" ] |
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 | |
# | |
# You should do a find/replace for APPNAME, LOCALDBUSER, and LOCALDBNAME | |
# | |
# via https://devcenter.heroku.com/articles/pgbackups#importing-from-a-backup, https://github.com/heroku/heroku/issues/556 | |
# by: @joeybaker | |
heroku pgbackups:capture --expire --app APPNAME | |
curl -o latest.sql `heroku pgbackups:url --app APPNAME` |
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
sudo rm /var/vm/sleepimage |
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
# 1. Quit mail | |
# 2. Load terminal | |
# 3. cd ~/Library/Mail | |
# 4. sqlite3 Envelope\ Index | |
# 5. at the 'sqlite>' prompt, enter 'vacuum subjects;' and then 'vacuum;' | |
# 6. Reload mail - it may well be faster loading and your search may well work again! | |
cd ~/Library/Mail | |
sqlite3 Envelope\ Index | |
vacuum subjects; |
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
<key>NSUIElement</key> | |
<string>1</string> |
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
<files wp-config.php> | |
order allow,deny | |
deny from all | |
</files> | |
Options +FollowSymLinks | |
RewriteEngine On | |
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR] | |
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR] | |
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2}) | |
RewriteRule ^(.*)$ index.php [F,L] |
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
<!doctype html> | |
<title>Image-free spinner</title> | |
<style> | |
@-webkit-keyframes fadeOut { | |
0% { opacity:1; } | |
100% { opacity:.1; }} | |
p { | |
position:absolute; | |
overflow:hidden; | |
top:50%; |