To replace the whole file content by clipboard in VIM
:%d
cmd+v
:w
# To use it: | |
# show_me_git_change_logs release-v2.38.0 | |
# show_me_git_change_logs release-v2.38.0 another_branch | |
function show_me_git_change_logs() { | |
fromBranch=${1} | |
toBranch=${2:-master} | |
echo "Here are the changelogs for origin/${fromBranch}...origin/${toBranch}\n" | |
# Sort and add bullet for each item as well | |
git log --oneline --no-merges --pretty=format:%s origin/${fromBranch}...origin/${toBranch} | sort | sed 's/^/- /' | |
} |
To replace the whole file content by clipboard in VIM
:%d
cmd+v
:w
#!/bin/bash | |
RED='\e[1;31m' | |
BOLD='\e[0;1m' | |
NC='\e[0m' | |
MESSAGE=$(cat $1) | |
COMMIT_FORMAT="^(?i:build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test|breaking change)\(.*\)?:?\ .*$" | |
if ! grep -E "$COMMIT_FORMAT" <<< "$MESSAGE"; then |
#!/usr/local/bin/php | |
<?php | |
// Inspired from https://gist.github.com/Epskampie/427c512722b8e6c4cbf5f1340b87986b | |
// To use this script: | |
// - Change #!/usr/local/bin/php to your PHP binary path | |
// - chmod +x php-cs-fixer-std.php | |
// - Make symlink: ln -s ~/Downloads/php-cs-fixer-std.php /usr/local/bin/php-cs-fixer-std | |
// - Use: php-cs-fixer-std fix --rules=@Symfony src/PhpFile.php | |
// - This supports only one file and --debug flag to see the file content before and after the fix |
Privacy Policy for Just a new tab
Privacy Policy Last updated: November 18, 2023
This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protects You.
We use Your Personal data to provide and improve the Service. By using the Service, You agree to the collection and use of information in accordance with this Privacy Policy. This Privacy Policy has been created with the help of the Free Privacy Policy Generator.
Interpretation and Definitions
brew install fish
curl -L https://get.oh-my.fish | fish
To not have "data" as root level but just pure array of data.
// Source: https://news.ycombinator.com/item?id=11718653 | |
* b69B80Oo | |
* 1Il| | |
* ij | |
* 5S | |
* 9gq | |
* co | |
* rn m | |
* cl d | |
* vv w |
This text is the section about OS X Yosemite (which also works for macOS Sierra) from https://docs.basho.com/riak/kv/2.1.4/using/performance/open-files-limit/#mac-os-x
The last time i visited this link it was dead (403), so I cloned it here from the latest snapshot in Archive.org's Wayback Machine https://web.archive.org/web/20170523131633/https://docs.basho.com/riak/kv/2.1.4/using/performance/open-files-limit/