The Wiert Corner – irregular stream of stuff

Jeroen W. Pluimers on .NET, C#, Delphi, databases, and personal interests

  • My badges

  • Twitter Updates

  • My Flickr Stream

  • Pages

  • All categories

  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 1,854 other subscribers

Archive for the ‘Power User’ Category

Firefox shift right-click forces context menu (via Frederik Braun). It reminds me of Windows 11 using this to show the full Windows 10 context menu

Posted by jpluimers on 2023/12/11

[Wayback/Archive] Frederik Braun �: “Annoyed that a website is doin…” – security.plumbing

Annoyed that a website is doing something custom on right-click?
Did you expect the browser’s context menu (Back, Reload, Save Page As, View Source etc.)?

Just hold the ⇧Shift key while clicking and Firefox will show the built-in context menu.

It reminded me of Windows 11 first crippling the context menu, then allowing shift right-click to show the Windows 10 context menu:

Read the rest of this entry »

Posted in Firefox, Power User, Web Browsers, Windows, Windows 10, Windows 11 | Leave a Comment »

Reminder to self: mid-term solution for replacing Ubiquiti access points

Posted by jpluimers on 2023/12/11

Last year, after an already long sequence of doing stupid things, Ubiquiti sued Brian Krebs.

For many this was a reason to think about what to replace their Ubiquiti.

My cloud key had already died, I never installed the USG router, so this is the reminder to see if anything has come up to replace the Unifi access points that is easy to manage in a self-hosted way are powered over ethernet, do the same seamless handover and cooperative WiFi antenna management.

Some links from back then:

Read the rest of this entry »

Posted in Cloud Key, Ethernet, Hardware, MikroTik, Network-and-equipment, pfSense, Power User, routers, Ubiquiti, Unifi-Ubiquiti, USG Ubiquiti Unifi Security Gateway, WiFi | Leave a Comment »

Yet another reason not to use SMS based 2FA: those phone numbers get leaked or sold as Daniel Cuthbert mentioned on Twitter: “@LinkedIn did indeed sell my 2FA phone number”

Posted by jpluimers on 2023/12/06

Many recommend against using SMS for 2FA because of security reasons (SIM swapping, sniffing, etc), but there is another privacy+security reason: these 2FA phone numbers get leaked or sold as [Wayback/Archive] Daniel Cuthbert (@dcuthbert) found out the hard way last year:

–jeroen

Posted in 2FA/MFA, Authentication, GDPR/DS-GVO/AVG, Power User, Privacy, Security | Leave a Comment »

The Wayback Machine Chrome extension got a big update. Every journalist & researcher should install it ASAP! Faster URL archiving w/ customization, access to yr personal archive, and it tells you if the page you’re on has already been archived, etc.

Posted by jpluimers on 2023/12/05

Last year I learned about [Wayback/Archive] Wayback Machine – Chrome Web Store via a Twitter thread starting at

[Wayback/Archive] Craig Silverman on Twitter: “The Wayback Machine Chrome extension got a big update. Every journalist & researcher should install it ASAP! Faster URL archiving w/ customization, access to yr personal archive, and it tells you if the page you’re on has already been archived, etc. #osint”

I saved the full thread at [Wayback/Archive] Thread by @CraigSilverman on Thread Reader App:

Read the rest of this entry »

Posted in Bookmarklet, Chrome, Internet, InternetArchive, LifeHacker, OSINT - Open Source Intelligence, Power User, Uncategorized, WayBack machine, Web Browsers | Leave a Comment »

notes on updating DNS info with bind DNS

Posted by jpluimers on 2023/12/01

Steps:

  1. Edit the DNS zone file in /var/lib/named/master
  2. Make sure you updated the SOA serial number
  3. rcnamed restart
  4. Watch /var/lib/named/log/general for errors (you can even increase logging, for instance by reading [Wayback/Archive] this serverfault entry and editing /etc/named.d/logging) and – on my system – these other logs for the actual zone transfers:
    • /var/lib/named/log/in-xfer.log for incoming zone transfers on the secondary server
    • /var/lib/named/log/notify.log for notifications of zone transfers on the primary and secondary servers
    • /var/lib/named/log/out-xfer.log for outgoing zone transfers on the primary server
  5. Check on [Wayback/Archive] mxtoolbox.com/SuperTool.aspx?action=dns:example.org&run=toolpage# to see if the SOA serials have been replicated (one day I will write a bookmarklet for this)

