Skip to content

Instantly share code, notes, and snippets.

View aquaerius's full-sized avatar

Gustavo Varela aquaerius

  • Mac 195 Engineering Corporation
  • Miami - Fort Lauderdale Area
View GitHub Profile
@emma-k-alexandra
emma-k-alexandra / wmata-rail-stations.md
Created March 31, 2024 12:01
All WMATA MetroRail stations and their station codes as a Markdown table as of March 31st, 2024
Code Name
A01 Metro Center
A02 Farragut North
A03 Dupont Circle
A04 Woodley Park-Zoo/Adams Morgan
A05 Cleveland Park
A06 Van Ness-UDC
A07 Tenleytown-AU
A08 Friendship Heights
@justintv
justintv / .bashrc
Created August 17, 2009 00:53
Display git branch in bash prompt
# If you work with git, you've probably had that nagging sensation of not knowing what branch you are on. Worry no longer!
export PS1="\\w:\$(git branch 2>/dev/null | grep '^*' | colrm 1 2)\$ "
# This will change your prompt to display not only your working directory but also your current git branch, if you have one. Pretty nifty!
# ~/code/web:beta_directory$ git checkout master
# Switched to branch "master"
# ~/code/web:master$ git checkout beta_directory
# Switched to branch "beta_directory"