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
find /tmp -name "tmp.*" -mtime +7 -delete |
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
*~ | |
*.pyc | |
.vagrant | |
venv |
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
openssl genrsa -des3 -passout pass:x -out server.pass.key 2048 | |
openssl rsa -passin pass:x -in server.pass.key -out server.key | |
rm server.pass.key | |
openssl req -new -key server.key -out server.csr | |
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt |
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
cd ~ | |
sudo apt-get update | |
sudo apt-get upgrade -y | |
sudo apt-get install openjdk-7-jre-headless -y | |
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.2.deb | |
sudo dpkg -i elasticsearch-0.90.2.deb | |
sudo service elasticsearch start | |
# Check http://www.elasticsearch.org/download/ for latest version of ElasticSearch and replace wget link below |
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
App.Video = DS.Model.extends({ | |
responses: DS.hasMany('App.Video') | |
}); | |
// in a controller | |
save: function() { | |
var v = this.get('model'); | |
var r = App.Video.find(this.get('responseId')); | |
v.get('responses').pushObject(r); | |
console.log(v.get('isDirty')); // false |
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
@app.route("/<user_id>/facebook_id", methods=["PUT"]) | |
def put_facebook_id(user_id): | |
fb_d, err = get_facebook_data_from_cookie(request) | |
if err: | |
return json_error(err) | |
else: | |
# save and return success | |
pass | |
def get_facebook_data_from_cookie(request): |
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 email_one_tip_a_day() { | |
// pick a tip | |
var data_sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('tips'); | |
var num_rows = 90; | |
var row_num = Math.floor((Math.random()*num_rows)+1);; | |
var dataRange = data_sheet.getRange(row_num, 1, 1, 1); | |
var tip = dataRange.getValues(); | |
// email it to some people | |
var todays_date = Utilities.formatDate(new Date(), "EST", "d MMMM"); |
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
<html> | |
<head> | |
<script> | |
function isFullscreen() { | |
if ((window.screen.height === window.innerHeight) && | |
(window.screen.width === window.innerWidth)) { | |
return true; | |
} else { | |
return false; | |
} |
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
package main | |
import ( | |
"fmt" | |
"runtime" | |
"time" | |
) | |
func main() { | |
// THIS is totally required; without it, you're blocking the CPU regardless |
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
[[email protected] ~ ]$ python2.7 | |
Python 2.7.1 (r271:86832, Aug 5 2011, 03:30:24) | |
[GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)] on darwin | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> from decimal import Decimal | |
>>> Decimal('500') < 5597.22 | |
True | |
>>> quit() | |
[[email protected] ~ ]$ python2.6 |