elvith

joined 1 year ago
[–] [email protected] 28 points 7 months ago

Woah, that just turned my whole view of this image upside down, thanks!

[–] [email protected] 38 points 7 months ago* (last edited 7 months ago)

Yeah, basically you have three options:

  1. Create and train your own LLM. This is hard and needs a huge amount of training data, hardware,...
  2. Use one of the available models, e.g. GPT-4. Give it a special prompt with instructions and a pile of data to get fine tuned with. That's way easier, but you need good training data and it's still a medium to hard task.
  3. Do variant 2, but don't fine-tune the model and just provide a system prompt.
[–] [email protected] 13 points 7 months ago (1 children)

* up to unlimited hugs, terms and conditions apply, includes a fair use policy, power users may have additional fees applied

[–] [email protected] 29 points 7 months ago (1 children)

Aperture Science.
We do what we must
Because we can.
For the good of all of us.
Except the ones who are dead.

[–] [email protected] 1 points 7 months ago

*as police, shoot the black person in the head

FTFY

[–] [email protected] 25 points 7 months ago

Can't decide which one is more relevant - the $5 wrench hack, or any sort of blackmailing.

XKCD 538 - Security

XKCD 416 - Zealous Autoconfig

[–] [email protected] 27 points 7 months ago

Mein 45 jähriger Kollege:

  • Baut Lego
  • "Zocken wir heute abend ... im Koop?"
  • "mir ist langweilig, sollen wir fangen/verstecken spielen?"
  • ...

Ich lieb ihn dafür Ü

[–] [email protected] 76 points 7 months ago (3 children)

Das solltest du lieber nicht Andy Grote Glocke hängen…

[–] [email protected] 30 points 7 months ago

Wenn Sie ... vom Hauptbahnhof in München ... mit zehn Minuten, ohne, dass Sie beim Dealer noch einchecken müssen, dann starten Sie im Grunde genommen am Flughafen ... am ... am Hauptbahnhof in München starten Sie Ihren Trip. Zehn Minuten. Schauen Sie sich mal die großen Flughäfen an, wenn Sie in Heathrow in London oder sonst wo, meine se ... Charles de Gaulle äh in Frankreich oder in ...äh... in ... in...äh...in Rom.

Wenn Sie sich mal die Entfernungen ansehen, wenn Sie Frankfurt sich ansehen, dann werden Sie feststellen, dass zehn Minuten... Sie jederzeit locker in Frankfurt brauchen, um ihren Dealer zu finden. Wenn Sie vom Flug ... vom ... vom Hauptbahnhof starten - Sie steigen in den Hauptbahnhof ein, Sie fahren mit den Drogen in zehn Minuten an den Flughafen in ... an den Flughafen Franz Josef Strauß.

Dann starten Sie praktisch hier am Hauptbahnhof in München. Das bedeutet natürlich, dass der Hauptbahnhof im Grunde genommen näher an Bayern ... an die bayerischen Städte heranwächst, weil das ja klar ist, weil auf dem Hauptbahnhof viele Koks-Linien aus Bayern zusammenlaufen."

[–] [email protected] 2 points 8 months ago

2h 15mins?

Those are rookie numbers!

[–] [email protected] 8 points 8 months ago

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.

view more: ‹ prev next ›