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 Member = function() { | |
this.FirstName = ko.observable(""); | |
this.LastName = ko.observable(""); | |
this.Email = ko.observable(""); | |
this.DisplayName = ko.computed(this.getDisplayName, this); | |
}; | |
CurrentUser.prototype.getDisplayName = function () { | |
return this.FirstName + " " + this.LastName; | |
}; | |
CurrentUser.prototype.update = function(response) { |
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
[23/Feb/2013:09:15:12 -0500] "GET /DevOps/deploy-dashboard?cmd=listkeys HTTP/1.1" 200 167 "-" "mercurial/proto-1.0" | |
[23/Feb/2013:09:15:12 -0500] "POST /DevOps/deploy-dashboard?cmd=unbundle HTTP/1.1" 500 325 "-" "mercurial/proto-1.0" |
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
# ugh... | |
for i, val in enumerate(my_list): | |
... do some stuff | |
my_list.pop(i) | |
... do more stuff |
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
def fill_db(db, count=DOC_COUNT, docsize=STD_DOC_SIZE): | |
doc_ids = [] | |
if _ in range(count): | |
doc = db.create_doc({"akey": "*" * docsize}) | |
doc_ids.append(doc.doc_id) | |
return doc_ids |
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 | |
# Copyright 2012 Canonical Ltd. | |
# Author: JuanJo Ciarlante <[email protected]> | |
# License: GPLv2 | |
DATABASE=<your databases separated by spaces> | |
ROLE=master | |
: ${PUSH_CMD:="nc <your corbon host> <your carbon port>"} | |
: ${FREQ:=10min} | |
for db in ${DATABASES};do | |
( |
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
def decode7bit(bytes): | |
"""Decode the first variant integer in bytes. | |
This function assumes that bytes begins with an encoded variant of an | |
integer. It will read one byte at a time until the high order bit is 0 and | |
the combined value of 7bit integers values will be returned along with how | |
many bytes have been read. | |
""" | |
pos = 0 | |
value = 0 |
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
import psycopg2 | |
from psycopg2.extensions import ISOLATION_LEVEL_SERIALIZABLE | |
conn_str = "dbname='{db}' user='john' host='localhost' password='john'" | |
table_sql = "CREATE TABLE bigdata (A INT PRIMARY KEY, b TEXT, c TEXT NOT NULL);" | |
conn1 = psycopg2.connect(conn_str.format(db='test-1')) | |
conn2 = psycopg2.connect(conn_str.format(db='test-2')) |
NewerOlder