endlesstalk.org

Dylan, to memes in I DONT WANT TO WATCH MY LITTLE PONY,,, AHHHHH!!!!

My dad would throw on football then put painters tape over the IR receiver on the TV so my mom wouldn’t come by and change the channel.

Zink, to memes in Relatable!
@Zink@pawb.social avatar

All facilitated on the watch you just took off

knobbysideup, to memes in I DONT WANT TO WATCH MY LITTLE PONY,,, AHHHHH!!!!

Weak. You can easily jam IR by holding a button on another remote. No need to stand there with your hand over it.

Pons_Aelius, (edited ) to memes in Is this photoshopped or is there really a country where the stop sign is green?

According to wikkipedia:

Blue and green stop signs are sometimes used on private property in Hawaii.

But they only have a picture of a blue one and not a green.

https://en.wikipedia.org/wiki/File:Blue_stop_sign_-_hawaii_-_oct_2015.jpg

So my guess is photoshop.

Tb0n3,

If it’s private property it could be anything. Maybe it’s a golf course or something plant related. Maybe it’s somewhere plant or tree related. Maybe it’s just camouflage to keep the visual noise down.

takeda,

Fixed link: https://en.wikipedia.org/wiki/File:Blue_stop_sign_-_hawaii_-_oct_2015.jpg

How did you get those back slashes there? I thought it was only happening in reddit.

Pons_Aelius, (edited )

Your fixed link and mine look exactly the same here on kbin. Both link to the image correctly.

So I'm not sure where the error lies.

Kbin does not like to link to URLs that end in a filename.

EG: https://en.wikipedia.org/wiki/File:Blue_stop_sign_-_hawaii_-_oct_2015.jpg

It ignores the link text [Blue Stop Sign] completely and just posts the link.

CoderKat,

files.catbox.moe/g9ulrf.jpg

It’s likely a kbin bug (or an app if you used one to make the comment), since the slashes are there even on the website directly.

Pazuzu,

your link shows a \ before each underscore in the visible text for me in both comments, like this https://en.wikipedia.org/wiki/File:Blue_stop_sign_-_hawaii_-_oct_2015.jpg and hovering or clicking the link replaces that \ with %5C, so the entire thing tries linking to https://en.wikipedia.org/wiki/File:Blue%5C_stop%5C_sign%5C_-%5C_hawaii%5C_-%5C_oct%5C_2015.jpg. clicking ‘source’ on those comments shows just the \ before each underscore

no idea what’s causing it, super weird to have the same bug messing with links that reddit does

elmicha,

The underscore is used to underline text in Markdown. If you want to display a real underscore like this: _, you have to escape it with a backslash. Some clients apparently interpret this rule even in plain links, and some don’t. If we use real Markdown links this should not happen.

Iron_Lynx,

As you put it, the web version renders & includes the backslashes, causing your link to break on lemmy.world, running the website itself in Firefox on Windows 10.

Thorry84,

Your fixed link is broken for me on Jerboa

Live2day,

On sync, his fixed one was fixed and the first one was broken

Iron_Lynx,

Perhaps this would not happen if you insist on https://en.wikipedia.org/wiki/File:Blue_stop_sign_-_hawaii_-_oct_2015.jpg. Sure, it takes a little bit, but since the rendering of the underscores is put after including them in a hyperlink, I suspect going the extra mile makes it more reliable.

Either way, on web (Firefox in Windows 10), the fixed link works as desired, while the original is borked. And the hyperlink behind text one… Well, you’ll see.

SlutbunWalla,

I lived in Hawai’i for three years and remember blue stop signs, but not green. Green road signs in Hawai’i would fail to stand out for 3/4 of the year and defeat their purpose.

It could possibly be a stop sign from Ko Olina on O’ahu, but I never spent enough time there to actually absorb the color of their road signs.

lugal,

We have it similarly in Germany but I’m not sure about the colors

Ultraviolet,

Also, for those wondering about the inevitable followup question, a stop sign has to be placed by a local or state government to be enforceable, and is required to follow the exact standard specifications. Tickets have been thrown out due to stop signs being a slightly wrong shade of red, so blue or green are definitely out.

terminhell, to memes in Funtastic 😅

To this day, I still don’t understand what takes windows updates so dam long. Not sure about Mac, but Linux takes, what, 5 minutes at most if you’ve gone a while.

uis,
@uis@lemmy.world avatar

Very true for mainstream distros, but there’s more: Linux updates in the background. No matter how long it takes(if you for example use Gentoo), there is zero downtime. And with kexec your system can be its own bootloader and can do insane stuff like starting new kernel without re-running POST, which is on servers is very important(because they have shitty BIOS that takes ages to boot).

nixcamic,

Sometimes I won’t use Tumbleweed for a few months then boot it up and it will update every package on the system (literally full reinstall of the os and all installed software) faster than Windows can search for updates. What the heck?

Espi,

