Skip to content

Instantly share code, notes, and snippets.

View cjpan's full-sized avatar
🎯
Focusing

cjpan cjpan

🎯
Focusing
View GitHub Profile
@cjpan
cjpan / PPAP.py
Created January 4, 2017 12:39
PPAP - Programming language(Python) ver.
class Base(object):
def __init__(self):
print "I have a %s" % self.__str__()
def __call__(self):
return self.__str__()
class Combination(object):
def uh(self):
@cjpan
cjpan / python_resources.md
Last active August 29, 2015 14:08 — forked from jookyboi/python_resources.md
Python-related modules and guides.

Packages

  • lxml - Pythonic binding for the C libraries libxml2 and libxslt.
  • boto - Python interface to Amazon Web Services
  • Django - Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.
  • Fabric - Library and command-line tool for streamlining the use of SSH for application deployment or systems administration task.
  • PyMongo - Tools for working with MongoDB, and is the recommended way to work with MongoDB from Python.
  • Celery - Task queue to distribute work across threads or machines.
  • pytz - pytz brings the Olson tz database into Python. This library allows accurate and cross platform timezone calculations using Python 2.4 or higher.

Guides

@cjpan
cjpan / 0_reuse_code.js
Last active August 29, 2015 14:08
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@cjpan
cjpan / about.md
Created December 5, 2012 07:49 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer