The Wiert Corner – irregular stream of stuff

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

  • My badges

  • Twitter Updates

  • Pages

  • All categories

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

    Join 1,839 other subscribers

Archive for the ‘Apple’ Category

Interesting take by Florian Roth on Twitter: “First security application I install on … “” covering various platforms (both server and workstation) with tools that are easy and quick to install

Posted by jpluimers on 2025/05/26

[Wayback/Archive] Florian Roth on Twitter: “First security application I install on … macOS: LittleSnitch Linux Server: Fail2ban Linux Workstation: etckeeper Windows Workstation: GlassWire Windows Server: Sysmon — What are yours?”

Full thread at [Wayback/Archive] Thread by @cyb3rops on Thread Reader App

Some interesting responses to the original tweet, hence me saving it.

–jeroen

Posted in *nix, *nix-tools, Apple, BSD, FreeBSD, Mac OS X / OS X / MacOS, Power User, Windows | Leave a Comment »

Some links on the Apple IIc Plus (Apple IIc + on the boot screen) likely the rarest from the Apple II series

Posted by jpluimers on 2025/05/16

A while ago I bumped into this video about likely the rarest model in the Apple II series: the Apple IIc Plus:

[Wayback/Archive] Apple IIc Plus – the rarest and fastest Apple II! – YouTube

Returning to one of my favorite subjects – the Apple II – I decide to finally repair a broken Apple IIc Plus gifted to me a little more than a year ago. This machine was the final true hardware revision to the Apple II line, coming in 1988, and the last standalone machine in the line released. It was also the fastest, with a 4Mhz CPU (vs. 1Mhz in most other Apple II’s, and 2.6Mhz in the IIGS). But it was a problematic machine for Apple, with a concept that had been watered down to the point of, well, pointlessness.

The market wanted it even less than it wanted the original IIc (which was my first computer – the one in the thumbnail is my original machine). Still, it is an interesting computer for its accelerated CPU, and its somewhat anachronistic nature at the time of its launch.

It has a cool demo of Flight Simulator II demo mode (which back in those days crashing the plane – demo modes luckily improved from there :) at both 1 Mhz and 4 Mhz. It indeed is not smooth, but a lot faster.

The problem back in those days with acceleration is it would not just improve render speed, but also increase clock time speed. It made most games almost impossible to play in accelerated mode.

If I ever get one, I need to replace the 110V power supply with a 240V/110V auto-switching one as per [Wayback/Archive] IIc + 240v Power:

Read the rest of this entry »

