bonus tip: for more darkness > https://darkreader.org/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This playbook has been removed as it is now very outdated. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Local Ruby with rbenv and ruby-build | |
## Update apt | |
sudo apt-get -y update | |
## Install git and curl | |
echo " ### INSTALLING GIT AND CURL ###" | |
sudo apt-get install -y git curl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
import logging | |
import sys | |
log_format = "%(asctime)s %(levelname)s [%(name)s] %(message)s" | |
formatter = logging.Formatter(log_format) | |
handler = logging.StreamHandler() |
Source: https://duckduckgo.com/?q=fast+public+dns+servers&ia=answer&iax=answer
198.101.242.72
23.253.163.53
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Stephen | |
9:40 AM | |
Thanks for contacting Google Support. My name is Stephen. | |
Stephen | |
9:40 AM | |
Hi Nels! | |
Stephen | |
9:40 AM | |
How may we help you today? | |
Nels Nelson |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Put this function to your .bashrc file. | |
# Usage: mv oldfilename | |
# If you call mv without the second parameter it will prompt you to edit the filename on command line. | |
# Original mv is called when it's called with more than one argument. | |
# It's useful when you want to change just a few letters in a long name. | |
# | |
# Also see: | |
# - imv from renameutils | |
# - Ctrl-W Ctrl-Y Ctrl-Y (cut last word, paste, paste) |