Elektrine lite

← Feed

Chaz6

chaz6@ipv6.social

<p>IPv6 advocate &amp; platform engineer for AS51809.</p>

Posts

  • Post #2973498

    It is disappointing that hardly anyone posts on usenet any more. Forums come and go, but usenet will be around forever.

  • Post #2973497

    Run Proxmox VE inside a container https://github.com/dockur/proxmox

  • Post #2973496

    If you have any Juniper MX304 routers, you should check the hard disk for writes as some people are seeing up to 30TB written in under 3 years. show vmhost hard-disk-test status disk /dev/sda | grep LBA

  • Post #2804314

    Operational Review of Public ENUM Under e164.arpa https://labs.ripe.net/author/hisham_ibrahim/operational-review-of-public-enum-under-e164arpa/

  • Post #2804313

    I ran over my phone (Motorola moto g84). Amazingly the screen did not crack, but it developed a black spot inside the screen, near the fingerprint reader. I ordered a replacement screen from iFixit and had it swapped in a local repair shop. The new screen works fine, but now NFC is not working. Is it likely to be as simple as the antenna was not reconnected? I have tried the usual things like checking that NFC is enabled and rebooting the phone.

  • Post #2804312

    TIL if you use trr mode 3 in firefox, it will not resolve hosts in /etc/hosts if they have upper case letters. That took me a long time to figure out.

  • Post #2804311

    Amazon has released a self-hosting version of DynamiDB called ExtendDB https://aws.amazon.com/blogs/database/introducing-extenddb-an-open-source-dynamodb-compatible-adapter-with-pluggable-storage-backends/

  • Post #2215672

    I am very disappointed that my Kingston 2TB SSD (SNV2S2000G) has hit its available spare threshold (10%) with only 21.3TB of total writes.

  • Post #2215670

    I think I&amp;#39;m going to limit my incoming emails to 1KiB of plain text. Sick of being spammed with massive html messages.

  • Post #2215669

    Today I learned how to make flame graphs of pythin scripts, for example https://flamegraph.com/share/0ee1205f-3a4e-11f1-8967-e63bd9af6bc1

  • Post #2215668

    TIL pypy will try to resolve type annotations at runtime, so if you use `if TYPE_CHECKING` you will also need `from __future__ import annotations`

  • Post #2215667

    #protip ALWAYS enable encryption on SSD&amp;#39;s. When it fails and goes into read-only mode, you can RMA it without worrying that someone could read the data on it (at least in your lifetime, assuming you use a suitable encryption algorithm).

  • Post #2215666

    I have been experimenting with python freethreading (no-GIL) and I got a nice speed up when validating JSON documents using jsonschema-rs:- Threads: 1 Time: 1.298 RPS: 770.259 Threads: 2 Time: 0.673 RPS: 1485.493 Threads: 4 Time: 0.483 RPS: 2068.331 Threads: 8 Time: 0.384 RPS: 2605.559

  • Post #2215665

    I tried installing CachyOS but the installer failed. https://paste.cachyos.org/p/1d7f315.log

  • Post #2215664

    It sure would be nice if GitHub provided rss feeds for its container repository, e.g. https://github.com/linuxserver/docker-unifi-network-application/pkgs/container/unifi-network-application

  • Post #2215663

    The big problem with using LLM&amp;#39;s for coding, is that while there is plenty of code out there, there is far less appraisal data - i.e. how well does the code fit the use case?

  • Post #2215662

    I just upgraded my laptop from Fedora 43 to 44 (with secure boot and full disk encryption, KDE Plasma desktop). No problems.

  • Post #2215661

    Is it just me or are the opencontainer specs really hard to read? They do not make it obvious when a nested element ends and the next element begins. You have to rely on the example, but the example is not exhaustive. https://specs.opencontainers.org/image-spec/config/

  • Post #2215660

    Is there any way to configure LACP when installing Debian with the graphical installer? I have not be able to figure it out or find any documentation or even any forum posts about it.

  • Post #2215659

    The docker/oci community really needs a firehose feed of newly published image tags (e.g. `ghcr.io/linuxserver/sealskin:0.1.37-ls36`) possibly separating index/manifest, and the option to filter by os/arch, e.g. linux/amd64v3

  • Post #2215658

    Another niggle I have with container images is that there&amp;#39;s no indication of the time it was built. Some projects will re-use the same tag with a major version only, e.g. docker.io/library/fedora:44

  • Post #2215657

    pip-tools could be getting a new pip-lock command https://github.com/jazzband/pip-tools/issues/2124#issuecomment-4401435381

  • Post #2215656

    AIUI pip (python) does not support microarchitecture levels (e.g. x86-64-v3) so we are all stuck on the most generic binary packages.