Webmin is installed on the server that hosts this site and for the longest time I’ve been accessing it remotely through its default port at https://tech-otaku.com:10000
. Despite connections being encrypted through SSL and having two-factor authentication enabled in Webmin this still presents a security risk.
Securing Access to Webmin through an SSH Tunnel
Installing and Configuring WP-CLI on macOS
WP-CLI is the command-line interface for WordPress. It allows you to manage your WordPress site from the command line without using a web browser. I currently use WP-CLI to create and configure a version of this site to run in a local AMP environment on my Mac and – in conjunction with launchd – periodically change the posts that appear in the slider on this site’s home page.
(more…)Checking if a File Exists in iCloud from the Command Line
While moving selected local files and folders to iCloud I came across a folder on my Mac containing a large number of documents some of which appeared to be duplicates of those on iCloud. Before deciding which ones to move, I wanted to check each one to see if it already existed on iCloud.
(more…)Removing Entries from the Microsoft Office Apps Recent Files Lists in macOS
Every so often – usually around the time of a major new macOS release – I perform a clean install of the OS on my Macs. Along with restoring user data I tend to restore the configuration data of certain applications including the Microsoft Office applications. While this is a great timesaver, it can also cause some unexpected results. For example, the Recent file lists in Excel, PowerPoint and Word. Let’s use Word as an example.
(more…)Automator Action to Toggle the Display of Desktop Icons in macOS
It’s no secret that Desktop icons can be hidden in macOS, but unlike many user-configurable options neither System Preferences
nor the Finder
‘s preferences provide a way to toggle their display. It’s true that the Desktop display of drive icons and some device icons can be controlled through the Finder
, but in this context Desktop icons refer to all icons shown on the Desktop including those that represent folders, files or symbolic links.
Setting the Desktop Image in macOS Mojave From the Command Line
Prior to OS X Mavericks 10.9 a user’s Desktop image was stored in com.apple.desktop.plist
located in the ~/Library/Preferences/
folder and changed from the command line using:
defaults write com.apple.desktop Background '{default = {ImageFilePath = "/path/to/desktop/image.jpg";};}'
(more…)
Setting the Date and Time Format for the macOS Menu Bar Clock Using Terminal
In the Clock
tab of the Date & Time
pane of System Preferences
you can choose between displaying a digital or analog clock in the menu bar. For a digital clock there are five options that determine how the date and time are displayed:
Using Terminal to Find Your Mac’s Network Name
Your Mac’s network name forms part of its network address. If you want to share your Mac’s files and folders with other computers on your network you’ll need to know its network address so that those other computers can connect to it. This information is readily available in System Preferences, but this article looks at how to get your Mac’s network name using the command line.
(more…)Add a Recent or Favorites Folder to Your Dock Using the macOS Terminal
Type the query add recents dock terminal into any Internet search engine and most – if not all – relevant entries on the first results page will give the following code or a slight variation of it:
defaults write com.apple.dock persistent-others -array-add '{"tile-data" = {"list-type" = 1;}; "tile-type" = "recents-tile";}'; killall Dock
Most of these articles are from 2015 or earlier and the Mac OS has changed a lot since, but the code still appears to do exactly as advertised.
(more…)Where to Place Local Web Site Content When Using XAMPP on a Mac
A web site located on a local computer is accessed in a browser through the URL localhost and normally served by a local Apache server. There are two parts to this process. The first is the resolution of the name localhost to the IPv4 loopback address 127.0.0.1 which is configured in the local computer’s hosts file.
(more…)