See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| # Need HUB Download here -> https://hub.github.com/ | |
| # Need commitizen and cz-conventional-changelog Download here -> http://slides.com/damianopetrungaro/working-with-git/#/0/17 | |
| ``` | |
| [alias] | |
| co = checkout | |
| cob = checkout -b | |
| coo = !git fetch && git checkout | |
| ft = fetch | |
| ftp = fetch -p |
| #!/bin/bash | |
| # Seriously there still apparently aren't enough warning labels | |
| # If you don't understand the consequences don't do it | |
| REMOVE_PATHS=( # "/var/db/ConfigurationProfiles/.passcodePolicesAreInstalled" | |
| # "/var/db/ConfigurationProfiles/.cloudConfigHasActivationRecord" | |
| # "/var/db/ConfigurationProfiles/.cloudConfigNoActivationRecord" | |
| # "/var/db/ConfigurationProfiles/.cloudConfigProfileObtained" | |
| # "/var/db/ConfigurationProfiles/.cloudConfigRecordFound" | |
| # "/var/db/ConfigurationProfiles/.profilesAreInstalled" |
| <?php | |
| function get_leafs( $array ) { | |
| $leafs = array(); | |
| if ( ! is_array( $array ) ) { | |
| return $leafs; | |
| } |
This post by a security researcher who prefers to remain anonymous will elucidate concerns about certain problematic decisions Apple has made and caution about future decisions made in the name of “security” while potentially hiding questionable motives. The content of this article represents only the opinion of the researcher. The researcher apologises if any content is seen to be inaccurate, and is open to comments or questions through PGP-encrypted mail.
TL;DR
#show status bar in finder
defaults write com.apple.finder ShowStatusBar -bool true
#show path bar in finder
defaults write com.apple.finder ShowPathbar -bool true
#avoid creating .DS_Store files on network volumes
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true
| - Change the root password! | |
| - System Settings > Security | |
| - General: Set Password required to "instant" | |
| - FileVault: activate | |
| - System Setting > Keyboard | |
| - Set all key speeds to "fast" | |
| - Mark checkbox to use "fn" keys without option key | |
| - Generate SSH-Key: ssh-keygen -t rsa -C "email@provider.com" -b 2048 | |
| - Change desktop background :) | |
| - Install PHPstorm + Java |