I hereby claim:
- I am quansai on github.
- I am gregthompsonjr (https://keybase.io/gregthompsonjr) on keybase.
- I have a public key whose fingerprint is 9C6B C267 EBA8 288D 8762 2E68 40E2 D582 3ECA 5FF9
To claim this, I am signing this object:
| myproject | |
| ├── backend | |
| │ ├── docs | |
| │ ├── myproject | |
| │ │ ├── manage.py | |
| │ │ └── myproject | |
| │ │ ├── dev.env | |
| │ │ ├── __init__.py | |
| │ │ ├── prod.env | |
| │ │ ├── settings |
| mysite | |
| ├── backend | |
| │ ├── docs | |
| │ ├── mysite | |
| │ │ ├── applications | |
| │ │ │ ├── api | |
| │ │ │ │ ├── __init__.py | |
| │ │ │ │ └── v1 | |
| │ │ │ │ ├── __init__.py | |
| │ │ │ │ ├── routes.py |
I hereby claim:
To claim this, I am signing this object:
| import sys | |
| import urllib2 | |
| from bs4 import BeautifulSoup | |
| if __name__=="__main__": | |
| REGISTRAR = "http://whois.com/whois/" | |
| # ask the user for the domain name if a domain was not passed in | |
| try: |
| { | |
| "name": "breakfast-project", | |
| "version": "0.0.1", | |
| "author": "Greg Thompson Jr.", | |
| "apps": [ | |
| { | |
| "app": "foods", | |
| "models": { | |
| "Food": { | |
| "parents": [ |
| { | |
| "name": "breakfast-project", | |
| "version": "0.0.1", | |
| "author": "Greg Thompson Jr.", | |
| "apps": [ | |
| { | |
| "app": "foods", | |
| "models": { | |
| "Food": { | |
| "parents": [ |
| { | |
| "name": "breakfast-project", | |
| "version": "0.0.1", | |
| "author": "Greg Thompson Jr.", | |
| "apps": [ | |
| { | |
| "app": "foods", | |
| "models": { | |
| "Food": { | |
| "parents": [ |
| #!/bin/bash | |
| #exit upon failure of one of the subprocesses below | |
| set -e | |
| #install dependencies | |
| sudo apt-get update -y -qq | |
| sudo apt-get -y install git | |
| sudo apt-get -y install postgresql | |
| sudo apt-get -y install pgadmin3 |
| #!/usr/bin/env python | |
| import os.path | |
| import os | |
| import stat | |
| import json | |
| import urllib2 | |
| import BaseHTTPServer | |
| import webbrowser | |
| import httplib | |
| import mimetools |
| package joanna; | |
| public class Joanna | |
| { | |
| public static void main (String [] args) | |
| { | |
| Species s1 = new Species(), s2 = new Species(); | |
| s1.setSpecies("Klingon Ox", 10, 15); | |
| s2.setSpecies("Klingon Ox", 10, 15); | |
| testEqualsOperator(s1,s2); |