681
windows quality (piefed.cdn.blahaj.zone)
top 50 comments
sorted by: hot top controversial new old
[-] airgapped@piefed.social 165 points 2 months ago* (last edited 2 months ago)

Look what they need to mimic a fraction of our power

[-] SlurpingPus@lemmy.world 17 points 2 months ago* (last edited 2 months ago)

Funny thing: judging by the styling, that text might be from the documentation for Ansible, the declarative configuration manager. Well, you can't run Ansible itself in Windows, you need a *nix vm, even if WSL โ€” though you can control Windows machines via Ansible. Afaik the same is true for the popular alternatives Salt, Puppet and Chef.

(Though I couldn't find the screenshotted page.)

load more comments (6 replies)
[-] toynbee@lemmy.world 11 points 2 months ago

You make me think of a Doctor Who novel.

[-] scrion@lemmy.world 155 points 2 months ago

The cherry on top is the warning about the PowerShell team cooking up their own version of a download command with an incompatible syntax, but still calling it curl.

[-] elvith@feddit.org 40 points 2 months ago* (last edited 2 months ago)

Microsoft just set a system wide default alias in Powershell for Invoke-WebRequest called curl.

While I get their reasoning for that (I mean, they also aliased e.g. ls and dir to Get-ChildItem which is the same, but way more powerful than the OG commands the aliases hint at), the problem is, that in all those cases the arguments don't match. Something that plays in the favor of Powershell is that arguments are not case sensitive and do not need to be written in full, as long as they're distinct - e.g. -Force may be abbreviated -f as long it's the only argument starting with f. While dir or ls is somewhat likely to be called without arguments (or maybe -f) that's definitely not the case for curl.

[-] HeyThisIsntTheYMCA@lemmy.world 8 points 2 months ago

wait they're fucking with the dir command? wheres my torch

[-] elvith@feddit.org 12 points 2 months ago

Yes. Somewhat. In Powershell dir is an alias for Get-ChildItem.

While dir . or dir C:\test\ works as expected, you could also do this: dir HKLM:\HARDWARE -Recurse -Depth 5 which will list your registry from the local machine from the key HARDWARE recursively - but only to a depth of 5 levels.

[-] The_Decryptor@aussie.zone 6 points 2 months ago

They don't do that anymore in new versions, but you still need to actually use the new version to get that behaviour. It's a bit of a pain since the "fixed" version is in the MS store, the broken one is a base system component.

It also hits the people who use the terminal the least, anybody who uses it regularly will just install the new shell at the same time they install the new terminal and always get the new clean behaviour.

[-] WhiskyTangoFoxtrot@lemmy.world 113 points 2 months ago

Windows just isn't ready for the desktop.

[-] thethunderwolf@lemmy.dbzer0.com 38 points 2 months ago

Year of the windows desktop is probably not next year; it's not ready for general use yet, it's too broken.

[-] echodot@feddit.uk 9 points 2 months ago

Microsoft won't fix it either because they're too busy adding AI features to every part of the operating system.

[-] nightlily@leminal.space 7 points 2 months ago

How can we trust the quality of code only incentivised with money and in a closed environment?

load more comments (1 replies)
[-] PotatoesFall@discuss.tchncs.de 67 points 2 months ago

sent this to a friend, his response:

[-] greygore@lemmy.world 29 points 2 months ago* (last edited 2 months ago)

Glad he went with Terry Davis and not Richard Stallman.

Note: This is posted in the same tongue in cheek manner as your image and not meant to conflate Bill Gates and Richard Stallman.

[-] PotatoesFall@discuss.tchncs.de 17 points 2 months ago

Yeah lol. Unlike Gates tho, Stallmann actually felt the consequences of his words, and was removed from the FSF. Later he said he had been educated and apologized for his previous statements, he's back at FSF now.

[-] Credibly_Human@lemmy.world 4 points 2 months ago

Bruh, hes pro child rape.

He was friends with epstein.

You can't just apologize and undo things like that.

It is a travesty he continues to be a part of that organization considering the no code/subtraction he contributes,

I bet there are a lot of donations they could be getting but aren't purely because of this, and the fact that he clearly had some sort of leverage on them to be able to be reinstated.

load more comments (1 replies)
[-] qaz@lemmy.world 6 points 2 months ago

That's why you should use Alpine /s

load more comments (4 replies)
load more comments (1 replies)
[-] Wispy2891@lemmy.world 60 points 2 months ago

Don't worry, Microsoft is going to let ai rewrite 1 million LOC from C to Rust per month per programmer and this will dramatically increase the quality https://www.thurrott.com/dev/330980/microsoft-to-replace-all-c-c-code-with-rust-by-2030

[-] Postimo@lemmy.zip 19 points 2 months ago

Finally, I will memory safe when I accidentally send a broken Invoke-WebRequest ๐Ÿ™‚

[-] TriangleSpecialist@lemmy.world 48 points 2 months ago* (last edited 2 months ago)

Winget is such a half-assed effort. Updating the terminal? Terminal shuts down and you need to open it and run the update again. Updating something else? Maybe it'll change the binary location and not update the path, just for fun (happened twice with LLVM stuff for me). This update failed for some reason? Try to run update again only to be told no updates are available.

[-] rainwall@piefed.social 20 points 2 months ago* (last edited 2 months ago)

You want even more shame here? They made Winget by basically copy/pasting a solo dev effort called Appget back in 2019 after stringing the dev along about a possible Microsoft job.

Then, during the annoucement of winget while they lauded other windows package managers, they barely mentiom his app they copied nearly 1 for 1.

[-] TriangleSpecialist@lemmy.world 10 points 2 months ago

Textbook Microsoft move. Thanks for the link, that was an interesting, if disgusting, read. I loved in particular that they were difficult about reimbursing his travel. You'd think a multi billion dollar company would be able to pay for however much a plane ticket and possibly a hotel stay was...

That's not the first time I hear something like that from a big company. I saw a talk by Matt Godbolt (compiler explorer) mentioning that NVidia took more than a year to pay him some contribution they said they would for the CUDA support. Can't remember the figure, but it was ridiculously low.

load more comments (1 replies)
[-] underisk@lemmy.ml 30 points 2 months ago

Remember when WSL was an actual compatibility layer instead of a VM? Imagine if they had just gone further down that road instead of whatever the fuck this shit is.

[-] SlurpingPus@lemmy.world 10 points 2 months ago* (last edited 2 months ago)

Afaik original WSL suffered from the fact that filesystem syscalls went through Windows' APIs, which allow user-level third-party programs to plug in at many points โ€” like path resolution, block access, etc. Which also involves switching the context between the kernel and userspace a bunch of times. File access patterns in Linux apps worked poorly with this. Plus Linux apps expect the filesystem to cache metadata, which Windows doesn't seem to do.

Much of this is mitigated when file access on the Windows side is done by chucking blocks into and out of a virtual disk, and when a kernel with the whole caching thing is introduced.

I'm guessing such mismatch problems would crop up in other places too.

load more comments (3 replies)
[-] lenya@piefed.blahaj.zone 22 points 2 months ago

Scoop is such an excellent package manager for Windows in my experience. It makes the best of what it's given and it's usually as seamless as using Linux.

All Microsoft developer tools (and that is the target user for Winget) have felt so janky to me. Also, their documentation sucks most of the time.

[-] wreckedcarzz@lemmy.world 13 points 2 months ago

I use Chocolatey, but I've looked at Scoop before. Any big differences between the two? I just don't want to relearn commands and edit scripts (for multiple machines, and scheduled tasks) if I get the same outcome...

load more comments (3 replies)
[-] apftwb@lemmy.world 21 points 2 months ago

Look at how they massacred our boy curl

load more comments (4 replies)
[-] ArchBtw@ani.social 18 points 2 months ago

I'd say Win11 is a joke but its more like a slap in the face.

And a joke...Its still a joke...

[-] BilSabab@lemmy.world 13 points 2 months ago

i was forced to switch to Win11 and after three weeks my employer straight up apologized and allowed to switch work computer to Mint. And then much of the team also switched to Mint and it turns out your computer can still feel like the machine from the future when its OS is not a bloated spying mountain of crap

[-] HugeNerd@lemmy.ca 6 points 2 months ago

What!? You mean you don't see the advantage of the taskbar being locked in one spot and the volume mixer being many clicks away?

load more comments (3 replies)
load more comments (4 replies)
[-] Bytemeister@lemmy.world 6 points 2 months ago

Windows 11 is vibe-coded garbage. Vista was a better OS at launch than 11 is 4 years in.

load more comments (1 replies)
[-] MonkderVierte@lemmy.zip 16 points 2 months ago

Installing Scoop or Chocolatey isn't much easier either (Powershell permission system) but at least they work and arent stolen from Appget.

[-] FinalRemix@lemmy.world 8 points 2 months ago

Chocolatey was like... Ctrl C, Ctrl V a couple times, and grabbing ChocoGUI. Ezpz

[-] MonkderVierte@lemmy.zip 10 points 2 months ago

Don't forget the setExecutionPolicy or something.

[-] JackbyDev@programming.dev 16 points 2 months ago

Reminder that the Windows devs copied AppGet, even spoke with the dev of it, but refused to hire them. Reminder that just because something is legal with regards to FLOSS tools, it doesn't mean it is ethical. It's stories like this that I think people need to think long and hard about when making FLOSS stuff and whether you want to use a permissive license. A copy left license wouldn't have necessarily prevented this, but this is the competition. They don't play nice.

https://keivan.io/the-day-appget-died/

[-] Quill7513@slrpnk.net 11 points 2 months ago

i used to prefer MIT and Apache licensing. now i feel very strongly that copyleft is the way. too many rugpulls all at once in the last 2 years.

load more comments (2 replies)
[-] neutronbumblebee@mander.xyz 15 points 2 months ago* (last edited 2 months ago)

Trying to install remote desktop multiuser in server manager, for win2025 the installer fails. I find out that a security update broke it over a year ago. Uninstalled all updates then rebooted and it works. Not to mention the constant wack a mole admins do to disable unwanted marketing additions to the taskbar and start menu via group policy and registry hacks. Clearly what windows needs next is an AI powered going dark mode to randomly break features it thinks you don't need. Because even that would be less confusing than what we have now.

[-] purplemonkeymad@programming.dev 4 points 2 months ago

From what I've seen people say not to install server 2025 at all, due to a bunch of unresolved issues. I'm suspecting that 2022 will be the best for a while.

[-] echodot@feddit.uk 15 points 2 months ago

I would be interested to know when that version was current because that's extremely out of date.

[-] M33@piefed.world 11 points 2 months ago
[-] Shanmugha@lemmy.world 5 points 2 months ago

It is hilarious to see linux-scary-because-terminal heads and then this

load more comments (1 replies)
load more comments
view more: next โ€บ
this post was submitted on 24 Dec 2025
681 points (100.0% liked)

Microblog Memes

11006 readers
1782 users here now

A place to share screenshots of Microblog posts, whether from Mastodon, tumblr, ~~Twitter~~ X, KBin, Threads or elsewhere.

Created as an evolution of White People Twitter and other tweet-capture subreddits.

RULES:

  1. Your post must be a screen capture of a microblog-type post that includes the UI of the site it came from, preferably also including the avatar and username of the original poster. Including relevant comments made to the original post is encouraged.
  2. Your post, included comments, or your title/comment should include some kind of commentary or remark on the subject of the screen capture. Your title must include at least one word relevant to your post.
  3. You are encouraged to provide a link back to the source of your screen capture in the body of your post.
  4. Current politics and news are allowed, but discouraged. There MUST be some kind of human commentary/reaction included (either by the original poster or you). Just news articles or headlines will be deleted.
  5. Doctored posts/images and AI are allowed, but discouraged. You MUST indicate this in your post (even if you didn't originally know). If an image is found to be fabricated or edited in any way and it is not properly labeled, it will be deleted.
  6. Absolutely no NSFL content.
  7. Be nice. Don't take anything personally. Take political debates to the appropriate communities. Take personal disagreements & arguments to private messages.
  8. No advertising, brand promotion, or guerrilla marketing.

RELATED COMMUNITIES:

founded 2 years ago
MODERATORS