I hereby claim:
- I am punkdata on github.
- I am datapunk (https://keybase.io/datapunk) on keybase.
- I have a public key ASC9TfDSE0Emvxmyr9kYX4PWf1JKq7IFN41Ay1UjaQfLNAo
To claim this, I am signing this object:
| #!/usr/bash | |
| wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz | |
| sudo tar -xzf postman.tar.gz -C /opt | |
| sudo ln -s /opt/Postman/Postman /usr/bin/postman | |
| #Create a Desktop Entry | |
| cat > ~/.local/share/applications/postman.desktop <<EOL | |
| [Desktop Entry] | |
| Encoding=UTF-8 | |
| Name=Postman |
| #!/usr/bin/python | |
| # run the script: python git-find-big-files.py <the branch> <file size> | |
| # Example use: python git-find-big-files.py fix-remove-files 1000000 (this value equals 1 Megabyte) | |
| # the Fix-remove-files specifies the branch that you are cleaning | |
| import os, sys | |
| def getOutput(cmd): | |
| return os.popen(cmd).read() |
| # Belongs in ~/.config/terminator/config | |
| [global_config] | |
| title_font = Courier 10 Pitch 10 | |
| [keybindings] | |
| [profiles] | |
| [[default]] | |
| background_darkness = 0.9 | |
| background_type = transparent | |
| cursor_color = "#aaaaaa" | |
| font = Ubuntu Mono 12 |
| Create and join the docker group. | |
| $ sudo addgroup --system docker | |
| $ sudo adduser $USER docker | |
| $ newgrp docker | |
| You will also need to disable and re-enable the docker snap if you added the group while it was running. | |
| $ sudo snap disable docker | |
| $ sudo snap enable docker |
| # Use this command to extract the data from a file after the "=" charcater | |
| grep smoke_test_ip test.txt | cut -d '=' -f 2- |
I hereby claim:
To claim this, I am signing this object:
| #cloud-config | |
| hostname: <your hostname> | |
| ssh_authorized_keys: | |
| - ssh-rsa < your Public SSH key AAAAB3NzaC1... > | |
| coreos: | |
| etcd: | |
| addr: $private_ipv4:4001 |
| # When getting access denied during upload function in arduino use this cmd to give current user permission on Ubuntu OS | |
| sudo usermod -a -G dialout $USER |
| # Download and Install the Latest Updates for the OS | |
| apt-get update && apt-get upgrade -y | |
| # Set the Server Timezone to CST | |
| echo "America/Chicago" > /etc/timezone | |
| dpkg-reconfigure -f noninteractive tzdata | |
| # Enable Ubuntu Firewall and allow SSH & MySQL Ports | |
| ufw enable | |
| ufw allow 22 |
| # Search Type Commands | |
| grep -Ril "text-to-find-here" / | |
| # rsync command to actually sync files | |
| rsync -hvrPt angel/home_angel/ /home/angel/ | |
| # rsync copy over all files with all attributes | |
| rsync -avP source-dir target-dir |