Posted in 6502, Apple, Apple ][, History, Power User | Leave a Comment »

Epic Games v. Apple: Apple has never lost this hard before – YouTube

Posted by jpluimers on 2025/05/09

For my link archive: finally Apple had to broadly accept apps to allow other forms of purchases than through Apple itself.

[Wayback/Archive] Apple has never lost this hard before – YouTube

focussing around this quote from the court order (full PDF below):

Apple willfully chose not to comply with this Court’s Injunction. It did so with the express intent to create new anticompetitive barriers which would, by design and in effect, maintain a valued revenue stream; a revenue stream previously found to be anticompetitive. That it thought this Court would tolerate such insubordination was a gross miscalculation. As always, the cover- up made it worse. For this Court, there is no second bite at the apple.

More details in for instance:

--jeroen

Read the rest of this entry »

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

GitHub – walles/moar: Moar is a pager. It’s designed to just do the right thing without any configuration.

Posted by jpluimers on 2025/05/08

Having used less for 40+ years now, I wonder how moar measures up to it: [Wayback/Archive] GitHub – walles/moar: Moar is a pager. It’s designed to just do the right thing without any configuration.

Features I at least expect are in [Wayback/Archive] less: display the contents of a file in a terminal | less Commands | Man Pages | ManKier.

Via [Wayback/Archive] Johan Walles recently commenting on [Wayback/Archive] linux – How can I have less automatically decompress xz files like it did with gz files on my old SUSE distro? – Super User.

--jeroen

Posted in *nix, *nix-tools, Apple, BSD, Development, Go (golang), Mac, Mac OS X / OS X / MacOS, Power User, Software Development | Leave a Comment »

Exporting Chrome History (with the “new” configuration and state file structure), and Epoch dates on various systems

Posted by jpluimers on 2025/05/02

Quite a while ago, Chrome moved from a structure based on “Current Session“, “Current Tabs“, “Last Session” and “Last Tabs” into “Session_#################” and “Tabs_#################” stored in a “Sessions” folder (and similar migrations for other state and configuration files).

The numbers in the “Session_*” and “Tabs_*” files are time stamps of those sessions, for instance one needs to figure out what the “13310808970819630” in “Session_13310808970819630” and “Session_13310808970819630” means.

Lot’s of web-pages with tips and tricks around the old structures are still around, often surfacing high in Google Search results.

I was interested in a particular trick to export Google Chrome browsing history and had a hard time figuring out the easiest solution.

Read the rest of this entry »

Posted in Apple, Batch-Files, Chrome, Chrome, Database Development, Development, Google, JavaScript/ECMAScript, Mac OS X / OS X / MacOS, NirSoft, Polyglot, Power User, Scripting, SQLite, Web Browsers, Windows, Windows 10, Windows 11 | Tagged: | Leave a Comment »

Apple iPad dimensions – the complete list – Ebook Friendly

Posted by jpluimers on 2025/04/25

Reasonably complete list if iPad models and their sizes: [Wayback/Archive] Apple iPad dimensions – the complete list – Ebook Friendly

It is easier to read than lists here:

The reason for searching was that I contemplated about buying a large iPad to use as combination of dual-screen and note reading during music performance/practice.

TL;DR: Large models are iPad Pro 12.9″ (2015-now; 2018-now are still supported by iPadOS) and iPad Air 13″ (2024-now) which has a M2 processor (the same as the 2022 iPad Pro 12.9″)

Query [Wayback/Archive] ipad screen sizes history – Google Search

--jeroen

Posted in Apple, iOS, iPad, Power User | Leave a Comment »

How I Setup My Mac – Liam Beeton

Posted by jpluimers on 2025/04/18

Inspiration: [Wayback/Archive] How I Setup My Mac – Liam Beeton

Via

--jeroen

Posted in Apple, Apple Silicon, ARM Mac, M1 Mac, Mac, Mac OS X / OS X / MacOS, macOS 14 Sonoma, Power User | Leave a Comment »

Parallel hashing on MacOS

Posted by jpluimers on 2025/04/14

Now that I have had an Apple silicon for a while, which has enough cores to perform parallel work, this is how I calculated a bunch of hashed from a lot of large files:

  • find . -type f | xargs -P 0 -n 1 md5 -r
  • find . -type f | xargs -P 0 -n 1 shasum --algorithm 1
  • find . -type f | xargs -P 0 -n 1 shasum --algorithm 256

I contemplated about using GNU parallel, but that is not installed by default on MacOS and I was already familiar with xargs.

Argument meanings can be found at these locations:

Related:

Read the rest of this entry »

Posted in *nix, *nix-tools, Apple, Apple Silicon, ARM Mac, M1 Mac, Mac, Mac OS X / OS X / MacOS, Power User, xargs | Leave a Comment »

GitHub – PiSCSI/piscsi: PiSCSI allows a Raspberry Pi to function as emulated SCSI devices (hard disk, CD-ROM, and others) for vintage SCSI-based computers and devices. This is a fork of the RaSCSI project by GIMONS.

Posted by jpluimers on 2025/04/08

Cool (and available both for regular Raspberry Pi and Raspberry Pi Zero):

[Wayback/Archive] GitHub – PiSCSI/piscsi: PiSCSI allows a Raspberry Pi to function as emulated SCSI devices (hard disk, CD-ROM, and others) for vintage SCSI-based computers and devices. This is a fork of the RaSCSI project by GIMONS.

I wonder how it compares feature wise and performance wise to [Wayback/Archive] BlueSCSI (which is Raspberry Pi Pico based, see [Wayback/Archive] index – BlueSCSI v2 Documentation, and now has a [Wayback/Archive] BlueSCSI Wi-Fi Desk Accessory – joshua stein which is open source at [Wayback/Archive] jcs/wifi_da – BlueSCSI Wi-Fi Desk Accessory for classic Mac OS – AmendHub and important to for instance [Wayback/Archive] Adding Wi-Fi to the Macintosh Portable – joshua stein).

Via [Wayback/Archive] The RaSCSI is MAGIC for Old Macs (and Much More!) – YouTube

More links:

Read the rest of this entry »

Posted in Apple, Classic Macintosh, Development, Hardware Development, Hardware Interfacing, Macintosh SE/30, Power User, Raspberry Pi, Raspberry Pi Pico, Retrocomputing, RP2040, SCSI, Uncategorized | Leave a Comment »

How to use two or more monitors to M1, M2 or M3 MacBooks | Macworld

Posted by jpluimers on 2025/04/04

[Wayback/Archive] How to use two or more monitors to M1, M2 or M3 MacBooks | Macworld will likely hold for M4 based ones as well:

  • higher-end MacBooks with M1/M2/M3 Pro and Max chips support multiple external displays
  • get around Apple’s annoying M1/M2/M3 Mac single-display limitation via software and adapters

The solutions we explain here will also help M2 Pro and M3 Pro MacBook users extend to three external displays.

Recommended reading, despite the extra hardware and software you will likely need.

--jeroen

Posted in Apple Silicon, ARM Mac, M1 Mac, Mac, MacBook, Power User | Leave a Comment »