See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| <TaskerData sr="" dvi="1" tv="5.0u7m"> | |
| <Task sr="task71"> | |
| <cdate>1519374941058</cdate> | |
| <edate>1519519907982</edate> | |
| <id>71</id> | |
| <nme>Demo</nme> | |
| <pri>100</pri> | |
| <Action sr="act0" ve="7"> | |
| <code>547</code> | |
| <Str sr="arg0" ve="3">%url</Str> |
| # NVM version shortcut | |
| # change title name of tab in terminal | |
| function title { | |
| echo -ne "\033]0;"$*"\007" | |
| } | |
| cd() { | |
| builtin cd "$@" || return | |
| #echo $PREV_PWD | |
| if [ "$PWD" != "$PREV_PWD" ]; then |
| Hi All! | |
| I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future. | |
| Feel free to request any features you'd like to see, and I'll prioritize them accordingly. | |
| One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it. | |
| Here's the link to the repository: https://github.com/Pulimet/ADBugger | |
| App Description: | |
| ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups. |
This guide has moved to a GitHub repository to enable collaboration and community input via pull-requests.
https://github.com/alexellis/k8s-on-raspbian
Alex
| import websocket | |
| import thread | |
| import time | |
| import sys | |
| port = sys.argv[1] | |
| def on_message(ws, message): |
| # Pass the env-vars to MYCOMMAND | |
| eval $(egrep -v '^#' .env | xargs) MYCOMMAND | |
| # … or ... | |
| # Export the vars in .env into your shell: | |
| export $(egrep -v '^#' .env | xargs) |
| Logfile RoATING file operations using UNIX logrotate utility. | |
| ============================================= | |
| + Rotate the log file when file size reaches a specific size | |
| + Continue to write the log information to the newly created file after rotating the old log file | |
| + Compress the rotated log files | |
| + Specify compression option for the rotated log files | |
| + Rotate the old log files with the date in the filename | |
| + Execute custom shell scripts immediately after log rotation | |
| + Remove older rotated log files |
| IFTTT_CHANNEL_KEY = "REPLACE_ME" | |
| require "bundler/inline" | |
| gemfile do | |
| source "https://rubygems.org" | |
| gem "rails", "~> 5.0" | |
| end | |
| require "action_controller/railtie" |
Step 1: Generate first ssh key Type the following command to generate your first public and private key on a local workstation. Next provide the required input or accept the defaults. Please do not change the filename and directory location.
workstation 1 $ ssh-keygen -t rsa
Finally, copy your public key to your remote server using scp