Alternatives for the last step are sites like these:

Read the rest of this entry »

Posted in DNS, Internet, Power User | Leave a Comment »

25 years ago today – Windows NT and VMS: The Rest of the Story | ITPro

Posted by jpluimers on 2023/11/30

https://www.itprotoday.com/compute-engines/windows-nt-and-vms-rest-story

Via

Posted in History, Power User | Leave a Comment »

Google: inactive account policies

Posted by jpluimers on 2023/11/28

Reminder to self to yearly check all my Google accounts because of [Wayback/Archive] Updating our inactive account policies

we are updating our inactivity policy for Google Accounts to 2 years across our products. Starting later this year, if a Google Account has not been used or signed into for at least 2 years, we may delete the account and its contents – including content within Google Workspace (Gmail, Docs, Drive, Meet, Calendar), YouTube and Google Photos.
The policy only applies to personal Google Accounts, and will not affect accounts for organizations like schools or businesses. This update aligns our policy with industry standards around retention and account deletion and also limits the amount of time Google retains your unused personal information.
We are going to roll this out slowly and carefully, with plenty of notice:
  • While the policy takes effect today, it will not immediately impact users with an inactive account — the earliest we will begin deleting accounts is December 2023.
  • We will take a phased approach, starting with accounts that were created and never used again.
  • Before deleting an account, we will send multiple notifications over the months leading up to deletion, to both the account email address and the recovery email (if one has been provided).

Read the rest of this entry »

Posted in Google, GoogleDrive, Power User, SocialMedia, YouTube | Leave a Comment »

Glue 3D printed parts – Chris Bensen on Twitter: “@geerlingguy It depends. I often times use hot glue. Super glue is great. Epoxy is better. Jbweld is even better. You can even heat the two parts and melt them together. Bolts also work. Rubber band. Velcro’s strap.”

Posted by jpluimers on 2023/11/24

Various way to keep 3D printed parts together: [Wayback/Archive] Chris Bensen on Twitter: “@geerlingguy It depends. I often times use hot glue. Super glue is great. Epoxy is better. Jbweld is even better. You can even heat the two parts and melt them together. Bolts also work. Rubber band. Velcro’s strap.” / Twitter

–jeroen

Posted in 3D printing, LifeHacker, Power User | Leave a Comment »

javascript – Chrome debugging – break on next click event – Stack Overflow

Posted by jpluimers on 2023/11/23

I wish I had known this ages ago: [Wayback/Archive] javascript – Chrome debugging – break on next click event – Stack Overflow (thanks [Wayback/Archive] D.R. for asking and [Wayback/Archive] Konrad Dzwinel for answering):

What you are looking for are [Wayback/Archive] ‘Event Listener Breakpoints‘ on the Sources tab. These breakpoints are triggered whenever any event listener, that listens for chosen event, is fired. You will find them in the Sources tab. In your case, expand ‘Mouse’ category and choose ‘Click’.

Read the rest of this entry »

Posted in Chrome, Chrome, Development, Google, HTML, HTML5, JavaScript/ECMAScript, Power User, Scripting, Software Development, Web Browsers, Web Development | Leave a Comment »

Derk Runhaar 🩺 on Twitter: “Huisartsen slaan terug met bureaucratie: we kunnen de aanvragende instantie niet helpen aan een schriftelijke verklaring zonder dat deze instantie vooraf deze schriftelijke verklaring invult. (Via @DokterRins)” / Twitter

Posted by jpluimers on 2023/11/21

Vorig jaar kwam er een licht ironische tweet langs met plaatjes van een verklaring voor paarse-krokodil-organisaties: [Wayback/Archive] Derk Runhaar 🩺 on Twitter: “Huisartsen slaan terug met bureaucratie: we kunnen de aanvragende instantie niet helpen aan een schriftelijke verklaring zonder dat deze instantie vooraf deze schriftelijke verklaring invult. (Via @DokterRins) “

Omdat het soms toch handig kan zijn een vergelijkbaar formulier naar een bureaucratische moloch te kunnen opsturen hier de tekst van onderstaande plaatjes:

Read the rest of this entry »

Posted in Health, LifeHacker, Power User | Leave a Comment »