Skip to content

Instantly share code, notes, and snippets.

@bartlomiejn
bartlomiejn / .gdbinit
Created October 26, 2024 08:04 — forked from savanovich/.gdbinit
GDB cheatsheet
define pyp
set \$\_unused\_void = PyObject\_Print($arg0, stderr, 1)
printf "\n"
end
@bartlomiejn
bartlomiejn / podforceupdate.sh
Created April 10, 2017 14:07 — forked from mbinna/podforceupdate.sh
Clear CocoaPods cache, re-download and re-install all pods
#!/usr/bin/env bash
rm -rf "${HOME}/Library/Caches/CocoaPods"
rm -rf "`pwd`/Pods/"
pod update