• 0 Posts
  • 183 Comments
Joined 2 年前
cake
Cake day: 2023年7月4日

help-circle









  • I was thinking it was sync, but I didn’t want to call them out if I was wrong…
    I suspect that it was originally written for devices with much less power and much less memory. Also reddit had upper limits on image size. So, Lemmy’s yolo way of dealing with images is coming up against sync’s attempts to be able to run nicely on the worst devices.


  • Test_Tickles@lemmy.worldtoMemes@sopuli.xyzDiagrams
    link
    fedilink
    arrow-up
    11
    ·
    1 个月前

    That’s the real problem. The app he is using reduces the image to optimize memory usage, but if the image has too many pixels in either direction, it ends up decimating too much.
    I ran into that issue with one of the Lemmy clients when I was trying them out, but can’t remember which one it was. If I remember correctly, it should be something that you can turn off, but it can drastically slow down how long it takes to display some images.





  • That’s because you view things like this as isolated acts done by a few people. But don’t forget, only 1/3 of US voters tried to stop a man who openly declared himself a fascist, had already had a direct hand in the spread of a world wide plague that killed millions.
    The “they didn’t know what they were getting into” excuse is no longer valid. And yet 2/3 of voters were fine with him being reelected . The reason those people weren’t dragged from their mansions and beaten to death was because of all the other monsters who were protecting them. The people who weren’t committing atrocities themselves, but benefited from it enough to help it keep happening.





  • Dude, there are at least 4 different “for” loop syntaxes in Js/Ts alone:

    for (let num = 1; num <= 5; num++) {}.

    for (const num of numbers) {}.

    for (const num in numbers) {}.

    this.numbers].forEach(num => {});

    Also don’t forget ngFor and @for in html, and then the @for in sass/scss.

    That’s 7 different for loops and I haven’t included the non-for loops, or even left Angular.

    Once we include some scripting like I did just this week:

    bash: for i in {1…5}: do … done

    dos: for /L %%i in (1,1,5) do ()

    Then you can just stfu if I feel the need to remind myself of the exact syntax for one of the 3 or 4 different for loop options in c#.


  • As a senior programmer I can’t write a for loop without the internet.
    I can’t remember the last time I saw a job listing that didn’t expect me to be an expert in at least 5 languages. The best part is that halfway through the interview you learn that they are no longer using half the languages listed, and are “transitioning” towards 2 others that aren’t even listed. You want me to whip out examples written in Fortran, C++, Rust, JS, and some random word you claim is a language in 2 hrs without the internet? Bitch, I don’t even think I could get prewritten “Hello World” examples compiled in 5 different languages in 2 hrs, much less on machine that I have never seen before.


OSZAR »