This is a byproduct of one of the largest and more ignored differences between windows and linux. The fact that Linux let’s you modify files while they are open whereas windows doesn’t.

This means that you can update a linux system by just replacing the files with the new ones while it runs. On the other side, Windows can’t modify its own files while it runs, so instead it has a second entire OS to update itself, and requires a reboot to unload all the files and boot from the updater without locking windows files.

ultra,

Silverblue also does this, yet updates are really quick

Espi,

No, silverblue does all the work before you restart the computer, and the actual work doesn’t involve replacing the OS itself but basically downloading some files and just checking a different git branch when booting.

o11c,

ReplaceFile exists to get everyone else’s semantics though?

vacuumflower,

In some sense this would even seem an advantage of Windows. (I know it’s the fundamental reason for many hangs and freezes, but the idea that a file is a lockable resource doesn’t seem that bad.)

uis,
@uis@lemmy.world avatar

There is flock/fcntl for you. But locking is bad for performance too, especially in multithreaded enviroments.

vacuumflower,

Yes, the thing is - it’s a choice.

uis,
@uis@lemmy.world avatar

Then there is cooperative locking for you. It becomes a choice.

Espi,

I think files being locked is really intuitive, which greatly helps new users. Allowing files to be modified or deleted while they are open makes it really easy to shoot yourself in the foot. For example in the video of Linus switching to Linux he was uncompressing a file and tried to open it while it was still uncompressing, which failed since the file wasn’t complete. He didn’t understand why the file wasnt uncompressing correctly. That can’t happen on Windows, since the file being uncompressed would be locked.

I think there should be a ‘lockable mode’, and for distributions oriented to new users the home directory should be mounted like that.

uis,
@uis@lemmy.world avatar

There IS ‘lockable mode’ since System V era. It is extensively used by package managers and similar stuff.

Deleting file does not actually deletes it from disk until last program closes it. And there are ways to open file such that changes to file will not be seen in program.

Espi,

Yeah with “lockable mode” I mean locking by default instead of requiring every program to specifically call for locking.

It would probably break lots of software, but only using such mode for the users home (or maybe even specific Downloads/documents/desktop/etc folders within the home directory) could reduce the impact.

[Edit] wait I think there is whole fs locking mode on mounting, with the “mand” option, going to test it.

brb,

Can’t remember a windows update taking longer than 5 minutes. And even if it did take that long, you can just press “update and shutdown” when you stop using the pc. Windows has a lot of problems but this isn’t one of them.

Catsrules,

A lot of it happens in the backgound. It is at least a 15-30 minute process from start to finish. Very annoying if you have an older computer as it is sucks up a lot of resources updating during the background updates.

I normally don’t ever shutdown or restart my desktop. I like leaving program and stuff running so I can continue what I am doing when I get back. With an update I have to close out all of my shit and then shutdown and open everything back up.

I also swear when you have updates pending on a restart the computer doesn’t run very well.

brb,

I see now. I have pretty beefy computer so I haven’t noticed that. I also shutdown my computer every night so it’s still not problem for me.

terminhell,

Another issue is that windows will eventually force a reboot on you with pending updates. You can postpone it for a while, but eventually you’ll be in the middle of something and it will just do it anyways.

pirat, (edited )

This is, in some regards, similar to rape…

Edit: to clarify,

Another issue is that windows a predatory person will eventually force a reboot on rape you with pending updates upknocking. You can sometimes postpone it for a while, but eventually you’ll be in the middle of something and it they will just do it anyways.

Hopefully, we’ll agree that rape is much worse, but the underlying principle is the same: some entity abuses something you own - your body/property. Since you’re the owner, you exclusively should be in control.

Unfortunately, it can sometimes be necessary to leave an abusive partner/OS. This can be challenging if you “need” one but they’re all evil and dominating. M$ is not abusing its users as violently as some people are abusing their partners. However, their subtle abuse of their users takes place on a much bigger scale. Not only in this (pretty unimportant) regard, but also by e.g. unwanted telemetry/tracking. Luckily, non-abusive partners of the Linux family are becoming easier to find and date, and many are already flirting with one or more of them.

terminhell,

Bruh what

samtoxie,

You heard him, its RAPE!

pirat,

I’ve clarified my answer.

ShouldIHaveFun,

If your computer is always running it may never take longer than five minutes. But try to leave your computer shut down for a month or more. Then updates accumulate and it can take really long to make them.

nickwitha_k,

Lack of proper package management is my assumption.

notenoughbutter,

I hear it takes a long time on Macs too!

thankfully I don’t have this problem on my Gentoo

vacuumflower,

I’d be using Gentoo if not for installing software being something you have to plan for.

RickyRigatoni,
@RickyRigatoni@lemmy.ml avatar

“Sorry boss I can’t come into work today, I need to install important security updates on my fifteen arch and/or gentoo desktops and servers.”

vacuumflower,

Exactly.

sebsch,

