• 0 Posts
  • 33 Comments
Joined 1 year ago
cake
Cake day: November 7th, 2023

help-circle

  • I don’t know what your previous setup was, but given that running resolved fixes your DNS issues, run:

    ln -sf ../run/systemd/resolve/stub-resolv.conf /etc/resolv.conf

    This will point programs that use /etc/resolved.conf during DNS resolution to the local DNS server provided by systemd-resolved.

    Then, enable resolved so that it is started when you reboot:

    systemctl enable systemd-resolved.service

    Finally, start the service so that it is available immediately:

    systemctl start systemd-resolved.service

    You will want it run those with the required permissions, e. g. via sudo.








  • Zierfugen? Anyway, nach dem Einklicken sollte jede Reihe in der Regel ein paar Schlaege mit einem dead blow Hammer ueber einen Block erhalten um sich richtig zu fuegen. Ich verwende einen POM - Block, aber es gibt auch billige aus Holz.

    Du kannst meist nachtraeglich korrigieren, musst das aber vielleicht fuer alle folgenden Reihen machen. Ich denke du hast zwei Optionen: vielleicht kommst du mit einem pull bar in die Fugen und kannst das Laminat so zurecht ziehen - careful, der Rand koennte beschaedigt werden.

    Falls du glaubst, nur wenig korrigieren zu muessen und du nicht die Fuge nutzen kannst / willst, hilft oft ein gutes double sided foam/acrylic tape mit dem du den Block (hier funktioniert kein POM, klebt nicht, nimm Holz) von oben auf dem Vinyl klebst, um dann mit dem Hammer das Panel zu fuegen. Das Panel muss meistens zu der Wand bewegt werden, bei der du mit dem Verlegen begonnen hast. Normales Klebeband ist nicht stark genug.

    Generelle Frage: du hast an den Raendern zu allen Waenden Abstaende eingehalten?





  • Technically, wouldn’t you need the guy 10 minutes in the direction of the rain cloud to have turned it on when you go on a hike? Makes the battery saving argument kinda moot I guess, you should get the notification anyway, if enough people in your area are providing sufficient data for the short term forecast.

    Now in order to make that happen, people should participate if they’re using the feature, but that’s almost a moral argument I guess.

    Anyway, would still be nice if iOS / Android had more fine grained permission controls.


  • Couldn’t watch, so I got a summary. Maybe it’s helpful for someone else:

    • Bluefin is introducing a new “Stable” tag for their Fedora distribution, in addition to the existing “GTS” (Grand Touring Support) and “Latest” tags.

    • The Stable tag will provide a middle ground between the aggressively updated Latest Fedora and the more conservative GTS version.

    • Stable will use the latest Fedora release, but with a slightly older kernel that has been more thoroughly tested and vetted by the Bluefin team.

    • This is intended to cater to enthusiasts who want the latest Fedora features, but with a bit more stability and reliability.

    • Bluefin will be publishing weekly updates for the Stable images, rather than waiting 2 weeks between updates like the Fedora CoreOS team.

    • The Stable images will also use zstd chunked compression to reduce the amount of bandwidth needed for updates.

    • Bluefin is unsure whether the Stable configuration (latest Fedora, slightly older kernel) or the GTS configuration (older Fedora, latest kernel) will ultimately feel more stable in practice

    • The Stable tag is a response to user feedback requesting access to the latest Fedora releases, rather than having to wait for the GTS version.

    • Nvidia driver updates for the Stable images will also be provided on a regular basis.

    • Bluefin is interested in exploring this middle ground between aggressively updated and conservatively updated Fedora distributions.


  • lspci will read the vendor and device id via PCI and use that to determine what the device is. You might want to make the output a bit more digestable / useful via lspci -s 03:00.0 -k -nn, but I’d assume the ids that match an 2070 will show up.

    Could you please take the card out and provide us with a few pictures from different angles, maybe getting a good look at the actual chips?

    I’d like to rule that out before chasing rabbits here.

    Also, you could always run nvidia-settings, which will show information about an NVIDIA card using a different access method.

    I’d still like to see the pictures of the card though ;)



  • I am aware of what you are saying, however, I do not agree with your conclusions. Just for the sake of providing context for our discussion, I wrote plenty of code in statically typed languages, starting in a professional capacity some 33 years ago when switching from pure TASM to AT&T C++ 2, so there is no need to convince me of the benefits :)

    That being said, I think we’re talking about different use cases here. When I’m talking configuration, I’m talking runtime settings provided by a customer, or service tech in the field - that hardly maps to a compiler error as you mentioned. It’s also better (more flexible / higher abstraction) than simply checking a JSON schema, and I’m personally encountering multiple new, custom JSON documents every week where it has proven to be a real timesaver.

    I also do not believe that all data validation can be boiled down to simple type checking - libraries like pydantic handle complex validation cases with interdependencies between attributes, initialization order, and fields that need to be checked by a finite automaton, regex or even custom code. Sure, you can graft that on after the fact, but what the library does is provide a standardized way of handling these cases with (IMHO) minimal clutter. I know you basically made that point, but the example you gave is oversimplified - at least in what I do, I rarely encounter data that can be properly validated by simple type checking. If business logic and domain knowledge has to be part of the validation, I can save a ton of boilerplate code by writing my validations using pydantic.

    Type annotations are a completely orthogonal case and I’ll be the first to admit that Python’s type situation is not ideal.