Macos


Quick & Easy Virtual Box LAMP Stack Setup

Sept. 11, 2020 |  Categories:  macOS   Linux   Web Development  

  1. Download and install Virtual Box:
    1. https://www.virtualbox.org
  2. Navigate to https://www.turnkeylinux.org/lamp and download the latest version of the virtual machine file.
    1. At the time of this writing:
      1. https://www.turnkeylinux.org/download?file=turnkey-lamp-16.0-buster-amd64.ova
  3. Open Virtual Box and click import. Select the file you just downloade
...

SSHFS Configuration

Sept. 11, 2020 |  Categories:  macOS   Linux   Productivity  

SSHFS allows us to mount a remote filesystem and work with it locally. This means that instead of using the terminal to work with files on the server, we can simply mount the server’s filesystem with SSHFS and then use our local file explorer to navigate and manipulate files as though they existed on our laptop or desktop.

  1. Install sshfs:
    1. Linux: ```sudo apt-get install sshfs
...

Converting Video and Removing Timestamps

Sept. 7, 2020 |  Categories:  macOS   Python   Scripting  

Recently, I found myself needing to send a bunch of old videos to a friend. These videos were stored on my old MacBook, so they were all in .mov format. My friend doesn't have a Mac, so I decided to convert the videos before sending them off. Additionally, these files had been moved from Mac to Windows to Linux and back to Windows. Somewhere in between moves the filenames had been changed to inclu

...