This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Collected Ideas on OOP and Software Design as of now | |
Just One Idea (Jeff Casimir et. al.) | |
Application - ONE value proposition (monolithic is crappy) | |
Module - collection of ideas | |
Class - one domain | |
Method - one purpose | |
Line - one thought | |
Clarity over brevity: (Jeff Casimir et. al.) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Spawns a rescue worker configured according to local hostname. | |
# See the 'case'-block at the end of this file. | |
# | |
# make sure we have our environment | |
source ~/.bash_profile |
NewerOlder