This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/arch.base.zst.qcow2 | |
/arch.qcow2 | |
/arch.sx.zst.qcow2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(import test matchable) | |
;; how to turn | |
`(* 2 (+ x 3 (+ 4 10)) y 10) | |
;; into `(* 20 (+ 17 x ) y) ? | |
`(+ (+ 1 2 x) (+ 3 4 x) 5) => | |
`(+ 15 x x) | |
(begin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adw |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; I find it hard to read the Guix Manual and figure out how to make a custom shepherd service | |
;; that just keeps a process running. I came up with this and though it was a keeper: | |
(operating-system | |
… | |
(service (service-type | |
(name 'tmuxkirc') | |
(extensions | |
(list (service-extension | |
shepherd-root-service-type |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; I named this "hetzner", but the only VPS-specific feature is | |
;;; probably the virtio_scsi initrd module addition. | |
;;; | |
;;; | |
;;; OBS: change id_ed25519.pub below to id_rsa.pub unless you've used my favorite key algorithm: | |
;;; | |
;;; ssh-keygen -t ed25519 | |
;;; | |
(use-modules (gnu) | |
(gnu packages ssh)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(use-modules (gnu) | |
(gnu packages shells) | |
(gnu packages ssh) | |
(gnu services pm) | |
((gnu services cups) #:select (cups-service-type cups-configuration)) | |
(gnu packages cups) | |
(gnu services sound) | |
(gnu packages wm) | |
(gnu services virtualization) | |
((gnu packages gnustep) #:select (windowmaker)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define-public i3status-rust-no-kdeconnect | |
(package | |
(inherit i3status-rust) | |
(name "i3status-rust-no-kdeconnect") | |
(arguments | |
(substitute-keyword-arguments (package-arguments i3status-rust) | |
((#:phases old-phases) | |
#~(modify-phases #$old-phases | |
(replace 'wrap-i3status | |
(lambda* (#:key outputs inputs #:allow-other-keys) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/gamepad-train-main | |
/gamepad-train | |
/gamepad-train.build.sh | |
/gamepad-train.install.sh | |
/gamepad-train.link |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; trying to implement avro binary encoding | |
;;; as described here: | |
;;; https://avro.apache.org/docs/current/spec.html#map_encoding | |
;;; | |
(import chicken.string chicken.bitwise chicken.io chicken.port | |
(only chicken.memory.representation number-of-bytes) | |
(only chicken.random random-bytes) | |
zstd medea matchable test) | |
(define (debug . args) |
NewerOlder