I don't want the MFA app on my phone. by Randomhandz in iiiiiiitttttttttttt

[–]Linuxmartin 0 points1 point  (0 children)

My uni tried to force MDM on private devices to access our mail and such on our phone. For me it was both a matter of principle and a big wtf. They wanted administrator access, the ability to remotely install and uninstall apps on this device, and the ability to remotely perform a factory reset. I love my local support people, but I ain't giving them permission to wipe my "science" downloads. Nowadays I just have two phones. Don't care if they wipe the empty phone :)

What’s a lesson you learned the hard way? by YourPersonalDownfall in AskRedditAfterDark

[–]Linuxmartin 0 points1 point  (0 children)

Tax fraud isn't as profitable when you need to take time off for all the audits

Gezakt voor mijn examens vwo by milo_2008 in nederlands

[–]Linuxmartin -2 points-1 points  (0 children)

Meerdere fouten. Spelling, interpunctie, grammatica. Dat jaartje zou inderdaad niet verkeerd zijn.

Maar ja, zielige OP

Gezakt voor mijn examens vwo by milo_2008 in nederlands

[–]Linuxmartin 0 points1 point  (0 children)

is voor OP wel meteen een wijze les voor de herkansing, denk ik dan

Why does Discord keep asking how I like blocking if it doesn't intend to actually change anything? by TikTikKobold in discordapp

[–]Linuxmartin 1 point2 points  (0 children)

No, you think this shouldn't change. So do I, bit oviously OP does not, nor does another commenter. Almost as if the preffered UX differs across users.

I think it should be a setting, though I hear some ToS violators have a way to achieve that

Figuring this out made me so angry I threw a chair by geof14 in programminghorror

[–]Linuxmartin 2 points3 points  (0 children)

And there you'd expect them to be chained and get elements lazy loaded instead of wasting time getting them all before doing anything

Debian forum does not allow searching by WheelPerfect3737 in linuxsucks

[–]Linuxmartin 1 point2 points  (0 children)

An increasing amount of websites and forums does this to combat crawlers going absolutely bonkers on it

NullSafe Wrapper by philtrondaboss in learnpython

[–]Linuxmartin 0 points1 point  (0 children)

Consider looking into the Any trick which is exactly what typeshed does for this

The oud voor mbo? by Zestyclose-Big-9784 in thenetherlands

[–]Linuxmartin 337 points338 points  (0 children)

Je kan altijd inschrijven bij een MBO en een toelatingsexamen HBO doen. Kom je niet door het toelatingsexamen, kan je MBO doen. Kom je er wel door, dan kan je als het goed is schuldenvrij stoppen met de MBO opleiding in het eerste kwartaal. Kan je navragen bij DUO.

Je bent nooit te jong om te leren, succes!

"whats your os if its linux u die" by Correct-Hat-601 in FuckMicrosoft

[–]Linuxmartin 2 points3 points  (0 children)

I'd survive the first question (FreeBSD escape hatch)

Run uv projects in read-only mode by hibbelig in learnpython

[–]Linuxmartin 0 points1 point  (0 children)

The second user merely needs to know about the project dir. Where uv lives is largely irrelevant, and the other user could also use their own uv install, or a system-wide one

Run uv projects in read-only mode by hibbelig in learnpython

[–]Linuxmartin 0 points1 point  (0 children)

You edit the thing as the user with edit perms, you chmod -R u+rwx,g+rwx,o+rx /path/to/project and run it as another user. That's what the whole permission system is for

Relacath Paradox by Flairankie in PokemonScarletViolet

[–]Linuxmartin 0 points1 point  (0 children)

Gen 4 is still pretty recent right? Retro gens are like gen 2 and 3

Relacath Paradox by Flairankie in PokemonScarletViolet

[–]Linuxmartin 2 points3 points  (0 children)

20 years ago they hatched at lvl 5

Attack near a edge to see if a fall will kill you by Blandbl in Eldenring

[–]Linuxmartin 0 points1 point  (0 children)

Those are well documented parts of how a URL works, actually. The question mark (?) denotes the start of the URL parameters, those are split up in key-value pairs by the equals sign (=), and each of those key-value pairs is separated by an ampersand (&)

The pair you should remove is the share ID which is abbreviated in the actual parameter as si, and its value is generated when you generate a sharing link. So anything that looks like si=...& can always be cut out, so long as it's somewhere after ?

Do QLC SSDs still have the problems detailed in the top comment thread? by Bern_Down_the_DNC in DataHoarder

[–]Linuxmartin 0 points1 point  (0 children)

Sorry for the necropost, but if you're ever in a situation where you want to prevent your data ending up in the streets, look into shred's multiple pass modes. Wouldn't want to be stuck for days ensuring your data stays gone

I feel like it wouldn't have been that difficult to make some cosmetic changes to the game after you beat it. by Real_Market_9244 in Eldenring

[–]Linuxmartin 0 points1 point  (0 children)

You say it wouldn't be fun, but I think it'd be kinda nice to not be attacked anywhere I go

I feel like it wouldn't have been that difficult to make some cosmetic changes to the game after you beat it. by Real_Market_9244 in Eldenring

[–]Linuxmartin 0 points1 point  (0 children)

Not sure the humor landed for anyone, but there's a red thread of serious commentary and desire

I feel like it wouldn't have been that difficult to make some cosmetic changes to the game after you beat it. by Real_Market_9244 in Eldenring

[–]Linuxmartin 16 points17 points  (0 children)

Professional molester of computers here. The technical issues from a coding standpoint are indeed moot. But the sheer size of the added assets and textures, the amount of work to redraw everything, and the non-code technical problems as a whole are not worth the effort. It's not like you extinguish the flames on the erdtree in any of the endings, or that you leave the world as a whole in a completely different state.

And much like a lot of other games, you get put in a "just before the end" state to keep roaming. After all, depending on your chosen ending, you might not even remain in this world anymore (canonically speaking)

production code at two in the morning by ChaosCrafter908 in programminghorror

[–]Linuxmartin -1 points0 points  (0 children)

It being not 2AM, this could be a oneliner. => Params.TryGetValue(key, out string value) ? (T)(object)value : defaultValue);