Author: matt
-
PIP has been enabled on desktop Firefox
This is such a great usability improvement. https://support.mozilla.org/en-US/kb/about-picture-picture-firefox
-
Macbook Keyboards
The new 16″ macbook pro laptop was recently announced with a “new” keyboard. And by “New” apple basically means the old, good keyboard. I currently work on a 13″ with butterfly keys and had been using the laptop keyboard pretty much exclusively. However, due to some hand soreness I’ve been having, I decided to try…
-
iPhone 5s
This past week while on a trip we had a phone die which meant I needed to switch to an IPhone 5s. The surprising thing? It’s actually fine. The things that are annoying are no fault of the phone. The battery is old. It doesn’t switch networks on Google Fi. But other than that it…
-
Mac Bluetooth Quality
https://support.apple.com/en-us/HT208896 Huh, never knew this before. If you have an app open on your Mac that utilizes your mic audio quality from other apps over bluetooth will be reduced. In my case closing my IP phone app allowed firefox to playback music at a reasonable quality to my speakers.
-
Moving Apps
Mind Blown: It makes so much more sense, but it seems like there could be some kind of visual indication that this is the way to do it. Dragging to the edge is the worst and jiggling icons doesn’t tell you a lot. 12 years of testing smartphones and only now I find the right…
-
Add LL command to MAC OS
Ever want to have the ll command to view file permissions, ownership and other details in a terminal session. MacOS does not come with this command by default. It can be easily added though through an alias. sudo nano .bash_profile Add this line and then save your .bash_profile: alias ll=’ls -lG’
-
Convert String to Base64 in Visual Studio Code
I work with .eml files pretty often that have base64 encoded data in their body. By default base64 is not human readable so converting it quickly in my editor is handy. There’s a handy little plugin for Visual Studio Code called Encode Decode by Mitch Denny. After installing the plugin, select your base64 data in…
-
Display Date and Time of Single Day or Multi Day Events With Blade
I recently needed to display the date and time of a start and end date for a Laravel project. Up front I don’t know if the start and end date/time are on the same day or a different day. I was displaying the whole date twice but this looked clunky. So, to solve this problem…
-
Git changelog for particular line numbers
I often need to go spelunking through code that predates my work on the codebase. Sometime looking through the commit history for a large file can be rather overwhelming if there are lots of commits not related to the particular section of the file you are interested in. I recently discovered that git log has…
-
Open File With App From MacOS Terminal
Sometimes I like to open up a text file in a robust gui text editor on my mac while I am working in the terminal. Navigating to the same location in finder and then opening the file is just a pain. So after a little googling I discovered the open command. Here’s an example of when…