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
func TestUserFail(t *testing.T) { | |
func() { | |
defer func() { | |
if r := recover(); r == nil { | |
t.Errorf("TestUserFail should have panicked!") | |
} | |
}() | |
// This function should cause a panic | |
CreateUser(12, "hello") |
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/sh | |
# | |
# Note this is mostly the standard git pre-commit.sample which can be found | |
# in your repo's .git/hooks/ directory with golang fmt added at the bottom. | |
# An example hook script to verify what is about to be committed. | |
# Called by "git commit" with no arguments. The hook should | |
# exit with non-zero status after issuing an appropriate message if | |
# it wants to stop the commit. |
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
/* | |
In a fairly typical webapp data model you often want to send | |
the client different "views" of the data model. | |
Many database and caching tools require the base model to be quite | |
standard with json tags and types, so the following approach is | |
ideal: | |
Based on this blog post and SO question: |
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" | |
"github.com/go-xorm/xorm" | |
_ "github.com/lib/pq" | |
"math/rand" | |
"time" | |
) |
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
from multiprocessing.pool import ThreadPool as Pool | |
from multiprocessing import Queue as PQueue | |
import Queue | |
my_dict = { | |
'url1': 'url2', | |
'url3': 'url4', | |
} | |
my_q = PQueue() |
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 | |
# --------------------------------------------------------------------------- # | |
# These are git settings from: | |
# http://neverstopbuilding.net/gitpro/ | |
# --------------------------------------------------------------------------- # | |
#source ~/.git-completion.bash | |
#source ~/.git-prompt.sh | |
# | |
# Settings for python virtual envs and the python virtualenvwrapper |
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 document is for quick ref while learning golang */ | |
// Allocating Slices | |
// Using slice literals | |
// Make a slice of strings | |
strs := []string{"aaa", "bbb", "ccc", "ddd"} | |
// Bytes | |
key := []byte("5e8487e6") | |
// Declaring a var my_slice for later makeage |
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 python | |
# Written by Warren Runk | |
# This file is free software in the public domain. | |
import base64 | |
import random | |
import uuid |
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 python | |
# Written by Warren Runk | |
# This file is free software in the public domain. | |
import base64 | |
import uuid | |
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 python | |
# This script is free software written by Warren Runk ([email protected]) | |
""" | |
This is a (hopefully) simple example of how to download your appengine logs to a normal | |
linux (non google or appengine) computer using remote api and logservice. | |
You can use appcfg.py to "request_logs" but that is not practical for real workloads | |
From here you can download smaller time slices of logs as necessary depending on your scale. |
NewerOlder