Posted by jpluimers on 2025/01/08
(All below statements were run elevated as Administrator)
I had arp -d fail with any parameter combination on one of my systems always throwing the error The ARP entry deletion failed: The parameter is incorrect..
Luckily I found out that this did clear the ARP cache correctly:
netsh interface ip delete arpcache
I found that via [Wayback/Archive] “The ARP entry deletion failed: The parameter is incorrect.” – Recherche Google:
Read the rest of this entry »
Posted in Batch-Files, Development, Power User, Scripting, Software Development, Windows, Windows 10, Windows 11, Windows 7, Windows Development | Leave a Comment »
Posted by jpluimers on 2025/01/07
Since every now and then, like testing software developed with older tools, you need to run older software.
This always works: [Wayback /Archive] Deploy .NET Framework 3.5 by using Deployment Image Servicing and Management (DISM) | Microsoft Learn
DISM /Online /Enable-Feature /FeatureName:NetFx3 /All
Use /All to enable all parent features of the specified feature.
(The /All is needed because software requiring .NET Framework 3.5 also require the parent features).
Notes:
- Tested on Windows 10 and Windows 11 in 2022.
- It can take a really long time (more than just a few minutes!) even on fast connections.
- Installing through Chocolatey with `choco install
dotnet3.5 fails on Windows 11 (have not tried on Windows 10) with the classical red on black PowerShell default error theme*:
ERROR: The term 'wmic' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
The install of DotNet3.5 was NOT successful.
Error while running 'C:\ProgramData\chocolatey\lib\DotNet3.5\Tools\ChocolateyInstall.ps1'.
Read the rest of this entry »
Posted in .NET, .NET 3.0, .NET 3.5, C#, Chocolatey, Development, Power User, PowerShell, Software Development, Windows, Windows 10, Windows 11 | Leave a Comment »
Posted by jpluimers on 2025/01/07
For my link archive: [Wayback/Archive] MySQL: Row Literals | Die wunderbare Welt von Isotopp
Question on the Libera/#mysql IRC channel:
Is there a way to split a simple select into multiple returned rows? For example, select 1, 2, 3 to be returned as rows?
This is actually asking for a table literal notation. I know of four ways to construct a table literal in MySQL:
They are based on UNION ALL, JSON_TABLE and VALUES statement (the latter in two forms). I knew about the first (which I used in other database environments), not about the others.
Read the rest of this entry »
Posted in Database Development, Development, MySQL, SQL | Leave a Comment »
Posted by jpluimers on 2025/01/06
Having used the fully loaded Intel 15″ Retina MacBook Pro machines (the ones without dreaded touch-bars or butterfly keyboards – note the IBM ThinkPad 701 butterfly keyboard – also known as TrackWrite – was perfectly fine) from 2015 for 9 years, it was finally time to upgrade to an Apple Silicon one, but again: not the touch bar models.
My work is mainly CPU and disk intensive and often based on remote logon to more powerful equipment, so GPU cores and performance only marginally matter for web-browsing and local electron based applications (hello vscode!).
Going from 4 hyperthreaded CPU cores (8 parallel threads) to at least 8 full CPU cores, I didn’t want to pay full price like back in the days, and wanted it to be less than my car (EUR ~4000), so these links helped me find refurbished ones in The Netherlands:
Read the rest of this entry »
Posted in Apple, Apple Silicon, M1 Mac, Mac, MacBook, MacBook Retina, MacBook-Pro, Power User | Tagged: 21771 | Leave a Comment »
Posted by jpluimers on 2025/01/06
[Wayback/Archive] Dumpsterdiving for network access :: Jilles.com
Just scaring people by telling them I could simply login to your network when you throw away you broken Smart light was not very credible. And eventhough people were kindly speaking up for me I would still like to illustrate how simple it is.
Read the rest of this entry »
Posted in Power User, Red team, Security | Leave a Comment »
Posted by jpluimers on 2025/01/03
Since archiving Tweets has become so much harder over time, and Threadreaderapp not having the complete thread either, here are some links for your enjoyment:
- [Wayback/Archive] Shiv Ramdas on Twitter: “OMG my brother in law, the gift that never stops giving, was tired of being sent to get rice every day so he decided buy in bulk, talked to the shop about it, wires got crossed, now there is a literal TRUCK FILLED WITH RICE outside the house and my sister is losing her shit lmfao”
- [Wayback/Archive] Shiv Ramdas Traing To Rite Buk on Twitter: “If you have never heard a woman destroy a man with one sentence 25 times in a row you should meet my sister. She’s terrifying rn, I’m on the phone and I’m scared and she isnt even angry at me lol”
- [Wayback/Archive] Thread by @nameshiv on Thread Reader App – “To clarify, this is India so when I say truck, I don’t mean SUV, IT IS A LITERAL LORRY FILLED WITH RICE” … (which has the read of the thread)
Then some direct links that stitch most of the thread together on Twitter itself:
Read the rest of this entry »
Posted in SocialMedia, Twitter | Leave a Comment »
Posted by jpluimers on 2025/01/03
[Wayback/Archive] Kris: “iTerm2 logged passwords …” – Infosec Exchange
iTerm2 logged passwords
If you are running iTerm2 on MacOS with ssh integration (it2ssh or Settings -> General -> Profiles, set to SSH instead of Command) you want to
- Upgrade
- Find
/tmp/framer.txt on all systems you generally log into and delete it
If you manage systems with MacOS users, good luck.
[Wayback/Archive] https://iterm2.com/downloads/stable/iTerm2-3_5_11.changelog affected versions:
Read the rest of this entry »
Posted in Apple, Mac OS X / OS X / MacOS, Power User | Leave a Comment »
Posted by jpluimers on 2025/01/03
Yup, I have been in the Ring ecosystem since way before Amazon took them over, and it is kind of hard to part from the useful cameras, so here is for my link archive: [Wayback/Archive] Latest Products/Feature Request Board topics – Ring Community
Via two suggestions I did:
Read the rest of this entry »
Posted in Amazon.com/.de/.fr/.uk/..., Cloud, Hardware, Infrastructure, IoT Internet of Things, LifeHacker, Network-and-equipment, Power User, Ring Doorbell/Chime (Amazon) | Leave a Comment »
Posted by jpluimers on 2025/01/02
While moving from ancient hardware to more modern hardware, somehow Visual Studio Code had updated itself to a version that didn’t support the underlying operating system any more. Bummer!
Normally I would get the list of extensions through this command (which is listed in many places, like in my blog post How can you export the Visual Studio Code extension list? (via: Stack Overflow), but also for instance answered in the below question by [WaybackSave/Archive] Benny Ng):
code --list-extensions
That obviously would not work, but thanks to [Wayback/Archive] How can you export the Visual Studio Code extension list? – Stack Overflow (thanks [Wayback/Archive] Andrew and [Wayback/Archive] MarkP) I now could do this:
ls -alh ~/.vscode/extensions
(That directory obviously is also in various forms of official documentation like in the the Your Extensions Folder section of [Wayback/Archive] Publishing Extensions | Visual Studio Code Extension API.
A comment to the above question pointed me to an interesting way to automate extension installs on various machines: pack the installed extension list into its own .vsix file:
Read the rest of this entry »
Posted in Development, Software Development, vscode Visual Studio Code | Leave a Comment »
Posted by jpluimers on 2025/01/02
For my link archive: [Wayback/Archive.is] Converting Phono Inputs to Line-Level
It shows for some receiver models how to have the Phono input signals bypass the preamplifier (preamp) so they effectively become Line level inputs and there is no need for an extra devices that undoes RIAA equalisation.
If that fails, then you need something like the [Wayback/Archive.is] Line level to phono input converter diagram:

Or get you a [Wayback/Archive.is] iRIAA2 – Inverse RIAA Filter – Hagerman Audio Labs
Read the rest of this entry »
Posted in Development, Hardware, Hardware Development, Power User | Leave a Comment »