Skip to content

Instantly share code, notes, and snippets.

View dreuse's full-sized avatar

dreuse dreuse

  • Saturn
View GitHub Profile
@dreuse
dreuse / readme.md
Created November 1, 2019 11:16 — forked from lgg/readme.md
Keepass file format explained

Keepass file format explained

I’m currently working (I’m just at the beginning, and I’m quite slow) on a personal project that will use Keepass files (kdb and kdbx).
I tried to find some documentation about .kdb and .kdbx format, but I didn’t find anything, even in the Keepass official website. I you want to know how these file formats are structured, you must read Keepass’s source code. So I wrote this article that explains how Keepass file format are structured, maybe it will help someone.

@dreuse
dreuse / keybase.md
Created September 4, 2018 13:37
keybase.md

Keybase proof

I hereby claim:

  • I am dreuse on github.
  • I am dreuse (https://keybase.io/dreuse) on keybase.
  • I have a public key ASCI8q_GrjjKcy070P52DNGHHR8nCXlviBGpFG8iMtqeYAo

To claim this, I am signing this object:

@dreuse
dreuse / docker-cleanup-resources.md
Last active April 14, 2024 17:53 — forked from bastman/docker-cleanup-resources.md
docker cleanup guide: containers, images, volumes, networks

Docker - How to cleanup (unused) resources

Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...

delete volumes

// see: https://github.com/chadoe/docker-cleanup-volumes

$ docker volume rm $(docker volume ls -qf dangling=true)

$ docker volume ls -qf dangling=true | xargs -r docker volume rm

@dreuse
dreuse / update-images.sh
Created April 10, 2018 16:42 — forked from ColinLeverger/update-images.sh
Update all Docker images
docker images | grep -v REPOSITORY | awk '{print $1}' | xargs -L1 docker pull