Index ¦ Archives

Codework

Code Projects:
Tools & Tips:
  • Figlet - For generating README ASCII artwork.
  • Github Workflow - My github cheatsheet.
  • virtualenv Useful for jumping straight to a project folder. The key command is mkvirtualenv -a $(pwd) project-name allowing you to type workon project-name from anywhere to jump straight to that folder.
Front End Workflow

Yeoman: Yeoman helps you to kickstart new projects, prescribing best practices and tools to help you stay productive. The Yeoman workflow comprises three types of tools for improving your productivity and satisfaction when building a web app:

  1. The scaffolding tool (yo)
  2. The build tool (Grunt, Gulp, etc)
  3. The package manager (like Bower and npm).

The workflow is as follows:

  1. yo webapp (create a new webapp)
  2. bower search, bower install (handle dependencies)
  3. grunt serve (preview), grunt test (test), grunt (build)

© Imran Nazir. Built using Pelican. Theme by Giulio Fidente on github.