Skip to content

Instantly share code, notes, and snippets.

View brendan-munro's full-sized avatar

Brendan brendan-munro

View GitHub Profile
@joekir
joekir / gdb_tips.md
Last active January 17, 2019 21:11
GDB Tips

gdb commands to remember

command what it does
info sharedlibrary list shared libraries
tui enable enable gui debugger
b <linenumber> add breakpoint at line number
b <function name> add breakpoint for function name
info b show breakpoints
d delete a breakpoint by number
@pandafulmanda
pandafulmanda / Python3 Virtualenv Setup.md
Last active March 12, 2024 15:59 — forked from akszydelko/Python3 Virtualenv Setup.md
Setting up and using Python3 Virtualenv on Mac

Python3 Virtualenv Setup

Requirements
  • Python 3
  • Pip 3
$ brew install python3
@matthewmccullough
matthewmccullough / git-deletealltags.bsh
Created April 1, 2011 20:29
Script to delete all tags both locally and remotely
for t in `git tag`
do
git push origin :$t
git tag -d $t
done