Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)RE
redxef @feddit.de
Posts 1
Comments 53
Is it safe to automatically pull and update docker containers?
  • I get a summary once a week of all the updates. I then check the release notes and if nothing needs any changes just run the ansible playbook that updates to those releases. I don't want to get up and first thing in the morning read alert emails because an update failed over night, so i sit down for 10 minutes once a week.

  • Wasps
  • Honestly, wasps (the ones common where I live) are pretty chill, sure they always go in your face, but you can just gently wave in their general vicinity and they will avoid you. The only times when they are aggressive is in autumn.

  • Bayern: Gast zahlt 16 Biere einzeln mit EC-Karte
  • Mich würd ja interessieren, warum der Wirt nicht einfach den Gast darauf aufmerksam macht und spätestens nachm 2. Bier raus haut oder einfach nicht mehr bedient. Anstatt fröhlich weiter zu machen und dann die Polizei zu rufen.

    Vielleicht hat der Wirt ja auch schon ein paar Bier intus gehabt und konnte nicht mehr so weit denken.

    Edit:

    https://www.br.de/nachrichten/bayern/mamminger-bierstreit-wirt-stellt-sachverhalt-klar,UHT7t0l

    Oder die Polizei faselt einfach nen Stuss.

  • Need suggestions for VPS
  • Contabo is really cheap and has a few datacenters around the world. That low price comes at a cost though, their uptime is not as good as that of other providers. Expect about 3 outages a year, lasting about half an hour, maybe a day in extreme cases.

  • You may want to avoid NVIDIA driver 550 if you're on a laptop
  • I'm not sure why they specifically say laptop, and then don't mention what's different to a desktop PC.

    Then you click on the linked NVIDIA article and the first comment says, that it also happens on their desktop.

  • What is/was your distrohopping journey?
  • Didn't really hop much, started with Windows, went on to OSX, got annoyed at it and ran Arch in a VM until I was comfortable with it, then went bare-metal with it.

    Happy Arch user for some years now, though recently I'm using Fedora for work and I really like it. It's not a good fit for some machines I'm running which need a lot of customisations to run properly.

  • The market will for sure solve this
  • I would really like to know how this graph was generated, because some expenditure per capita values have three different corresponding life expectancy values. Just look at Spain for example.

  • ich🤮iel
  • Und ich hab letztens meinen Krichenaustritt per Mail und digital signiert an die BH geschickt und von denen nie auch nur irgendeinen Pieps gehört. Von der Kirche kam dann 2 Monate später die Frage, ob ichs mir nicht vielleicht doch anders überlegen wolle. Und das in einem Steinzeitstaat wie Österreich.

  • General Advice for shell scripts
    • I usually use bash/python/perl if I can be sure that it will be available on all systems I intend to run the scripts. A notable exception for this would be alpine based containers, there it's nearly exclusively #!/bin/sh.
    • Depending on the complexity I will either have a git repository for all random scripts I need and not test them, or a single repo per script with Integrationtests.
    • Depends, if they are specific to my setup, no, otherwise the git repository is public on my git server.
    • Usually no, because the servers are not always under my direct control, so the scripts that are on servers are specific to that server/the server fleet.
    • Regarding your last question in the list: You do you, I personally don't, partly because of my previous point. A lot of servers are "cattle" provisioned and destroyed on a whim. I would have to sync those modifications to all machines to effectively use them, which is not always possible. So I also don't do this on any personal devices, because I don't want to build muscle memory that doesn't apply everywhere.
  • Anyone have a working solution for programming Arduino or PIC micros?
  • I wrote a small program for the arduino nano 2 years ago, it isn't that fancy, a quickly hacked together led flash animation, but the Makefile works. You really just have to install the dependencies and adapt it for your project and it should work.