#PowerShell #SystemsEngineering #IT #DataPrivacy
🔗 https://griff.systems/socials
Statements are my own.
E.g. if I want an LLM I'll run Ollama in a container, install Gemini CLI, etc.
But I do not want AI baked into my operating system.
E.g. if I want an LLM I'll run Ollama in a container, install Gemini CLI, etc.
But I do not want AI baked into my operating system.
Objects are cool.
Objects are cool.
Get-FileHash -Path "C:\path\to\file" -Algorithm SHA256
```
Or I think in the GUI if you right-click the file and go to the Details tab you can view it there, but I can't remember if that's completely accurate.
Get-FileHash -Path "C:\path\to\file" -Algorithm SHA256
```
Or I think in the GUI if you right-click the file and go to the Details tab you can view it there, but I can't remember if that's completely accurate.
And the PlayStation 5 runs Orbis OS, based on FreeBSD not Linux 😉 though a PlayStation running something other than Orbis OS is definitely a cool thought.
And the PlayStation 5 runs Orbis OS, based on FreeBSD not Linux 😉 though a PlayStation running something other than Orbis OS is definitely a cool thought.
Isn't it great how anyone just do basically whatever they want with their computers?
Pretty cool timeline we live in.
Isn't it great how anyone just do basically whatever they want with their computers?
Pretty cool timeline we live in.
```powershell
[System.IO.Compression.ZipFile]::ExtractToDirectory($path, $destPath)
```
This took 22s, which was another slight improvement.
```powershell
[System.IO.Compression.ZipFile]::ExtractToDirectory($path, $destPath)
```
This took 22s, which was another slight improvement.
```powershell
$progressPreference = 'SilentlyContinue'
Expand-Archive -Path $path -DestinationPath $destPath
$progressPreference = 'Continue'
```
This took around 25s -- much faster! This is where the bulk of time is wasted.
```powershell
$progressPreference = 'SilentlyContinue'
Expand-Archive -Path $path -DestinationPath $destPath
$progressPreference = 'Continue'
```
This took around 25s -- much faster! This is where the bulk of time is wasted.
```powershell
Expand-Archive -Path $path -DestinationPath $destPath
```
It took around 1m 8s.
```powershell
Expand-Archive -Path $path -DestinationPath $destPath
```
It took around 1m 8s.