Open folder where chrome driver downloaded and open terminal & run one by one
sudo chmod +x chromedriverOpen folder where chrome driver downloaded and open terminal & run one by one
sudo chmod +x chromedriver| def dump_func_name(func): | |
| def echo_func(*func_args, **func_kwargs): | |
| print('') | |
| print('Start func: {}'.format(func.__name__)) | |
| return func(*func_args, **func_kwargs) | |
| return echo_func | |
| class ClassName(object): | |
| @dump_func_name |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| #!/usr/bin/env bash | |
| # MIT © Sindre Sorhus - sindresorhus.com | |
| # git hook to run a command after `git pull` if a specified file was changed | |
| # Run `chmod +x post-merge` to make it executable then put it into `.git/hooks/`. | |
| changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)" | |
| check_run() { | |
| echo "$changed_files" | grep --quiet "$1" && eval "$2" |