- Keep Learning Everyday
- Reading - AWS In Action
- Cheatsheet - hand written, keep it in one page
- vim
gsf
- change to fake style, e.g. foo = ‘fake_foo’
gsp
- change to param style
- graphene - use
nonnull
and
required=True
- django
- use foreign key constraints
- when adding constraints, also add DB data cleaning migrations
- oneview
- bash new alias
django-admin
- get reverse sql
sqlmigrate oneview 0274 --backwards
- API Design, 3 options -> consider using
Enum
- REST API Design, follow github rest
- consider using celery - for slow running task and doesn’t need
result right now