Skip to content

Instantly share code, notes, and snippets.

@fourier
fourier / lw-config.lisp
Created October 25, 2018 16:27
Simple LispWorks Personal configuration
#-:LISPWORKS-PERSONAL-EDITION (load-all-patches)
#+(and LISPWORKS-PERSONAL-EDITION MSWINDOWS) (load "C:/apps/asdf/asdf.lisp")
;;; The following lines added by ql:add-to-init-file:
#-quicklisp
(let ((quicklisp-init #+:MSWINDOWS "C:/apps/quicklisp/setup.lisp"
#-:MSWINDOWS (merge-pathnames ".quicklisp/setup.lisp"
(user-homedir-pathname))))
(format *standard-output* "ql init: ~s" quicklisp-init)
(when (probe-file quicklisp-init)
@f-f
f-f / spacemacs-cheshe.md
Last active July 31, 2019 16:09 — forked from robphoenix/spacemacs-cheshe.md
Spacemacs Cheat Sheet

Useful Spacemacs commands

  • SPC q q - quit
  • SPC w / - split window vertically
  • SPC w - - split window horizontally
  • SPC 1 - switch to window 1
  • SPC 2 - switch to window 2
  • SPC w c - delete current window
  • SPC TAB - switch to previous buffer
  • SPC b b - switch buffers
@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