- Be serious
- it is a focused/conscious activity, not a byproduct of office behaviour
- You need a Plan
- zoom in/out
- explain through process and context
- Mind the Gap
| # !/bin/bash | |
| function simple_git_branch() { | |
| if [ -n "$(ls -la | grep '.git$')" ]; then | |
| echo "$(git branch | grep '^*' | colrm 1 2)" | |
| else | |
| echo "~" | |
| fi | |
| } |
When you are in need of a new color scheme and you want to sidestep the hassle of manually editing and loading each scheme one by one, you can do so with these steps:
:SetColors all command (it will set the script to use newly downloaded schemes from the repo).vimrc color scheme with colorscheme [scheme name]Blamestorming - the ultimate blame game within the working environment.
Professionals set boundary between their work and private time.
link: https://github.com/defunkt/gist
gist (options) my_gist.rb
| Description | Option | Full command |
|---|---|---|
| single file upload | / | filename.format |
| multiple file upload | / | file1 file2 file3 |
Scope is a program space within which certain types of variables are visible.
Why is Global State evil? Main reasons:
The following is the summary of the Mythical Man-Month aka MMM, the book that needs no introduction. It is a must-read for every participant of any software development process.
Insights sections include my personal realizations derived from the material read and are essentially a collection of a-ha moments.