# set http proxy
export http_proxy=http://PROXYHOST:PROXYPORT
# set http proxy with user and password
export http_proxy=http://USERNAME:PASSWORD@PROXYHOST:PROXYPORT
# set http proxy with user and password (with special characters)
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 | |
| sudo apt-get update && sudo apt-get dist-upgrade -y | |
| sudo apt-get install git | |
| git clone https://github.com/jakedahn/dotfiles | |
| cd dotfiles | |
| ./scripts/atom-kali.sh |
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
| # Find all tables and when they were last vacuumed/analyzed, either manually or automatically | |
| SELECT relname, | |
| last_vacuum, | |
| last_autovacuum, | |
| last_analyze, | |
| last_autoanalyze | |
| FROM pg_stat_all_tables | |
| WHERE schemaname = 'public' | |
| ORDER BY last_vacuum DESC; |
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
| brew install --cask ableton-live-suite adobe-creative-cloud handbrake little-snitch notion postico sublime-text transmission transmit vlc spotify grammarly discord postman docker iterm2 cursor |
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
| Here are important documents to review: | |
| 1. Source Systems Guide: | |
| <source_systems_guide> | |
| {source_systems_guide} | |
| </source_systems_guide> | |
| 2. Database Schema: | |
| <database_schema> | |
| {database_schema} | |
| </database_schema> |
OlderNewer