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/)H
Posts
1
Comments
860
Joined
1 yr. ago

  • I'd save up +30€ and wait for the steam controller to be available

  • I'm running dokploy in swarm mode on 3 nodes.

    The only downside is the development of swarm is basically halted and some features are missing (like passing /dev devices to a container, you have to use dirty workarounds) but otherwise it just works.

  • Not really down, just overloaded.

    I was able to retry reload a couple of times it in my browser to get to the snapshot so I can make a manual install.

    But yay etc. wouldn't budge.

  • Same on archlinux, importing the new key fixed it and I was able to update

  • not yet and it doesn't look like microslop feels like adding it.

    Dirt Rally 2 and AC Evo seem like good alternatives with VR support.

  • New Kid on the block: AtomicMail.io Cybersecurity & Strategic Analysis (2026)

    Jump
  • thanks chatGPT!

  • Should have used agpl if they wanted to be noble.

    But this is just a corpo moating strategy.

  • Mostly the uutils.

    • MIT license isn't nice.
    • They have way more CVEs than the core utils they replace.
    • They don't have feature parity yet, so if you use some rare flags in your scripts, those will break.
  • Ah yeah exactly, "warping"!

    It's kind of similar like the software solution the other user posted.

    Like I said, I found this partitioning/sector/warping approach surprisingly good.

  • keyboard.io has it on their model 001 and model 100

    one thing about their implementation that was super convenient is jumping to quadrants. I can't really explain it well, sorry. Maybe you can find a video

  • Thats great and all, but completely non-actionable.

    Tell me instead - what exactly should I do?

    (should have mentioned that I already have a pinephone and grapheneOS on a GOOGLE pixel)

  • https://www.youtube.com/watch?v=tG2ZMvBT8W4

    4:25

    (sorry my third party youtube frontend can't share timestamp links)

    tldw:

    • more CVEs than the old core utils that have been tested and in prod for over 30years
    • no feature parity, so existing stuff that uses them will suddenly misbehave, when certain flags are missing
    • different license, MIT instead of copyleft, so it's more friendly for companies to use it for profit, while abusing the work of volunteer contributors
  • Depending on where you live, going to IT events and conferences to connect to people in person is even more powerful. Ask them about their work and talk passionately about related stuff that you have some knowledge/skill in. Exchange contacts, say you're looking for work.

    For example, next month is DEVWORLD in amsterdam. They always give away free tickets close to the start of the event. I'm sure there are a ton more like this around the world.


    As for writing applications: For me writing very high quality applications did the trick.

    • only apply to companies/positions that you are REALLY interested in
    • research the position
    • research the company
    • if you can find somebody that works there in a similar position, ask them some questions
    • use the info you gathered to show interest in your appplication
    • write everything yourself, no AI writing. Be a genuine human.
    • But you can use AI to give it the position and your application and tell it to make a hiring decision with pro/con arguments and rework it based on that
    • make a small demo project that shows off your relevant skills and tell them about the challanges you had and what you learned to overcome them

    (About the last point: I found that talking about relevant hobby projects I did and showing the code made a huge difference)

    It usually takes me about a week to write one such application. But I only sent out 3 before hearing back from 2 of the companies and getting signed on by one.

    I know it's a lot more hoops then just clicking "auto apply" or "apply with AI", but the effort pays off.

    Contrary to that I often see people complaining online about how they wrote 100 applications in a month and got no job interviews... yeah buddy. (And I was initially one of those people)

  • Also netcup has really good deals during the winter holidays

  • The problem could be anywhere in between the internet and your server.

    Ofc. it could be your routet. But I think the following is more likely:

    It might also be your internet service provider that doesn't allow those ports for inbound connections.

    Or you're behind a CGNAT so your real external ip is different from the one you think it is. (look up online how to test this)

  • Sounds good.

    Hmm next you probably should confirm ports 80 and 443 are actually reachable from the internet.

    Use an online port checker like https://canyouseeme.org/

    After that you should check your apache config like somebody else already suggested. I haven't used apache in a while but if I remember correctly:

    Ensure it says: Listen 80 NOT: Listen 127.0.0.1:80

    (and same with 443)

    Also check your VirtualHost — it should look something like:

     
        
    <VirtualHost *:80>
        ServerName yourdomain.com
        DocumentRoot /var/www/wordpress
        # ... other settings
    </VirtualHost>
    
      

    (and same with 443)