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/)JU
Posts
0
Comments
70
Joined
2 yr. ago

  • One problem with reporting private messages on Lermy is, as an admin i don't see who sent the message. I only see who reported it. And i don't have any actlon available, other than marking the report as handled.

    with reported posts, i can ban the poster. With reported messages i'd have to ask the reporter who it was, trust their answer, search for the account manually and then i could ban. Not really efficient or fast if there ever was a spam wave.

    of course sparmers could then just register a new account on a open instance and i might need to defederates which would lead to a fractured landscape of spammy open instances and likely inactive private instances.

    there's also not even rudimantary spam filtering in lemmy.

    The main saving grace is that Lemmy is too small to attract a ton of spam yet.

    maybe some of the above is just due my pick of clients (jerboa and the web interface), and there's better tools? If so, i'd love to hear. But as things stand right now, there's a lot to be desired

  • Apple TV the devices or the streaming service? Because the streaming service has pretty good content, especially compared to the other streaming services. Pretty stupid to have named those two the same, though, so many people dont know that it's just a regular streaming service that works on every device.

    everything else Apple sucks though

  • I used to believe that it merely moves jobs, but recently started having doubts. Given the increase in productivity in the past 50 years and the stagnating wages, it's hard to still believe. I mean, sure people will get new jobs, but I doubt it's with similar wages and benefits.

    which is pretty self defeating as there will be no one left to buy the goods produced.

  • i have a venta lw45. same principle, but instead of a wick, it has these rotating disks that the water sticks to (with a little soap in the water). Works incredibly well, still uses next to no energy (<8W) and the disks are super easy to clean. It's a beast, goes through 9 liters of water in a bit over a day. All the parts are easily accessible for maintenance and there's replacement parts if anything ever were to break (though i havent needed those yet).

    the disks are especially nice when you have hard water, the calcium can be a pain to remove from a wick, but you can put the venta plastic disks (and lower housing, if you can fit it) in the dishwasher to get them good as new. And calcium does not stick to them weld, so a quick rinse under a strong showerhead is usually enough to clean the disks. Definitely one of the best appliance purchases i ever made.

  • Looking through hugo/nebula nominations.

    friends

    i used to use goodreads but since it's owned by Amazon, i don't trust it an switched to thestorygraph.com which has really nice recommendations. of course it recommends based on my usual tastes but often also has some books i would never have checked otherwise, which i quite appreciate.

  • It's not economical to grow. It has very specific requirements in terms of wet soil and not too much sun, it has pretty low yields in terms of weight/area, compared to other crops. and since it isn't grown commercially, you also dont have optimized farming techniques and breeds etc.

    and since it's quite common in the wild, well, if the price is too high, you'd just go and collect some yourself. Wild garlic products in supermarkets are already too expensive for me and i'd rather spend half an hour filling a bag with 2kg than buying 50g for 5 bucks.

  • The newest generation of xps i shit anyways, good riddance.

    i was really happy with my 2019ish xps. But the 2024 one is hot garbage. not just that it arrived with the keyboard not working and Dell taking 3 months to replace it. There's a total of 2 usb-c ports on it. That's all the connectors, yes. No, no headphone jack either. And one of those two is taken up with charging, so i'm left with one port if i dont use a dockingstation.

    the whole function bar is touch now. you need to hit it 3 times for it to react, who needs Esc anyways. Unless you want to type in the number row, then the function row will pick up random key presses sometimes.

    Copilot key no one asked for. Power button is just an unlabelled piece of plastic that looks like filler, not a button. Keyboard sucks in general, too little space between keys, you're bound to mistype.

    linux support is ok, though webcam doesn't work in firefox, hibernate doesn't work, every few weeks it'll just freeze. But otherwise acceptable.

    definitely my last dell, i really hate it.

    [Edit] Oh and I forgot the best part, when the dell repairman finally repaired it after 3 months, he said "oh a new XPS? Yeah, those suck, every customer hates them especially for software development"

  • not sure i agree with that. I mean ok, i recently had three interviews for a company where each interviewer asked me almost the same questions. That was clearly a waste.

    At my place, we do a 30min introductory call with the boss first, to quickly weed out unfit candidates and not waste employee and interviewee time with interviews. if that's ok, then there's three interviews of 45-60 minutes, one with the product owner that focuses on soft skills and team fit, one with the team your applying to and one with the other team (like frontend or backend) with more technical things, and also just if you'd like to work with this person.

    no amount of interviewing will ever guarantee that things work out and unfit people can slip through cracks. And i hate wasting time in tons of interviews. But i'd also not want to work at a place where i know my coworkers were hired after just 1 hour quick chatting. That so little time to get an idea of a person, to spot any red flags. Heck, the 'tell me a bit about yourself' section of an interview is already 15 minutes and not usually very helpful.

  • What sucks the most about rust is that 90% of rust jobs are some crypto bullshit. I love the language, but finding normal jobs is near impossible.

    At the same time, i could find 20 Go positions but Go just isn't exciting. It's the new java imo, working with it probably good for job security, but i just don't see myself working in Go in the future as a main language.

  • You misunderstand, the first two commands are just one time setup to install a specific python version and then to create an env using that version. After that all you need is `pyenv activate myenv´ to drop you into that env, which will use the correct python version and make sure everything is isolated from other environments you might have.

    You can also just create an env with the system python version, but the question was specifically about managing multiple versions of python side by side and this makes that super easy.

    You could also combine it with direnv to automatically drop you into the correct environment based on the folder you are in, so you don't have to type anything after the initial setup.

  • pyenv and pyenv-virtualenv together solves this for me. Virtualenv with specific python versions that work together well with other tools like pip or poetry.

    It boils down to something like

     
        
    $ pyenv install 3.12.7
    $ pyenv virtualenv 3.12.7 myenv
    $ pyenv activate myenv
    
      

    and at that point you can do regular python stuff like pip installing etc.