Skip to content

Instantly share code, notes, and snippets.

makepkg -sicf
==> Making package: linux-lqx 5.15.14.lqx1-1 (Wed 12 Jan 2022 18:03:24 CET)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Found linux-5.15.tar.xz
-> Found linux-5.15.tar.sign
-> Found 5.15-17.tar.gz
==> Validating source files with sha512sums...
linux-5.15.tar.xz ... Passed
@Althorion
Althorion / emerge --info
Last active September 2, 2020 13:49
firefox-80.0.1
Portage 3.0.5 (python 3.7.9-final-0, default/linux/amd64/17.1/desktop/plasma/systemd, gcc-10.2.0, glibc-2.32-r1, 5.8.0-pf3 x86_64)
=================================================================
System Settings
=================================================================
System uname: Linux-5.8.0-pf3-x86_64-AMD_Ryzen_Threadripper_1950X_16-Core_Processor-with-gentoo-2.7
KiB Mem: 65807372 total, 40243228 free
KiB Swap: 0 total, 0 free
Timestamp of repository gentoo: Wed, 02 Sep 2020 12:35:31 +0000
Head commit of repository gentoo: 477552daf3bf3cc3b1f800f3fe32cb372abbb969
* Package: dev-lang/python-3.9.0_beta3-r1
* Repository: lto-overlay
* Maintainer: python@gentoo.org
* USE: abi_x86_64 amd64 elibc_glibc gdbm ipv6 kernel_linux ncurses readline ssl userland_GNU xml
* FEATURES: network-sandbox preserve-libs sandbox userpriv usersandbox
* /etc/portage/package.cflags/ltoworkarounds.conf -> dev-lang/python: *FLAGS+='-fno-finite-math-only' # instrumentation tests hang/segfault during emerge
* /etc/portage/package.cflags/ltoworkarounds.conf -> dev-lang/python: *FLAGS-="-mtls-dialect=gnu2"
* FEATURES='sfperms binpkg-logs userfetch merge-sync usersandbox protect-owned cgroup strict unknown-features-warn binpkg-dostrip fixlafiles network-sandbox preserve-libs ebuild-locks multilib-strict news binpkg-docompress parallel-install pid-sandbox candy userpriv ipc-sandbox sandbox qa-unresolved-soname-deps unmerge-orphans parallel-fetch xattr unmerge-logs usersync distlocks assume-digests config-protect-if-modified'
* CFLAGS='-O3 -march=native -pipe -fno-finite-math-only -
Portage 2.3.103 (python 3.7.7-final-0, default/linux/amd64/17.1/systemd, gcc-10.1.0, glibc-2.31-r5, 5.7.6 x86_64)
=================================================================
System Settings
=================================================================
System uname: Linux-5.7.6-x86_64-AMD_Ryzen_Threadripper_1950X_16-Core_Processor-with-gentoo-2.7
KiB Mem: 65719872 total, 60393368 free
KiB Swap: 0 total, 0 free
Timestamp of repository gentoo: Sun, 28 Jun 2020 22:00:02 +0000
Head commit of repository gentoo: c8bc4d04c51f6f0cf1376d19dc78eef5eb2987cf
Timestamp of repository 4nykey: Fri, 26 Jun 2020 20:36:19 +0000

Witcher’s Pathfinder

After the War

We will be playing in the world of the Witcher, as created and described by Andrzej Sapkowski, with minor inspirations from the video game series (I haven’t yet watched the Netflix TV show and the Polish one was an abomination, so they won’t influence the plot and the world).

We will start in the year 1270—two years after the second war with Nilfgaard and the end of a book saga, three years before the games (they have shifted

Loading /home/althorion/.emacs.d/core/autoload/buffers.el (source)...
Loading /home/althorion/.emacs.d/core/autoload/cache.el (source)...
Loading /home/althorion/.emacs.d/core/autoload/cli.el (source)...
Loading /home/althorion/.emacs.d/core/autoload/config.el (source)...
Loading /home/althorion/.emacs.d/core/autoload/debug.el (source)...
Loading /home/althorion/.emacs.d/core/autoload/files.el (source)...
Loading /home/althorion/.emacs.d/core/autoload/fonts.el (source)...
Loading /home/althorion/.emacs.d/core/autoload/format.el (source)...
Loading /home/althorion/.emacs.d/core/autoload/help.el (source)...
==>(B Making package: linux-ck 5.4-3 (Thu 28 Nov 2019 13:23:36 CET)(B
==>(B Checking runtime dependencies...(B
==>(B Checking buildtime dependencies...(B
==>(B Retrieving sources...(B
 ->(B Found linux-5.4.tar.xz(B
 ->(B Found linux-5.4.tar.sign(B
 ->(B Found config(B
 ->(B Found enable_additional_cpu_optimizations-20190822.tar.gz(B
 ->(B Found patch-5.4-ck1.xz(B
 ->(B Found 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch(B
;; -*- no-byte-compile: t; -*-
;;; ~/.doom.d/packages.el
;;; Examples:
;; (package! some-package)
;; (package! another-package :recipe (:fetcher github :repo "username/repo"))
;; (package! builtin-package :disable t)
from typing import List
def generate_set(half_size: int) -> List[str]:
oranges: List[str] = [f"B{i + 1}" for i in range(half_size)]
blues: List[str] = [f"O{i + 1}" for i in range(half_size)]
return oranges + blues
def partition(collection):
;; The next line may not be needed
(set-default-font "Source Code Pro for Powerline 13")
;; Fira code
;; This works when using emacs --daemon + emacsclient
(add-hook 'after-make-frame-functions (lambda (frame) (set-fontset-font t '(#Xe100 . #Xe16f) "Fira Code Symbol")))
;; This works when using emacs without server/client
(set-fontset-font t '(#Xe100 . #Xe16f) "Fira Code Symbol")
;; I haven't found one statement that makes both of the above situations work, so I use both for now