Comment on
Canvas Ended. Who is this?
Megumin from a comedy Anime called "Konosuba"
Comment on
Canvas Ended. Who is this?
Megumin from a comedy Anime called "Konosuba"
Comment on
Basically the extent of my IPv6 knowledge
Reply in thread
Skill issue
Comment on
ChatGPT?
Reply in thread
Still good to add it as a comment for the unaware. Not everyone one on lemmy is into tech.
Comment on
*Permanently Deleted*
I'd like you all to consider that places where you'd use starlink are also significantly more than 30x farther away from civilization than the average land-based internet user.
Comment on
Are people in the stock photos real?
Yes they are.
Here's a TED talk on YouTube from "Hide the pain Herold" a guy who was in a stock photo that became a meme: https://youtu.be/FScfGU7rQaM?si=MFVrgwlJQ8DSOfVB
Comment on
The German government is working on an OSS "Sovereign Workplace"
Reply in thread
Looks to me like they're trying to build something like office 365, but open source. Mostly by wiring other open-source components together I think?
This is probably a better starting point, unfortunately the text is in German: https://gitlab.opencode.de/bmi/souveraener_arbeitsplatz/info
Comment on
Canvas Ended. Who is this?
Reply in thread
Wikipedia (!?): https://en.wikipedia.org/wiki/Megumin?wprov=sfla1
Comment on
Why do these git merges happen
If your local branch and the branch on GitHub diverge, they need to be merged. If you pull using the console it will tell you that, apparently VScode does this automatically?
Anyways, nothing to be concerned about. If you're annoyed by the merge commits, you can configure git to "rebase on pull", google it, you'll find instructions pretty quickly.
Comment on
Queer Amsterdam wants to ban Israeli flags at Pride Walk, Halsema prohibits ban
Reply in thread
gay and trans Palestinians
Hot take: I don't believe Gaza is progressive enough to have a large population of openly gay or trans people.
Not sure why you're making this a LGBTQ thing anyways, mistreating POWs and seemingly intentionally maximizing civilian losses should be bad enough by themselves.
[Edit: formatting]
Comment on
NATO gives Ukraine the go-ahead to cross Putin's red line and striking targets within Russia's borders
Reply in thread
The title is essentially click bait, absolutely nothing changed. Random comments from a NATO secretary general don't change international law or contracts. They still can't use any of the weapons provided by other countries on Russian territory, because it was part of the deal(s) they were provided under.
Comment on
goddamnit
Reply in thread
They removed JPEG XL support from chrome. It was behind a feature flag previously.
(At least that's what I gathered from reading the screenshot.)
Comment on
Rocket Report: Firefly’s CEO steps down; Artemis II core stage leaves factory
Alternative title for the articles thumbnail: Philip Morris releases worlds largest cigarette filter in an effort to convince regulators that smoking is not a health risk.
Comment on
Which application are you using that operates on a P2P network?
Here are some corrections:
Blockchain has nothing to do with P2P. Blockchains are federated ledgers that can't be changed later, unless the majority of federated servers decides to. P2P means that two devices communicate without a server in the middle. Maybe you meant federated?
Blockchains can absolutely be hacked. You can gain majority control over the servers, in which case you can rewrite the blockchain as you want. Alternatively you can gain access to accounts/wallets by hacking the software that users store them in or by social-engineering people to give you their keys.
If proper end-to-end encryption is used, there is little security difference between server-based and P2P communication, but it's much more inconvenient: You cannot save sent messages on the server for later retrieval, so if you're trying to reach someone who's currently offline, your device has to wait until they're back before sending the message. Also if you use multiple devices, keeping them in sync is very complicated, because they have to be online at the same time.
Edit: formatting
Comment on
started to feel headaches and such from headphones, measured how many microteslas it emits or whatever, is this safe?
Considering MRTs use 1.5-7 Tesla, I can't imagine microtesla will be doing anything, unless you have a piece of metal in your head. Maybe it's an ear infection or a migraine or something like that gets worse from the cup pressure. If it's a problem, ask a doctor.
Comment on
"Nein heißt Nein" in der EU? : Deutschland blockiert neues Sexualstrafrecht
Leicht irreführende Überschrift: Die EU Richtlinie ist, laut dem Artikel selbst, eine "Nur Ja heißt Ja" Policy.
Ich denke ein massiver Großteil der Menschen wäre für eine "Nein heißt Nein" Policy, bei "Nur Ja heißt Ja" kann ich verstehen wenn Leute Vorbehalte haben.
Comment on
I speed tested a few browsers here are the results
The browser does not influence your download/upload speeds, with the exception of Tor, because it sends your traffic through a series of VPNs.
I don't know what you measured, but it's not the difference between browsers.
Comment on
Which do you think will be the next country to legalize recreational cannabis?
It better be Greenland or I'll be disappointed
Comment on
こんにちは!
Reply in thread
That's Japanese not Chinese.
Comment on
We need more eco-friendly memes
Reply in thread
Rookie numbers, it takes me a solid 30mins
Comment on
Am I using devDependencies wrong or is everyone bad at explaining it?
I think it makes more sense if you think about backend applications: If you write a Webserver with ExpressJS in typescript, you need typescript only to compile it (dev dependency) but once compiled, you only need ExpressJS in your node_modules for the app to be able to run ("regular" dependency).
Frontend development is a bit strange in that respect, because often everything gets bundled into your dist/ directory, so technically there are no runtime dependencies? In that case it's more of a hint to let you know "this goes into the bundle" vs. "this is part of the compiler toolchain"