(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| #!/bin/bash | |
| # | |
| # Inspects branch name and checks if it contains a Jira ticket number (i.e. ABC-123). | |
| # If yes, commit message will be automatically prepended with [ABC-123]. | |
| # | |
| # Useful for looking through git history and relating a commit or group of commits | |
| # back to a user story. | |
| # |
| "Walking on water and developing software from a specification are easy if both are frozen." | |
| - Edward V Berard | |
| "Computer science education cannot make anybody an expert programmer any more than studying brushes and pigment can make somebody an expert painter." | |
| - Eric S. Raymond | |
| "Talk is cheap. Show me the code." | |
| - Linus Torvalds | |
| "In God we trust. All others must bring data." |
| server { | |
| listen 80 default deferred; | |
| server_name laravel-application.com; | |
| # http://nginx.org/en/docs/http/ngx_http_log_module.html#access_log | |
| access_log /var/www/laravel-app/access.log; | |
| error_log /var/www/laravel-app/error.log; | |
| root /var/www/laravel-app/public/; |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| # Makefile | |
| # | |
| # Converts Markdown to other formats (HTML, PDF, DOCX, RTF, ODT, EPUB) using Pandoc | |
| # <http://johnmacfarlane.net/pandoc/> | |
| # | |
| # Run "make" (or "make all") to convert to all other formats | |
| # | |
| # Run "make clean" to delete converted files | |
| # Convert all files in this directory that have a .md suffix |
Prereq:
apt-get install zsh
apt-get install git-coreGetting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh