now on substack
First issue of The Grumpy Engineer is live. No hype, no mercy. Subscribe if you like your tech unfiltered. https://thegrumpyengineer.substack.com
First issue of The Grumpy Engineer is live. No hype, no mercy. Subscribe if you like your tech unfiltered. https://thegrumpyengineer.substack.com
From a Web Developer’s Perspective I am primarily an iOS user, but at home, I also use Android devices (such as tablets, Fire TV,
Recently, I was reviewing the API calls of DeepSeek. Right away, I noticed that everything aligns directly with OpenAI counterparts.
I’m pleased to introduce a small project I’ve been working on—a Chrome extension that lets you quickly check Bitcoin prices
I’ve been moving away from Google, Yandex, and DuckDuckGo lately. Perplexity not only provides better answers most of the time,
Just released the first public version of my Icinga Chrome Extension (ICE). In the beginning I developed it for my
#!/usr/bin/perl use strict; use Data::Dumper; sub swap{ @_[ 0, 1 ] = @_[ 1, 0 ]; } sub
$stopingServices=Get-Service | Where-Object {$_.status -eq “stoping”} $startingServices=Get-Service | Where-Object {$_.status -eq “starting”} $runningServices=Get-Service | Where-Object {$_.status -eq “running”} $stoppedServices=Get-Service |
Get-ItemProperty -Path Registry::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation
Open Powershell as an Administrator on the web server, then run: $apmem= gwmi -ComputerName localhost -NS ‘root\WebAdministration’ -class ‘WorkerProcess’ |