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/)W
Posts
1
Comments
99
Joined
2 yr. ago

  • Yea, recently I set up immich and while it's solving a way more narrow (image and video library) problem it's so much more responsive and felt much more "put together".

  • Its Monday and I'm feeling rather ok so 2

  • The hero we need

  • Hmmm. Maybe I should try that then. Never actually understood why people like these managers as I was always satisfied with the directory tree for organization.

    Well maybe besides music. There beets fucking rocks. But in the end I use it also only to sort music into a directory structure.

  • What's wrong with just folders and file names?

  • The people working on LLMs also call it AI. Just that LLMs are a small subset in the AI research area. That is every LLM is AI but not every AI is an LLM.

    Just look at the conference names the research is published in.

  • Another good one is second hand shops. When I was in Helsinki I've found really cool stuff there.

  • Would you say the price did get spread further out or were they always that far apart?

  • Unfortunately many US grocery stores geo block the EU :/

    Probably because of privacy laws? I guess I could use a VPN but asking here was easier / more fun.

  • Thanks, believe it or not but I find it actually really interesting how prices differ and what product are sold.

    If I travel I always try to go to markets where local people buy their groceries

  • Ask Lemmy @lemmy.world

    How high are chicken meat prices in the us?

  • Also ich würde behaupten, dass es in der Tat nicht sehr cool ist einfach in einer anderen Sprache zu antworten.

  • You probably have a skewed impression. This is common in some places like Germany, but it's far from the norm. (Even in Germany it's mostly telecom that does it for some reason.)

    Many ISPs only change the allocated IP only in cases like lost connections and some don't even do that giving out but not guaranteeing static IPs.

  • C++

    Jump
  • The only way to make Rust segfault is by performing unsafe operations.

    Challange accepted. The following Rust code technically segfaults:

     
        
    fn stackover(a : i64) -> i64 {
        return stackover(a);
    }
    
    
    fn main() {
        println!("{}", stackover(100));
    }
    
      

    A stack overflow is technically a segmentation violation. At least on linux the program recives the SIGSEGV signal. This compiles and I am no rust dev but this does not use unsafe code, right?

    While the compiler shows a warning, the error message the program prints when run is not very helpfull IMHO:

     
        
    thread 'main' has overflowed its stack
    fatal runtime error: stack overflow
    [1]    45211 IOT instruction (core dumped)  ../target/debug/rust
    
      

    Edit: Even the compiler warning can be tricked by making it do recusion in pairs:

     
        
    fn stackover_a(a : i64) -> i64 {
        return stackover_b(a);
    }
    
    fn stackover_b(a : i64) -> i64 {
        return stackover_a(a);
    }
    
    fn main() {
        println!("{}", stackover_a(100));
    }
    
      

  • I feel like Broccus would be a badass name for a dog.

  • The fuck is the driving factor of egg prices in the us? It is not just a meme?

  • Fair enough, I think yours is also a valid interpretation.

    I just want to clarify: with "just be happy" energy, I meant the tendency of people to suggest seemingly simple fixes to others struggling with mental health. Even, if they work for oneself and even if it works statistically (for example sport is a good habit against depression), it feels like talking the problem down. But that is highly subjective of course.

  • Ok, what do you mean by checking myself first?

    I just commented on how I personally perceived the comic. I also said that I believe that the comic was made with good intentions.

    Ultimately, I am just someone on the Internet. I have no illusion that my comments here matter. Though, I do have first and second hand experience with depression and suicide if that matters, which it does not.

    And yes in many ways I am extremely privileged when it comes to this topic, e.g. my healthcare insurance is not tied to my employer as I don't live in the US. I would like to know how that has anything to do with my comment above though.

  • What do you mean with "they just don't want to"?

    Quitting your job, potentially losing your shelter and food supply is a hell of a risk. Presume one actually wants to get better, they first need to be well enough to handle such a risk. Otherwise, they are homeless and suicidal: A great recipe to get well /s

  • I do believe this was made with best intentions but it has major "just be happy" energy and is made from a position of privilege.

    Just getting a therapist for example is a huge battle. Having supportive friends is not ubiquitous. Changing jobs is risky and in certain financial circumstances almost impossible, especially with dependents.

    That said I approve of the message that without living there is no possibility of things getting better. My advice is to focus on small maybe even tiny victories daily making lifestyle changes where possible.