this post was submitted on 24 Dec 2025
124 points (100.0% liked)
Microblog Memes
10961 readers
242 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:
- 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.
- 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.
- You are encouraged to provide a link back to the source of your screen capture in the body of your post.
- 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.
- 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.
- Absolutely no NSFL content.
- Be nice. Don't take anything personally. Take political debates to the appropriate communities. Take personal disagreements & arguments to private messages.
- No advertising, brand promotion, or guerrilla marketing.
RELATED COMMUNITIES:
founded 2 years ago
MODERATORS
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.Microsoft just set a system wide default alias in Powershell for
Invoke-WebRequestcalledcurl.While I get their reasoning for that (I mean, they also aliased e.g.
lsanddirtoGet-ChildItemwhich 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.-Forcemay be abbreviated-fas long it's the only argument starting with f. Whiledirorlsis somewhat likely to be called without arguments (or maybe -f) that's definitely not the case forcurl.wait they're fucking with the dir command? wheres my torch
Yes. Somewhat. In Powershell
diris an alias forGet-ChildItem.While
dir .ordir C:\test\works as expected, you could also do this:dir HKLM:\HARDWARE -Recurse -Depth 5which will list your registry from the local machine from the keyHARDWARErecursively - but only to a depth of 5 levels.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.