I've been playing around with the accessibility keyboard in High Sierra and it is very interesting how much you can do with it. Even if you don't have a disability, it can be useful to be able to type when your keyboard isn't available.As I play around with it, I discover more and more it can do. I even made a big discovery while making is video!
So I got my iPhone X today, and decided to film opening the box for those interested. It took about 30 minutes to set up, most of which was the update to iOS 11.1.I'm very embarrassed by how bad this video looks. I don't do videos like this very often, and I swear the scene looked great in the iPhone 6 Plus screen that I was using to do the recording. But the contrast is just horrible, even after adjusting in Final Cut. Oh well. At least we can use this as a springboard for questions you may have about the iPhone X.
I played around with a JXA (JavaScript for Automation instead of AppleScript) script that searches for duplicate photos in your Photos library and marks them with a keyword. It turned out to be pretty simple. But it could be dangerous if you plan to use it to permanently deleted photos.Here is the script text: var Photos = Application("Photos"); Photos.includeStandardAdditions = true; var currentSelection = Photos.selection(); var photoDataList = []; for (var item of currentSelection) { var photoInfo = String(item.date())+" "+String(item.size())+" "+String(item.name()); var isDup = false; for(var i=0;i<photoDataList.length;i++) { if (photoDataList[i] == photoInfo) { isDup = true; break; } } if (isDup) { var keys = item.keywords(); if (keys == null) keys = []; item.keywords = keys.concat(["duplicate"]); } else { photoDataList.push(photoInfo); } }
An experiment. I look at the latest questions in Apple Discussion and give you the off-the-top-of-my-head ideas and solutions. So, covering a variety of topics including: wireless charing through iPhone cases, iTunes 12.7 app redirect problems, Numbers SUMIF, how to get iOS app updates unstuck, etc. (I apologize for the audio as I didn't realize I was recording using the wrong mic).
OBS has to be one of the coolest pieces of free Mac software out there. I'm not using it for anything in particular, but I thought I could show it off here anyway. It allows you to combine media inputs (camera, screen, audio, etc) and stream live or save to a file. Kind of like a TV studio. It is very easy to use. I did use it in the past to do some live Facebook streaming. I could, if I wanted, record the MacMost episodes with it.
I like trying out new iPhone keyboards. Anything that can give me the potential to type faster on that little screen. Google has a free one called Gboard. It allows you to swipe-type. See the video for a demo. I also like that you can search for emoji. I can never remember which emoji to use, so being able to search for keywords to narrow it down helps. There are some other useful features as well.


