
Completely impractical but with a delightfully retro output, this Game Boy Camera to FaceTime bridge is really rather neat.
Completely impractical but with a delightfully retro output, this Game Boy Camera to FaceTime bridge is really rather neat.
The iPhone 15 Pro in it’s fundamentally miserable set of colours.
Apple’s European DSA Recipients of Services Report (Archive.org) turned up in my RSS feed and it has some quite shockingly low numbers! Whilst personally I prefer a real book over an e-book, I was very surprised to find that Apple has less than 1 million monthly e-book purchasers across the entire EU! And the tvOS and watchOS user base feels incredibly low as well!
Observed with MacOS 12.4/Xcode 13.4.1/Swift 5
There are quite a lot of tutorials out there covering the basics of running external executables from within Swift and, with very little effort, it’s quite easy to throw together something like this…
import Foundation
let wrappedUname = Process()
wrappedUname.executableURL = URL(fileURLWithPath: "/usr/bin/uname")
wrappedUname.arguments = ["-v"]
let unameOutputPipe = Pipe()
let unameErrorPipe = Pipe()
wrappedUname.standardOutput = unameOutputPipe
wrappedUname.standardError = unameErrorPipe
do{
try wrappedUname.run()
} catch {
print("Unexpected error: \(error).")
}
wrappedUname.waitUntilExit()
let unameOutput = String(decoding: unameOutputPipe.fileHandleForReading.readDataToEndOfFile(), as: UTF8.self)
let unameError = String(decoding: unameOutputPipe.fileHandleForReading.readDataToEndOfFile(), as: UTF8.self)
print("Output: " + unameOutput)
print("Error: " + unameError)
Continue reading With 30 minutes to prepare and another 25 minutes to actually perform this mere point update (12.3 > 12.4), what – exactly – is a relatively modern Macbook Pro that’s capable of of writing to it’s boot disk at 2.2GB/s+ doing when it upgrades?
As it’s less than a month to the virtual WWDC, it’s time for an Apple/WWDC wish list.
On the MacOS-next side of things:
On the iOS side:
Hardware wise:
Not in a million years but I still want:
The (Unofficial) Apple Archive is a newly launched collection of historic Apple media and video.
It must have been a tremendous amount of work collect and catalogue and, for me, the most interesting years are 2004 and 2005 – the years that lead me to purchase my first Mac (and yes, I did buy into PPC after the intel transition was announced!). I doubt it’ll last – Apple’s lawyers must be itching to write takedown notices – but while it’s there it’s an interesting place to poke around.
I still have that old first machine somewhere and I should dig it out; last time I checked (perhaps 5 years ago) it seemed to run ok. I do hope it’s still in something of a functional state.
Huzzah! NetNewsWire – the first RSS reader that I ever really used in anger – is back as a modernised and updated open source project! A lack of external sync services marks it out as still quite far from a usable initial release, but, as soon as some of these are added I shall look at moving away from the moribund Reeder and back to NNW as my desktop RSS reader of choice.
Now all we need is for Google to retask the now defunct Google+ team to resurrecting Google Reader and we can all start RSS’ing like it’s 2007 again! After all, without Google+ (or a similar replacement), there is no need for Google to try and kill off the open web in favour of their own walled garden.
(And for anyone searching; the new NetNewsWire agent string is “NetNewsWire (RSS Reader; https://ranchero.com/netnewswire/)”)
A 512 Pixels article (and video) on Clarus the Dogcow; Apple’s unofficial mascot from back when computers were still fun and not just second cousin to your fridge.
512 pixels also does us the favour of covering the history of the Dogcow in actual human readable text – each character lovingly rendered in quickly skimable prose. After all, sometimes you’d rather just deal with the topic on hand than listening to someone else speak.
So June should bring us this year’s WWDC with all the usual chintz and glitz that we’ve come to expect. This summer, however, one thing I would like to see in IOS 13 would be a form of flicker reduction for slow motion videos. The video below – a short piece of some rain on a wet platform – is a prime example of this; a dull video of raindrops on standing water is reduced, thanks to overhead artificial lighting, to a headache-inducing mess of flickering images.
Will no one rid me of these troublesome flickers?