Avatar

elvith

elvith@feddit.de
Joined
23 posts • 580 comments
Direct message

Everyone besides Russia: “You should watch out, Russia is about to meddle with your elections.”

US: “Pfft, yeah, riight…”

permalink
report
parent
reply

Naja - eine der Lieblingstaktiken der AfD ist ja “moving the goal posts”. Ich glaub das wäre hier eher nervig Ü

permalink
report
parent
reply

2h 15mins?

Those are rookie numbers!

permalink
report
reply

Windows doesn’t have sudo (not yet, at least) and privileges work a bit different as even as an administrator, you may not have full rights.

To overcome that obstacle, you’d need to run a shell as an administrator (hold CTRL+Shift, then use the start menu entry or right-click it and select run as administrator).

Next obstacle: We have a separate drive for each partition, but no root folder.

If we assume we’re running on a laptop or PC with a single drive and a single partition*, then it’s just

In cmd.exe:

del /F /S C:\

In Powershell:

Remove-Item -Recurse -Force -Path C:\

When you want to delete all (mounted) partitions/drives, you need to iterate over them. (Note that’s from the top of my head, didn’t check the script if it works).

In cmd.exe:

REM Not gonna do that, I'm no masochist

In Powershell:

Get-PSDrive -PSProvider FileSystem | Foreach-Object {
    Remove-Item -Recurse -Force -Path "$($_.Name):\"
}

Done. Mounting additional partitions before that is left as an exercise for the reader.

*note that even a standard installation of windows creates 3 partitions. One for the bootloader, one for the recovery system and then the system drive. Only the latter is mounted and will be deleted by this. The other two will still be intact.

permalink
report
parent
reply

In theory there are unbeatable levels. With some updates Nintendo fixed glitches, hit boxes, etc. Usually, when you play a level that was uploaded on an older version of the game, you get the old behavior. But there was one update, which did not adhere to this, and which did cause some levels (designed with now fixed glitches) to be unbeatable now.

But this project isn’t about beating all levels, it’s about beating all uncleared levels. Since those glitch levels probably were beaten before the patch OR you might be able to play them on an older version of the game (if the server allows it), these shouldn’t be a huge problem.

permalink
report
parent
reply

Smork Alam! 🎶🎵

permalink
report
parent
reply
0 points

Manure, you have right.

permalink
report
parent
reply
0 points

*monday hall

permalink
report
parent
reply

Da hier “Versicherungen” genannt sind: Aus eigener Erfahrung nach einem Unfall mit RTW-Einsatz usw.: Die Krankenkasse hatte sehr viele Fragen und Infos zum Unfallgergang gefordert, da sie gerne alle Kosten dem Verursacher in Rechnung stellen wollten, sofern es rechtlich möglich ist.

Das wird nicht billig, wenn das vorsätzlich war…

permalink
report
parent
reply