They have no packages but do a full patch of the system data. Since this is the most complex approach and almost everything can go wrong down to the core they spend most of the time with checking and cleaning state.

herrvogel,

Mac updates are less frequent but take longer. They also restart the machine. One difference though is that my mac never took it upon itself to start an update without asking my opinion.

DmMacniel,

/laughs in company enforced updates/

First they nag you. Then they nag even more. Then they blur out everything making your system unusable unless you hit update.

Cysioland,
@Cysioland@lemmygrad.ml avatar

One company I worked at had a weird customization for both Windows and Dell UEFI updates, and this shit was super intrusive, basically you could skip it only once, and then it’d count down to the update even if you’re on an important Teams meeting

kamenlady,
@kamenlady@lemmy.world avatar

And it’s all done with style, looking good while closing in on ya

Edit: you seem to have a pair of spare / /

May i borrow them?

I somehow lost mine.

¯_(ツ)_¯

DmMacniel,

Sure. Knock yourself out

\ \ \ / / /

kamenlady,
@kamenlady@lemmy.world avatar

Thanks - now i’m complete

¯_(ツ)_/¯

vox,
@vox@sopuli.xyz avatar

and on linux you can upgrade while the system is running and then reboot

Blackmist,

The Nintendo Switch is the gold standard of updates for me.

Lime66,

Mac updates are usually at least a GB in my experience, they take a while

moosetwin, to memes in Funtastic 😅
@moosetwin@lemmy.dbzer0.com avatar

what does windows updates have to do with WSL

whofearsthenight, (edited )

WSL exists on a Windows system which means you’re still subject to Microsoft’s rather insane update practices.

0x2d,

linux: sudo pacman -Syyu/sudo apt update/whatever your distro uses

windows: updates whenever the hell it feels like

whofearsthenight,

See also ->

Linux: you need to update some core system component? Don’t worry, we’ll keep right on running until you decide to reboot.

Windows: notepad.exe has an update, we’re rebooting in .3s I hope you can save fuckin quick bro

absGeekNZ,
@absGeekNZ@lemmy.nz avatar

Linux: hey dude, you should probably restart…I mean it’s been months.

Windows: so imma just gonna nuke your work, ok cool.

SaladevX,

I just type “yay”

Astaroth,

same

AdamBomb, to memes in Funtastic 😅

Lately WSL has become unresponsive and unkillable every time I wake my work laptop from sleep, so now I have to shut it down every day instead. Sucks.

HurlingDurling, to memes in The only thing worse than this is when your boss says it on a Friday afternoon.

Headphones are great. You can’t work extra when you can’t hear

satans_crackpipe, to memes in Funtastic 😅

Microsoft really doesn’t want Linux running on bare metal.

intrepid,

Back when Microsoft started showing interest in and contributing to Linux, I knew that they were up to something no good like this. But honestly, anyone who thinks that WSL running inside a very abusive Windows environment is an alternative to true Linux/BSD experience, is frankly clueless. They deserve everything MS subjects them to.

InputZero,

I tried WSL for a week to give it a fair shake. It sucked just horrible all around. The worst part is that it left behind reginfo and other crap I’m too afraid of trying to remove from fear of borking my windows install. Yeah I can reinstall it but I’m lazy.

doctorcrimson, to memes in Funtastic 😅

Honestly incredible that this issue has persisted in OEM versions for decades but seems to be progressively getting worse instead of better, now affecting even LTSC copies (for people too stupid to remember to turn automatic updates off). Windows, if you take hours to update a machine twice a week then you’re making important equipment inoperable during that time. Please fix that, or you will lose market share even faster than you inevitably will.

Holzkohlen,

Last week an update broke my moms mandatory TPM nonsense module thingy. Like bro, this is a laptop that ships with win11 preinstalled and an update breaks your preconfigured system? I can’t even comprehend. Like how the heck are casual users supposed to deal with that?

MonkderZweite, to memes in The only thing worse than this is when your boss says it on a Friday afternoon.

I don’t work on friday. 0_0

Selmafudd, (edited ) to memes in Funtastic 😅

Look at those eyes, this guy is peaking

RoyaltyInTraining, to memes in Funtastic 😅
@RoyaltyInTraining@lemmy.world avatar

WSL is just a weird and slow VM. Still beats C++ development with visual studio tho.

Gallardo994,

Well there’s msys64/mingw for clang/gcc anyway. Fuck VS.

MonkderZweite, to memes in Funtastic 😅

Wow, that one is old.

dauerstaender, to memes in Funtastic 😅

Embrace. Extend. Extinguish.

Holzkohlen,

They can try to extinguish over my dead body.

intrepid,

Do you know that there is a Linux port of DirectX that runs only with WSL?

  • All
  • Subscribed
  • Moderated
  • Favorites
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #

    Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 18878464 bytes) in /var/www/kbin/kbin/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php on line 171

    Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10502144 bytes) in /var/www/kbin/kbin/vendor/symfony/error-handler/Resources/views/logs.html.php on line 40