Jelle van der Waa

Results 682 comments of Jelle van der Waa

Tested by creating a new rsync ipv6 address in the django admin interface causes: ``` if '/' not in address: TypeError: argument of type 'IPv6Interface' is not iterable ``` In...

wip branch https://github.com/jelly/archweb/commit/bda9a1d197ba70fa9d638a3ca195ece41dfe1516

For testing, in firefox in about:config add a new property "ui.systemUsesDarkTheme" and set it to an integer type and as value 1.

@grazzolini please review/expand if needed.

This will most likely get superseeded by OIDC support, as we can simply assign folks to the Tester role.

One example 073a04bb6bc6555ebdafb8d18325a4a84d25b8c0: ``` >>> releases = Release.objects.filter(available=True).values_list('version', flat=True).order_by('-release_date') >>> print(releases.query) SELECT "releng_release"."version" FROM "releng_release" WHERE "releng_release"."available" = True ORDER BY "releng_release"."release_date" DESC >>> release_qs = Release.objects.filter(available=True).order_by('-release_date') >>> print(release_qs.query) SELECT...

Thanks for the PR, playing with it right now. As a right handed I have a hard time selecting the right menu. I think it should be possible to make...

> @jelly are there any plans to merge this or work on a mobile friendly layout? The current site really isn't a pleasure on mobile right now. I'll have to...

``` [jelle@t14s][~]%sudo blkid -p /dev/nvme0n1p2 /dev/nvme0n1p2: PART_ENTRY_SCHEME="gpt" PART_ENTRY_NAME="cryptswap" PART_ENTRY_UUID="456d4f0a-f07b-4637-b12c-ef51226553f0" PART_ENTRY_TYPE="0657fd6d-a4ab-43c4-84e5-0933c84b4f4f" PART_ENTRY_NUMBER="2" PART_ENTRY_OFFSET="1050624" PART_ENTRY_SIZE="16777216" PART_ENTRY_DISK="259:0" ``` ``` [jelle@t14s][~]%udevadm info /dev/nvme0n1p2 P: /devices/pci0000:00/0000:00:1d.4/0000:2e:00.0/nvme/nvme0/nvme0n1/nvme0n1p2 N: nvme0n1p2 L: 0 S: disk/by-path/pci-0000:2e:00.0-nvme-1-part2 S: disk/by-partuuid/456d4f0a-f07b-4637-b12c-ef51226553f0 S:...

Ah! ``` cryptsetup open --type plain --key-file /dev/urandom /dev/disk/by-partlabel/cryptswap swap mkswap -L swap /dev/mapper/swap swapon -L swap ``` In `/etc/crypttab` ``` cryptswap /dev/disk/by-partlabel/cryptswap /dev/urandom swap,offset=2048,cipher=aes-xts-plain64,size=256 ```