Posts

Firefox Setup Notes

by danaukes

about:config

go to about:config

turn off AI ...

Read More
Flipper Zero Notes

by danaukes

...

Read More
Galaxy Tab Cleanup

by danaukes

  1. Install ADB
  2. Find your device

    ./adb devices

...

Read More
Getting Meta-data from images and videos

by danaukes

from here

sudo apt install -y libimage-exiftool-perl

exiftool ...

Read More
Git Basics

by danaukes

A place to hold git specific notes
Read More
Dealing with Dangling Commits

by danaukes

External ...

Read More
Finding Large Files in repos

by danaukes

```bash git rev-list --all --objects | awk '{print $1}' | git cat-file --batch-check | sort -k3n ...

Read More
Finding Submodules

by danaukes

find repos/ -not \( -path repos/external -prune \) -iname .gitmodules -type f

```bash git submodule update --init ...

Read More