Skip to content

Instantly share code, notes, and snippets.

View dcchambers's full-sized avatar
🚀
happy engineers == productive engineers

Dakota Chambers dcchambers

🚀
happy engineers == productive engineers
View GitHub Profile
@dcchambers
dcchambers / .gitconfig
Created July 31, 2020 16:15
Git Config to handle multiple email addresses.
[user]
name = Dakota Chambers
email = REDACTED
[core]
ignorecase = false
[url "ssh://git@github.com/"]
insteadOf = https://github.com/
@dcchambers
dcchambers / setup.sh
Created June 29, 2020 20:28 — forked from bradp/setup.sh
New Mac Setup Script
echo "Creating an SSH key for you..."
ssh-keygen -t rsa
echo "Please add this public key to Github \n"
echo "https://github.com/account/ssh \n"
read -p "Press [Enter] key after this..."
echo "Installing xcode-stuff"
xcode-select --install
@dcchambers
dcchambers / work-mac-config.md
Last active June 26, 2020 01:39
Zendesk Work Mac

My work macbook configuration w/ apps and software I might use in my day-to-day job.

Details

                    'c.           
                 ,xNMM.          ------------------------- 
               .OMMMMo           OS: macOS Mojave 10.14.6 18G95 x86_64 
               OMMM0,            Host: MacBookPro15,2 
     .;loddo:' loolloddol;.      Kernel: 18.7.0 
   cKMMMMMMMMMMNWMMMMMMMMMM0:    Uptime: 13 days, 5 hours, 8 mins 
@dcchambers
dcchambers / cli.md
Last active April 23, 2020 18:37
Commonly used Linux/Unix commands and programs one should be vaguely familiar with. Not an exhaustive list of all tools - just a list of the essentials.

File/Directory Management

  • touch
  • ls
  • ln
  • cp
  • mkdir
  • mv
  • rm
  • rmdir
  • which
@dcchambers
dcchambers / docker-nuke-safely
Last active December 6, 2019 19:58 — forked from n3r0-ch/docker-nuke
Docker Nuke (Safely) 🐳💣- Clean up your Docker environment in a (sort of) safe way!
#!/bin/bash
#Check if user is root
if [ $UID != 0 ]; then
echo "You need to be root to use this script."
exit 1
fi
echo "docker-nuke-safely exists to do one thing; clean up your Docker environment. It's not called docker-carefully-and-nicely-spritz-up. Be careful!"
echo
@dcchambers
dcchambers / 2019-pc-build.md
Created October 22, 2019 17:46
New PC Build (Late 2019)

Putting together a PC Build for late 2019.

  • CPU:
  • GPU: EVGA/ NVIDIA RTX 2070 Super?
  • MOBO:
  • RAM: 32GB DDR4
  • SSD: 2TB Primary
  • Storage:
  • Monitor: 144hz 1440p (27"?)
  • Cooling:
@dcchambers
dcchambers / top-10-games.md
Created October 22, 2019 17:01
Top 10 Games of All Time

My Personal List of the Top 10 Games of All Time

  1. Age of Empires II: The Age of Kings
  2. Roller Coaster Tycoon 2
  3. Tetris DS
  4. Super Mario 64
  5. Super Mario Galaxy
  6. Civilization V
  7. Pokemon Gold/Silver Version
  8. The Sims
  9. Battlefield 1942
@dcchambers
dcchambers / personal-mbp-config.md
Last active October 14, 2019 01:11
A place for me to track my (personal) Macbook Pro Configuration

Personal MBP

Hardware

  • 2015 Macbook Pro
    • 13" Retina Display
    • Force Touch Trackpad
    • Intel Core i5
    • 16GB RAM
    • 256GB NVME SSD
  • MacOS Mojave
@dcchambers
dcchambers / mac-bluetooth-audio-codec.md
Last active August 27, 2019 18:54
Change Bluetooth Audio Coded on Mac

Courtey of Macrumors

The default bluetooth audio codec on mac kind of sucks.

To enable aptX, enter this in your terminal:

  • sudo defaults write bluetoothaudiod "Enable AptX codec" -bool true

To enable AAC, enter this in your terminal:

  • sudo defaults write bluetoothaudiod "Enable AAC codec" -bool true
@dcchambers
dcchambers / useful-tricks.md
Last active August 13, 2019 14:09
Useful shortcuts and tricks (mostly mac specific)

Useful Tricks and Shortcuts (Mostly Mac Specific)

Chrome

Reopen all tabs in a window (useful if you accidentally close it). Command ⌘ + Shift + T.