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/)M
Posts
31
Comments
596
Joined
3 yr. ago

  • Well the vote passed 82/13 with 15 abstentions. Khan has been removed.

    But I think the analysis in the OP is wrong on the last point, as per DW:

    All active ICC warrants will remain in place despite Khan's dismissal, because only ICC judges have the authority to withdraw warrants.

    The play might rather be that a new prosecutor will just not do their job or do it badly if any arrest is ever made. And also preventing Khan from issuing new warrants obviously.

  • Oh yeah, a few weeks back a protester on some demonstration had a sign saying "Merz leck Eier" (lick eggs/balls, same diff), and the police confiscated the sign and charged them with "an insult to a political official capable of damaging their public work" (roughly translated), an obviously preposterous state of affairs even if you ignore the fact that we apparently have Lèse-majesté-laws again. Hence the well earned ridicule.

  • I tried ranking my flower vine over their border with the Lemmy logo, and initially they resisted, but then I showed them what I wanted to do with the cursor and they let me. Didn't feel like botting.

  • <3

  • Is it just me or is the picture missing the last few minutes?

    Anyway, I enjoyed all the new features, especially templates, cursors, and the new pixel pulses. I think I barely managed to test half the new stuff in the few hours I participated. :D

    Edit: Canvas_final_v2.png

    There is indeed some stuff missing in the OP picture, see e.g. the void eyes below the pirate.

    Edit 2: Fixed, thanks!

  • Canvas @toast.ooo

    Thanks all who helped grow the little garden(s). It was fun, see you next time.

  • Started a little flower garden around other peoples art to fill in the blanks. Negotiated a border with the void by letting my grass wither. Trying to reach the butterfly for now and then see where I can go from there. I know somebody else is doing the same in the bottom right corner.

  • Was busy over the weekend so I just joined an hour or so ago, but have to say I love the template function! Bit rough around the edges maybe, but really really missed those Place browser addons for templating the last time around. Looking forward to next year already. :D

  • To anyone who missed it, I think most people are using the new templates to collaborate this year. There is announcement thread about it pinned to the community. Works like this:

    1. Go to https://chocolatecakecodes.goip.de/cotemplate/ui/template/20260520-Canvas26_main
    2. (optional) Use the button with the image icon in the top right to select the templates you want to support. Close the sidebar, and click the button with the arrow icon top middle to load your selection.
    3. Click the button with the clipboard icon to copy a link. If you skipped step 2 all templates will be included.
    4. Go back to the Canvas page, open the settings, and paste the link into "Template URL". Then set "Template X" and "Template Y" to 0.
    5. (optional) Select another "Template Style" to better see where pixels are needed, I suggest "Dotted Small".

    If you want to add your own template you have to use "Login" button on the top right of the template page. Guess you could also use a link to a random png, but haven't tested that.

  • Nobody said it would? But both of these vulnerabilities were use-after-free, so using Rust would probably have helped here (you know if Rust had been a thing back when they were introduced).

  • Oh I see. You mean like v3.0.1 will be stable, and v3.1.0 will be stable. Yeah that's true. But v3 (as in v3.0.0) is breaking. At least that's how I have always seen the terms used.

  • No, v3 is a release with breaking changes:

    This release includes several breaking changes; read the full migration guide here. It's worth mentioning that many of the breaking changes are updates to API endpoints and only affect third-party tools that integrate with Immich's API. For the vast majority of users, updating works exactly as it always has.

    https://immich.app/blog/v3.0.0-release

    That's why the major version was increased, it implies breaking changes in semantic versioning, which Immich is doing since v2 apparently:

    Given a version number MAJOR.MINOR.PATCH, increment the:

    1. MAJOR version when you make incompatible API changes
    2. MINOR version when you add functionality in a backward compatible manner
    3. PATCH version when you make backward compatible bug fixes

    https://semver.org/

  • Hey there, seems like you used a code block (text between two lines of ```). This will prevent line-wrapping, so you have to scroll horizontally through the code block to read. For text that is supposed to be read it's better to use a quote (lines starting with > and a space):

    Automatic Power Cut-Off: The system is “smart.” If you unplug the cord from the wall while the sun is shining, the metal prongs on the plug become “dead” in less than a second. This prevents anyone from getting a shock from the exposed plug.

    Grid Outage Protection: If the power goes out in your neighborhood (a blackout), the panels automatically stop sending power to your home or the grid. This ensures utility workers fixing the lines aren’t accidentally shocked by your panels."

  • Personally I hate it because it’s always seemed to me like pandering and an attempt to force people to see Carter as a bad ass, when it was completely unnecessary, as we see time and time again that being a woman does nothing to hinder her baddassery.

    That episode in particular always felt like an "anti-chud episode". In the sense that it wasn't really made for anyone rather than against misogynists becoming part of the fan base. These people have thick skulls, can't be too subtle in your arguments if you want to get through. Seeing that both of these episodes are relatively early into their respective series kind of reinforces that notion.

    So not sure if this was in response to being told they were sexist, I believe this may have been preemptive. But yeah, I guess making a blunt argument to the viewer doesn't really make for good TV. Not really my favourite episode either.

  • I think you replied this in the wrong thread, but I generally agree with this person. Use GitBash as the terminal and only use VS Code as an editor (or even skip VS Code entirely). Not because it's MS, but just because it adds complexity you don't need while learning.

    By the way, if you just want to learn git you can try this website, it's a fully self-contained learning experience with a terminal emulator inside the browser: https://learngitbranching.js.org/

  • Drives, not drivers. HDDs and SSDs.

  • Theoretically yes, but I would recommend the terminal git brings with it. You should be able to just open any location on your drives, right-click, and select "GitBash here". This will start a terminal with the directory you were in as the working directory.

  • Ideally, the readme.md has already been created by the time l reach here or no ?

    Depends, if you followed the tutorial precisely it should already have been created in the step "Create the repository 3.". You can use the ls command in the WSL terminal to see if it exists.

    If not, where do I create the readme ?

    In the base directory of the git repository you cloned from Github. You can do so with the command echo "blaaaa" > README.md (this will overwrite the file if it exists already).

    In the WSL terminal or the vs code terminal ?

    See I think this is your misunderstanding right here. The tutorial tells you to enter code ., where code means "start VS Code" and . means "in the current directory". You are supposed to then use the file explorer inside VS Code to select the README.md and modify it.

    This may not work as intended in WSL. If you enter which code and there is no output it won't work. Is there any reason why you are using WSL instead of just installing git for Windows? It comes with a terminal emulator, so there should be no problem following the tutorial and you can eliminate WSL as a possible friction point.

  • poof

    Jump
  • Well it for sure killed my entire "Suspension of disbelief".

  • Science Memes @mander.xyz

    The virgin wiki Glossary of mathematical symbols (EN) VS the chad Liste mathematischer Symbole (DE)

  • Memes @lemmy.ml

    The last thing your white-only dating app sees before its webserver is deleted

  • Stargate @lemmy.world

    Amazon MGM Studios has greenlit a new Stargate series for Prime Video

  • Programmer Humor @programming.dev

    YSK: GIT LFS is technically called Filey McFileface

  • Political Memes @lemmy.world

    This timeline... Yes, he is advertising his own book.

  • Europe @feddit.org

    Stop Killing Games PSA: Signatures will be verified AFTER the 12 month window closes, so we need to to push as far past the 1 million mark as possible to account for invalid signatures

  • Deutschland @feddit.org

    Das ist hier aber nicht c/dach...

  • Programmer Humor @lemmy.ml

    When people ask how your plan for life is going...

  • News @lemmy.world

    Venezuelan detainees at Texas center spell out SOS with their bodies

    www.theguardian.com /us-news/2025/apr/30/venezuelans-sos-texas
  • World News @lemmy.ml

    Venezuelan detainees at Texas center spell out SOS with their bodies

    www.theguardian.com /us-news/2025/apr/30/venezuelans-sos-texas
  • Political Memes @lemmy.world

    The face eating leopards are well satiated these days

  • Memes @lemmy.ml

    Just felt like reposting this today, no particular reason...

  • Political Memes @lemmy.world

    If it walks like a fascist coup, and it quacks like a fascist coup, it's probably a fascist coup.

  • ich_iel @feddit.org

    ich🎙️iel

  • Neovim @sopuli.xyz

    Internet gets wind that author of the markview.nvim plugin is student from Bangladesh who wrote it entirely on a phone, now everybody is trying to get them a laptop. (Links in post body)

  • HistoryMemes @lemmy.ml

    Suck it Utnapishtim!

  • ich_iel @feddit.org

    ich🤦iel

  • Solarpunk @slrpnk.net

    Can you recommend any groups/books/papers/blogs/keywords/etc on the topic of UN reform and global constitutionalism?

  • Canvas @toast.ooo

    Even the void seems to respectfully avoid artworks