Skip to content

Instantly share code, notes, and snippets.

View istathar's full-sized avatar

Andrew Cowie istathar

View GitHub Profile
@olliebun
olliebun / gist:8295224
Last active March 22, 2020 12:27
LCA2014 Astronomy Miniconf lightning talk notes

boinc - Berkeley Open Infrastructure for Network Computing

Even armV6 / armV7 systems with a single core can contribute significantly.

Run boinc persistently on a Pi / whatever without affecting latency of other service.

boinc is in both Raspbian and Arch Linux.

Install boinc:

@mietek
mietek / 1.txt
Created December 30, 2014 23:27
Installing renew-domains with Halcyon
$ halcyon install https://github.com/mietek/renew-domains
-----> Examining cache contents
halcyon-cabal-1.20.0.3-hackage-2014-12-30.tar.gz
halcyon-cabal-1.20.0.6-hackage-2014-12-30.tar.gz
halcyon-ghc-7.8.3.tar.gz
halcyon-ghc-7.8.4.tar.gz
-----> Cloning https://github.com/mietek/renew-domains... done, 8c46f24
-----> Installing renew-domains-0.1.0.0
-----> Installing GHC and Cabal layers
@bastman
bastman / docker-cleanup-resources.md
Created March 31, 2016 05:55
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