The work I did on my car earlier this summer has clearly helped my gas mileage. I had been getting around 28 mpg beforehand, but the first full tank afterward I got 34.8 mpg.
Continue reading post "#3507"Toby's Log page 19
Swap file for composer out of memory problems
PHP’s defacto package manager, composer, has long required large amounts of memory to do updates for larger projects, often more than servers or virtual machines have. The script will die with an out of memory error, or more recently, the simple message “Killed”, and do no work in these situations. The normal procedure is to develop locally, deploy local lock file (composer.lock
) to the server, and run composer install
instead of update
. But I’ve recently moved to doing most of my development in VMs, so I have had to work around this problem to get things installed or updated. A swap file is the solution for Linux machines provided in the official docs and expanded in a StackOverflow answer.
Unprivileged Homebrew install, 2021 edition
On my new MacBook, I’ve been isolating responsibilities into separate user accounts. This includes an unprivileged “manager” account for installing most global third-party software, and a few development accounts for different purposes. I use Homebrew to install some dev related software, but my old Homebrew setup didn’t work with this conceptually, nor with the more locked down privileges of newer Mac OS versions. I didn’t want to give Homebrew or its packages admin or root privileges, so I have adapted Homebrew’s untar anywhere method to install a globally available Homebrew using the unprivileged manager account, only requiring a privileged account briefly. I’ve also used untar anywhere for a per-account Homebrew install to allow each dev account to have custom versions of any desired packages, with no privileged account required.
Continue reading post "Unprivileged Homebrew install, 2021 edition"jQuery AJAX and multipart form handling
I recently had need to submit a web form with file fields via AJAX. The application uses jQuery and was already submitting forms just fine without file fields using the .serialize()
method to pass data to a jQuery.ajax()
call. That didn’t seem to handle the file fields, though. Searching the internet, I found a solution using the browser built in FormData
object.
As the final larger repair on my car, I got the exhaust repaired.
Continue reading post "#3487"Firefox: Weird rendering with high contrast mode
I figured out why Firefox 91+ seemed to break some CSS rendering for me (as I blogged about a few weeks back): high contrast mode. I’ve used the accessibility setting “Increase Contrast” on Mac OS for some time to make it easier to see some interface elements. Apparently, via Firefox 91 release notes, “Firefox now automatically enables High Contrast Mode when ‘Increase Contrast’ is checked on MacOS”.
Continue reading post "Firefox: Weird rendering with high contrast mode"Impreza brake job of 2020
I replaced the brake pads, and the front calipers and rotors on my car this weekend. It ended up being a much longer and more tiring project than I thought, with some problems to deal with, but I made it. I’m glad I was able to with my health situation. I did struggle at times and thought I wouldn’t be able to make it, but I pushed on and did. I’m thankful my dad helped with much of it. My car is going and stopping much better now.
Continue reading post "Impreza brake job of 2020"I spent $900 to get my car’s AC running again.
Continue reading post "#3473"Atom (text editor) lost a bunch of unsaved work I had in it.
Continue reading post "#3471"Purchase: New laptop, MacBook Air
I’ve made another new laptop purchase in the past couple months: I bought a refurbished 2020 MacBook Air from Apple.com. It has a 10th gen i3 Intel processor, 8GB of RAM, and 256GB of storage. I bought it to replace my struggling 11 year old MacBook. I bought a Lenovo Yoga 7i, but was struggling to get comfortable with it for my web development work. I made the call to get the Mac so I could directly migrate both my work computer user and my personal computer users, with the plan to use it for development and use the Yoga for other stuff.
Continue reading post "Purchase: New laptop, MacBook Air"