Posted by jpluimers on 2021/12/10
It has been a while after my last post about me having cancer. No, I am not giving up. But I am having the regular fear of the upcoming checks: did the metastases return, or do I have the luck to outlive some 30% of my peer group.
The last metastases surgery has been slightly more than a year ago. A year from now, that percentage hopefully will be 50% and slowly increase over time until about 90% in some 9 years from now.
At year’s end, I will know for sure.
Below are some links on, mostly Dutch but with English abstract, articles about the mental side of having cancer, or having survived it for now.
Read the rest of this entry »
Posted in About, Cancer, LifeHacker, Personal, Power User, Rectum cancer | Leave a Comment »
Posted by jpluimers on 2026/05/13
[Wayback/Archive] Beeper — All your chats in one app
Via a friend that mentioned Beeper to me.
On the list to try out somewhere during the year.
It is open source; some more links:
Read the rest of this entry »
Posted in Chat, Development, Discord, DVCS - Distributed Version Control, Facebook, git, GoogleChat, IRC, LinkedIn, Power User, Signal messenger, SocialMedia, Software Development, Source Code Management, Telegram, Twitter, WhatsApp | Leave a Comment »
Posted by jpluimers on 2026/05/13
The Scoop repository lists this first time Scoop install command at [Wayback/Archive] ScoopInstaller/Scoop: A command-line installer for Windows. – installation:
Run the following command from a non-admin PowerShell to install scoop to its default location C:Users<YOUR USERNAME>scoop.
iwr -useb get.scoop.sh | iex
[Wayback/Archive] ScoopInstaller/Install: 📥 Next-generation Scoop (un)installer is very similar:
Run this command from a non-admin PowerShell to install scoop with default configuration, scoop will be install to C:Users<YOUR USERNAME>scoop.
irm get.scoop.sh | iex
# You can use proxies if you have network trouble in accessing GitHub, e.g.
irm get.scoop.sh -Proxy 'http://<ip:port>' | iex
The Scoop homepage at [Wayback/Archive] Scoop.sh is not much better:
Read the rest of this entry »
Posted in Batch-Files, CommandLine, Development, Power User, PowerShell, PowerShell, Scoop, Scripting, Software Development, Windows | Leave a Comment »
Posted by jpluimers on 2026/05/12
Take this cool example I extended from [Wayback/Archive] Thomas 🅰️🇨🇵 on Twitter: “#Typescript quizz What will be the value of result1 and result2 ?” which lacked alt-badge, so I [Wayback/Archive] responded with the image on the right that has alt-text.
Based on that, I added a bit of logging:
const a = undefined;
const result1 = a ?? 0 + 10;
const b = 100;
const result2 = b ?? 0 + 10;
console.log(result1);
console.log(result2);
Two questions:
- What is the output of both log lines?
Read the rest of this entry »
Posted in .NET, C#, Conference Topics, Conferences, Continuous Integration, Delphi, Development, Event, Java, Java Platform, JavaScript/ECMAScript, Maven, Scripting, Software Development, TypeScript | Leave a Comment »
Posted by jpluimers on 2026/05/11
ZeroTier looks interesting: [Wayback/Archive] ZeroTier | Global Area Networking.
Especially since:
- [Wayback/Archive] zerotier/ZeroTierOne: A Smart Ethernet Switch for Earth open source repository
- [Wayback/Archive] Pricing (Plan Basic: Free / ZeroTier Hosted Controller, 1 Admin, 25 Nodes, Unlimited Networks, Business SSO: n/a, Community Support)
- [Wayback/Archive] ZeroTier on MikroTik
MikroTik now joins Ubiquiti, Teltonika Networks, OpenWrt, and OPNsense on our list of supported 3rd party networking firmware and routers.
The first is unlike Tailscale.
Too bad it is not available as official pfSense package:
Via: [Wayback/Archive] The definitive Guide to Zerotier VPN and why it is “better” than Wireguard (Tutorial) – YouTube
Queries:
–jeroen
Read the rest of this entry »
Posted in Uncategorized | Leave a Comment »
Posted by jpluimers on 2026/05/08
Boy have I been living under a stone, I wish I had known Little Snitch 2 decades ago (:
Little Snitch – Wikipedia:
Little Snitch is a host-based application firewall for macOS. It can be used to monitor applications, preventing or permitting them to connect to attached networks through advanced rules. It is produced and maintained by the Austrian firm Objective Development Software GmbH.
At the time of writing, it was at version 5.x, and it was introduced early this century.
Site and other links:
Read the rest of this entry »
Posted in Apple, Mac, Mac OS X / OS X / MacOS, Power User | Leave a Comment »
Posted by jpluimers on 2026/05/07
A few years back this trick was shown to screw up %windir%\system32 [Wayback/Archive] Patrick Doyle on Twitter: “@SwiftOnSecurity @RoseAreaZero Delete any file in three easy steps: > takeown /F "example.ext" > icacls "example.ext" /grant "%USERNAME%":F > del "example.ext"“.
Like [Wayback/Archive] SwiftOnSecurity (@SwiftOnSecurity) / Twitter (see the long thread further below), I was expecting that Windows would either prevent you from doing this at all, or allow for easy recovery with System File Protection (now Source: Windows File Protection).
That didn’t prevent or recover it back then.
I wonder if that has been changed by now.
From the above Tweet:
Delete any file in three easy steps:
> takeown /F "example.ext"
> icacls "example.ext" /grant "%USERNAME%":F
> del "example.ext"
Read the rest of this entry »
Posted in Batch-Files, Development, Power User, Scripting, Security, Software Development, Windows, Windows 10, Windows 11, Windows Development | Leave a Comment »