See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
Homebrew is a package management system for OS X. You can read more about it here, or simply run
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"to install it.
| #!/bin/bash | |
| # | |
| # description: Apache Tomcat init script | |
| # processname: tomcat | |
| # chkconfig: 234 20 80 | |
| # | |
| # | |
| # Copyright (C) 2014 Miglen Evlogiev | |
| # | |
| # This program is free software: you can redistribute it and/or modify it under |
| Moved: https://github.com/digitaljhelms/dotfiles |
| http://bem.info | |
| http://www.webplatform.org/ | |
| http://blog.teamtreehouse.com | |
| http://trentwalton.com/ | |
| http://www.onwardsearch.com/careers/Front-End-Developer-Career-Resources/ | |
| http://apigee.com/about/ | |
| http://josh.github.com/css-explain/ |
| #!/bin/sh | |
| ### | |
| # SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
| # For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
| ### | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |
| # bash | |
| alias b='vi ~/.bash_login' | |
| alias u='source ~/.bashrc' | |
| #ls | |
| alias l='ls -CF' | |
| alias ll='ls -alFc' | |
| alias la='ls -A' | |
| alias lt='ls -lart' |
| #!/usr/bin/php | |
| <?php | |
| $repos = array(); | |
| exec('find -type d -name .git | sed -e "s/\.git//"', $repos); | |
| foreach ($repos as $repo) { | |
| $status = shell_exec("cd $repo && git status"); | |
| if (false == strpos($status, 'nothing to commit (working directory clean)')) { | |
| echo "$repo\n" . str_repeat('-', strlen($repo)) . "\n$status\n\n"; | |
| } | |
| } |