How to search CloudWatch logs for Metrics (or errors) on lambda
This post is a simple step by step guide on how to search Cloudwatch for errors on a lambda function. I find that
Django management commands from admin interface
This need came up when during app deployment, needed to run some management commands without ssh-ing into the server or using the terminal.
Import data into database – django app
Steps to import data into your Django app So you have a Django app and want to load data from a URL, a CSV
Effective collaboration and communication
So I did this small talk on effective collaboration and communication where I work so I thought I'd share. Download here
Bower install from a forked repository
If for any reason you need to fork a repo and want to install your forked version using Bower, follow these steps: Fork
Update a model field – Django
I noticed a typo in a field name after running migrations, I followed these steps to update the field without loosing data. Update
virtualenv for python3
Simple steps to setup virtualenv for Python3 To setup virtualenv for python3 for Django projects, create and cd into the desired folder for
Fix IOError: [Errno 2] No such file or directory error for appdirs
Appdirs is a small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir". Github repo - https://github.com/ActiveState/appdirs This error from my