Putin Black Sea retreat demolished as Russian leader fears visiting—report
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearRU
    runiq
    2w ago 100%

    Yeah, I saw that report, it was absolutely ludicrous. But that just makes me wonder even more. Why destroy a thing when you've spent millions of (buckets of) rubles and years to build it in the first place? Just because Ukraine could destroy it someday? Why not just... not visit anymore? I really don't get it.

    7
  • Montagslaberfaden.
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearRU
    runiq
    2w ago 100%

    Ich hab auch nochmal bei meiner Versicherung angefragt. Mal sehen, was die sagen.

    Edit -- O-Ton Versicherung:

    [G]rundsätzlich kann der Arzt nur einen neuen Impfpass ausstellen, wenn man seinen Impfpass verloren hat oder er voll ist.

    Eine Übertragung der Impfungen in einen neuen Impfpass ist grundsätzlich nicht vorgesehen. Sonst ist man leider von der Kulanz des Arztes abhängig.

    2
  • Montagslaberfaden.
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearRU
    runiq
    2w ago 100%

    War heute bei der Grippeschutzimpfung und hab gefragt, wo ich nen neuen Impfausweis beantragen kann, weil meiner seit der Corona-Zeit komplett zerleddert ist. Mir wurde gesagt, das ist schwierig, da ich dann die erneuten Unterschriften aller impfenden Ärzte einholen müsste, von denen nicht wenige schon länger in Rente sind. Oder tot.

    Passt auf euren Impfausweis auf, Kinners! Schlagt ihn in Folie ein! Oder Leder. Oder Menschenhaut, was weiß ich.

    4
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearMA
    Jump
    *Permanently Deleted*
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearRU
    runiq
    2w ago 100%

    Ich war da bis neulich noch drin und hab das Gefühl gehabt, dass das von 0 auf 100 in 5 Sekunden losging mit der Propaganda. Ich glaub, ich pass einfach zu wenig auf für sowas...

    4
  • The purpose of podman quadlets?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearRU
    runiq
    2w ago 100%

    Awesome, so, essentially, you create a name.pod file like so: [...]and join every container into the pod through the following line in the .container files

    Yep, that's the way!

    and I presume this all gets started via systemctl --user start name.service and systemd/podman figures out somehow which containers will have to be created and joined into the pod, or do they all have to be started individually?

    Systemd figures it out iff you have specified your service dependencies correctly, with things like After=, Upholds=, BindsTo=, etc. Have a look at systemd.unit manpage for details. For my paperless service, it goes something like this:

    1. The entrypoint is paperless.container, which I start with systemctl --user start paperless, which depends on:
      • paperless.pod
      • Three other services, which also depend on:
        • paperless.pod
    2. Systemd figures out that the paperless pod should be started first, and does that
    3. Systemd startes the three dependent containers
    4. Finally, systemd starts the paperless container itself

    The point of quadlet was to lean as heavily as possible on systemd for the service and dependency bits and use podman only for translating the container bits into something systemd can handle. The one bit of dependency handling that quadlet does is to make sure that paperless.pod is started before all containers that have Pod=paperless.pod in their quadlet file.

    Either way, I find the documentation of this feature lacking. When I tested this stuff myself, I’ll look into improving it.

    That would be amazing, of course! :) I find that, if you're familiar with unit files, you're like 85% of the way there already. By the way, the unit files that quadlet generates are somewhere in $XDG_RUNTUME_DIR for you to inspect. I'm afraid I'm not at a computer right now andI don't know the exact path off the top of my head.

    2
  • github.com

    In which BurntSushi does date/time handling. [Reddit discussion](https://www.reddit.com/r/rust/comments/1e929gb/jiff_is_a_new_datetime_library_for_rust_that/), [HN discussion](https://news.ycombinator.com/item?id=41031037). > Before someone asks: > > - [Comparison with other Rust datetime crates](https://docs.rs/jiff/latest/jiff/_documentation/comparison/index.html) > - [Why build another datetime library?](https://docs.rs/jiff/latest/jiff/_documentation/design/index.html#why-build-another-datetime-library) > - [Why not contribute to an existing library instead of building a new one?](https://docs.rs/jiff/latest/jiff/_documentation/design/index.html#why-not-contribute-to-an-existing-library-instead-of-building-a-new-one)

    45
    2
    github.com

    > - Added type `diesel_async::pooled_connection::mobc::PooledConnection` > - MySQL/MariaDB now use `CLIENT_FOUND_ROWS` capability to allow consistent behaviour with PostgreSQL regarding return value of `UPDATe` commands. > - The minimal supported rust version is now 1.78.0 > - Add a `SyncConnectionWrapper` type that turns a sync connection into an async one. This enables SQLite support for diesel-async > - Add support for `diesel::connection::Instrumentation` to support logging and other instrumentation for any of the provided connection impls. > - Bump minimal supported `mysql_async` version to 0.34 > > A special thanks goes to [@momobel](https://github.com/momobel) and [Wattsense](https://www.wattsense.com/) for contributing the `SyncConnectionWrapper` implementation. > > To support future development efforts, please consider [sponsoring me on GitHub](https://github.com/sponsors/weiznich/). > > Full Changelog: [`v0.4.0...v0.5.0`](https://github.com/weiznich/diesel_async/compare/v0.4.0...v0.5.0)

    11
    2
    github.com

    > - Added type `diesel_async::pooled_connection::mobc::PooledConnection` > - MySQL/MariaDB now use `CLIENT_FOUND_ROWS` capability to allow consistent behaviour with PostgreSQL regarding return value of `UPDATe` commands. > - The minimal supported rust version is now 1.78.0 > - Add a `SyncConnectionWrapper` type that turns a sync connection into an async one. This enables SQLite support for diesel-async > - Add support for `diesel::connection::Instrumentation` to support logging and other instrumentation for any of the provided connection impls. > - Bump minimal supported `mysql_async` version to 0.34 > > A special thanks goes to [@momobel](https://github.com/momobel) and [Wattsense](https://www.wattsense.com/) for contributing the `SyncConnectionWrapper` implementation. > > To support future development efforts, please consider [sponsoring me on GitHub](https://github.com/sponsors/weiznich/). > > Full Changelog: [`v0.4.0...v0.5.0`](https://github.com/weiznich/diesel_async/compare/v0.4.0...v0.5.0)

    19
    0