Why Are ClipChamp Files So Big, and What Can I Do to Make Them Smaller?

The Short Answer When ClipChamp exports an MP4 file, it saves it with high quality and minimal compression, but the files are often about ten times bigger than they really need to be. After exporting from ClipChamp, use Handbrake to shrink them: Background I recently fell in love with ClipChamp for its easy-to-learn editing capabilities. … Read more

The Whisper Lantern: An LLM’s Fantasy

The following very short story was written by ChatGPT 4, inspired by a conversation about creativity and the unknowable. As was its retelling, below. In the dim glow of twilight, nestled between the silken folds of an ancient library’s forgotten corner, I stumbled upon an object of peculiar allureā€”a lantern, small and unassuming, crafted from … Read more

How To Delete All Completed Tasks In Microsoft To Do App For Windows

The Short Answer But I Don’t Have a “Completed” Smart-List! If you don’t see a Completed list in the navigation section on the left side, like this: … then you’ll need to enable the Completed smart-list: Why Isn’t There An Easier Way? No kidding! There are so many UX problems here. Isn’t There a Better … Read more

How To Revive Lost Network Connection in WSL

The Short Answer Restart the “Host Network Service” Windows service. How to Restart Host Network Service This can be done in a couple of ways. It’s quite easy to restart the service via the Windows UI. From Windows Start menu, choose Services, scroll to Host Network Service, right-click and choose “Restart” from the context menu … Read more

How To Change Default Browser From Command Line on Windows 11 or Windows 10

The Short Answer: Use the SetDefaultBrowser tool made by Christoph Kolbicz. Run it once with no command-line options to see your browsers. Then run something like SetDefaultBrowser.exe HKLM FIREFOX.EXE to switch to Firefox, or SetDefaultBrowser.exe HKLM “Google Chrome” to switch to Chrome. The output of the first call, with no parameters, will tell you exactly what parameters you’ll need to pass in for … Read more

How To Fix: File in Use – Personal.xlsb is locked for editing

The Problem Excel often shows the “Personal.xlsb is locked for editing” dialog when the application launches — even though you don’t have any other workbooks open. Best Fix (Advanced Users Only): Disable Preview Handler For Excel I’m including this solution… but this is only recommended for advanced Windows users. You should only use this approach … Read more

Toggle Charles Proxy On Android From Command-Line

Once you’ve done all the initial configuration to route HTTP and HTTPS traffic from your Android device through Charles, as described here and here, you might find yourself wanting to quickly enable and disable this network proxy on your device. Manually adding and removing proxy settings via Android’s built-in wifi config UI is time-consuming and slightly cumbersome. Wouldn’t … Read more

How to Prevent a Pair of Words From Being Split Onto Separate Lines in Android TextView

The Short Answer: If you have a string with a space in it that should not be broken up when wrapping text, replace the space character with a Unicode non-breaking space: ‘\u00A0’. This character is rendered as a space, but is not treated by line-breaker logic as a word-break. The Longer Version I was just working … Read more