Skip to content

Instantly share code, notes, and snippets.

@kashifrazzaqui
Last active August 29, 2015 14:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kashifrazzaqui/b9be12e6163023da2bab to your computer and use it in GitHub Desktop.
Save kashifrazzaqui/b9be12e6163023da2bab to your computer and use it in GitHub Desktop.
Setup for Project Modern
* https://www.python.org/
* https://www.python.org/about/gettingstarted/
* Install postgres using this
$ brew install postgres
$ ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgents
$ launchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
* Install pgAdmin3
* http://www.postgresql.org/ftp/pgadmin3/release/v1.20.0/osx/
* Setup postgres db and user
$ createuser mrcool -d -W
$ createdb worldsbestdb -U mrcool
* Install ipython3
$ brew python3
$ pip3 install ipython pyzmq jinja2 tornado
$ ipython notebook
* https://github.com/kashifrazzaqui/pythonbasics (use this to learn basic concepts)
$ git clone git@github.com:kashifrazzaqui/pythonbasics.git
$ cd pythonbasics
$ ipython notebook basics.ipynb
* Read the following
* https://docs.python.org/3/reference/datamodel.html
* https://www.python.org/dev/peps/pep-0008/
* http://web.archive.org/web/20130116005443/http://tomayko.com/writings/rest-to-my-wife
* Transforming Code into Beautiful, Idiomatic Python - https://www.youtube.com/watch?v=OSGv2VnC0go
* Python Concurrency(David Beazley) - https://www.youtube.com/watch?v=MCs5OvhV9S4
* Install Vyked Framework
$ pip3 install vyked
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment