brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
| gsettings set org.gnome.mutter experimental-features "['scale-monitor-framebuffer']" | |
| #REBOOT |
| #!/usr/bin/env bash | |
| IMAGE=$1 | |
| PKG=$2 | |
| sudo hdiutil attach $IMAGE | |
| # image will be mounted as /Volumes/$IMAGE | |
| sudo installer -package /Volumes/$IMAGE/$PKG.pkg -target / | |
| sudo hdiutil detach /Volumes/$IMAGE |
| #key thing is passing user env to suod via 'sudo env "PATH=$PATH" command' | |
| docker build --rm -f "/home/cicorias/dev/tiem-app/EdgeSolution/modules/telemetry/Dockerfile.amd64" -t localhost:5000/telemetry:1.0.1-amd64 "/home/cicorias/dev/tiem-app/EdgeSolution/modules/telemetry" && sudo env "PATH=$PATH" iotedgehubdev start -d "/home/cicorias/dev/tiem-app/EdgeSolution/config/deployment.debug.amd64.json" -v |
| git log --pretty=format:'%an' | sort | uniq -c | sort -rn |
| using System; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| namespace Mike.Spikes.ConsoleShutdown | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { |
| git config --global core.fileMode false |
| sudo env "PATH=$PATH" <the commands> |
| docker build --rm -f "c:\g\cse\mqtt\app\mosquitto_authn\modules\sender\Dockerfile.amd64" -t localhost:5000/sender:0.0.1-amd64 "c:\g\cse\mqtt\app\mosquitto_authn\modules\sender" ; if ($?) { iotedgehubdev start -d "c:\g\cse\mqtt\app\mosquitto_authn\config\deployment.amd64.json" -v } |
| # Register Microsoft key and software repository feed | |
| apt-get update | |
| apt-get install curl gpg vim | |
| curl https://packages.microsoft.com/config/ubuntu/$(awk -F= '$1=="DISTRIB_RELEASE" { print $2 ;}' /etc/lsb-release)/prod.list > ./microsoft-prod.list | |
| cp ./microsoft-prod.list /etc/apt/sources.list.d/ | |
| curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg | |
| cp ./microsoft.gpg /etc/apt/trusted.gpg.d/ |