-
https://encrypted.google.com (Google.com encrypted)
-
https://www.bing.com (Best if location and language is set to US English)
-
https://duckduckgo.com/ (Meta Search focusing on Privacy)
This file contains 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
# Classic BSD Style | |
#--------------------------------------------------------------- | |
# Shutdown hardcore style | |
sudo shutdown -h now | |
# Shutdown at once hardcore style | |
sudo shutdown -r now | |
# Shutdown hardcore style in 30 minutes |
This file contains 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
/* == Montserrat Font Family Styles == */ | |
/* @group Montserrat | |
-------------------------------------------------------------- */ | |
/* = Weights Montserrat | |
-------------------------------------------------------------- */ | |
.thin { |
This file contains 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
# Upgrade / Update outdated casks installed. | |
# -------------------------------------------------------------------------------- | |
# Looks for outdated casks and installs the the latest version. | |
# User data (like application preferences) is intact. | |
# Updated one liner (thanks Henrik242) | |
# -------------------------------------------------------------------------------- | |
brew upgrade $(brew outdated --cask --greedy --quiet) | |
This file contains 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
# For use in your .bash_profile or .functions file | |
# ------------------------------------------------- | |
# Search using single words | |
# Example: gchrome terminal | |
# Search using multiple words | |
# Example: gchrome "wopr terminal" | |
# Launch browser of choice | |
# Example: gchrome | |
This file contains 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
# Info: This only works on browsers installed with brew cask. | |
# For use in your .bash_profile .functions, .alias or whatever you want. | |
# Wrap it up in a function instead. Looks nicer. | |
# Brew don't recongnize in-app updates. So, either use in-app (faster updates) or cask reinstall. | |
# Remove your browsers manually (your preferences still there), and install them again with: | |
# brew cask install google-chrome google-chrome-canary opera opera-beta opera-developer opera-neon vivaldi webkit-nightly firefox firefoxdeveloperedition | |
alias upgradebrowsers="echo '$(tput bold)==> Upgrading Browsers with Force... $(tput sgr0)'; brew cask reinstall google-chrome caskroom/versions/google-chrome-canary opera opera-beta opera-developer opera-neon vivaldi webkit-nightly firefox firefoxdeveloperedition; brew cask cleanup; echo '$(tput bold)==> Flushing cfprefsd twice to be sure... $(tput sgr0)'; killall cfprefsd; killall cfprefsd; echo '$(tput bold)==> All Browsers has been upgraded... $(tput sgr0)'" | |
alias upgradeopera="echo |
This file contains 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
## Prints a Horizontal Row of a Unicode Character | |
# Screenshot: http://imgur.com/a/Z2nKx | |
# Use for: Pattern or Separator | |
# Requirements: tput, Unicode font(s), | |
# True Color Terminal, LOLCAT (optional) | |
# Tested on OS X/macOS (10.11.6) and | |
# Ubuntu Linux (March 2017) | |