Skip to content

Instantly share code, notes, and snippets.

@Thomashrb
Thomashrb / 00-gentoo-btrfs-disk
Last active September 23, 2020 08:07 — forked from renich/00-gentoo-installation-partitioning.bash
Install Gentoo Desktop into BtrFS subvolumes
#!/usr/bin/env bash
## PARTITION DISKS
##################
# zap-all and clear partition table
sgdisk -Z /dev/sda && sgdisk -o /dev/sda
# create bios_grub partition
sgdisk -n 1::+8M -t 1:ef02 /dev/sda
# create boot partition
sgdisk -n 2::+512M -t 2:8300 /dev/sda
@Thomashrb
Thomashrb / microcosm-onix-bisac-codes.csv
Created June 15, 2020 09:04 — forked from natebeaty/microcosm-onix-bisac-codes.csv
ONIX BISAC codes from microcosm publishing database, with some manually entered codes — use at your own risk!
ANT000000 Antiques & Collectibles / General
ANT001000 Antiques & Collectibles / Americana
ANT002000 Antiques & Collectibles / Art
ANT003000 Antiques & Collectibles / Autographs
ANT005000 Antiques & Collectibles / Books
ANT006000 Antiques & Collectibles / Bottles
ANT007000 Antiques & Collectibles / Buttons & Pins
ANT008000 Antiques & Collectibles / Care & Restoration
ANT009000 Antiques & Collectibles / Transportation
ANT010000 Antiques & Collectibles / Clocks & Watches
@Thomashrb
Thomashrb / .spacemacs
Created June 18, 2018 10:50 — forked from adetokunbo/.spacemacs
.spacemacs enabling dante mode/nix/cabal in spacemacs main branch
;;; ...
;;; ...
;; List of additional packages that will be installed without being
;; wrapped in a layer. If you need some configuration for these
;; packages, then consider creating a layer. You can also put the
;; configuration in `dotspacemacs/user-config'.
;; Cabal/Nix haskell setup
dotspacemacs-additional-packages '(dante nix-sandbox)