The popularity of JSON is due in large part to its use of universal data structures such as objects and arrays that are supported in one form or another by the majority of programming languages. This post looks at the basic structure of JSON-encoded data, how that structure relates to Python data structures and using Python to reliably access JSON-encoded data.
Manually Granting Applications Full Disk Access in macOS Catalina
Since the release of macOS Mojave, applications have required authorisation to access your personal data and locations including the ~/Documents
and ~/Downloads
directories.
Authorisation requests are routinely handled by macOS when an application requiring access is first launched. Occasionally, an application may need to be authorised by manually granting it access.
Determining which Interpreter Parses a Shell Script in macOS
The first line of a shell script – beginning #!
– is called a shebang and typically determines which interpreter parses the script’s contents. This is not always the case and on occasion it may be helpful to know which interpreter is being used.
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 temporarily disable the WordPress Google Authenticator plugin, create and configure a version of this site to run in a local AMP environment on my Mac and periodically change the posts that appear in the slider on this site’s home page.
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.
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.
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";};}'
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:
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.
Recent Comments