The iPhones 11 Pro and iPhone 11: ‘They Look and Feel Like a Single Camera With Multiple Zoom Levels’ →

September 18, 2019 · 13:31

John Gruber, on Daring Fireball:

I keep mentioning that the iPhone 11 Pro has a three-camera system and the iPhone 11 a dual-camera system. And I’ll mention that again. But what’s essential to understand is that you don’t need to know that the iPhone 11 camera systems consist of two or three discrete cameras. From the user’s perspective, they look and feel like a single camera with multiple zoom levels […]

This works for 720p and 1080p at frame rates up to 60 FPS, and for 4K at 24 and 30 FPS. The exception is 4K 60 FPS — when shooting 4K 60 FPS, once you start recording, you’re stuck with the lens you started with.

This is one of the main reasons I decided to upgrade from my XS to the 11 Pro and while I wish everything worked at 4K and 60 fps, it’s not that big of a deal.

Another bit of magic. There are two new options in Settings → Camera: “Photos Capture Outside the Frame” (off by default) and “Videos Capture Outside the Frame” (on by default). When these options are turned on, when you shoot with the 1x or 2x lenses (wide or telephoto), the Camera app will use the next widest lens to capture additional footage outside the frame of the lens you’re shooting with. In post, this allows you to rotate the photo or video — typically, to fix a crooked horizon — without cropping. This seems to be, unfortunately, a bit buggy in iOS 13.0, but when it works, it’s amazing. At some point when Apple has more confidence in this feature, I expect it to be on by default for both video and photos.

Now this is something which I am excited to test. I wonder if it’s already fixed in the betas of iOS 13.1.

The new SF Camera font is delightful. Literally no one is going to buy an iPhone 11 just to get a slightly more industrial-looking font in the Camera app, but it’s a nice bonus. Update: OK, OK, we all know there’s at least one person who might buy an iPhone 11 just to get the new SF Camera font.

I’m actually disappointed John didn’t go into greater detail on the new SF Camera font — I was secretly hoping it would have a whole section in his review.


The Design of Apple’s Credit Card →

April 9, 2019 · 13:30

Arun Venkatesan, on his blog:

I took a close look at the cardholder name and I noticed that it’s set in a new rounded version of the normal San Francisco font. For a few years, Apple has been using San Francisco Compact Rounded, a rounded version of the font used on the Apple Watch. This is the first time I have seen a rounded version of San Francisco though. The telltale sign is the lack of the flat sides that are most prominent in SF Compact’s lowercase a, e and o.

I haven’t yet compared SF Compact Rounded with SF Rounded myself, so I’ll trust Arun that they are indeed different, but I’m very curious how much further will the San Francisco family of fonts expand and how Apple will use them in the future.


One Space Between Each Sentence, They Said →

May 6, 2018 · 09:58

Avi Selk, writing for The Washington Post:

Ob viously, thereneed to be standards. Unless    you’re doing avant – garde po e try, or    something , you  can’tjustspacew ords ho w e v   e    r   y      o        u            want.     That would be insanity. Or at least,

obnoxious.

Enter three psychology researchers from Skidmore College, who decided it’s time for modern science to sort this out once and for all.

I’m still not convinced, especially since the test was conducted using a fixed-width font. The article is perfect though — go read it, spacing and all. It also has the perfect correction:

Note: An earlier version of this story published incorrectly because, seriously, putting two spaces in the headline broke the web code.

via @ania13


Back to Using the System Font Stack in CSS

June 5, 2017 · 10:20

After looking at a variety of options from Google Fonts — Open Sans, Source Sans Pro, and a few others — I decided to go back to the system font stack for a number of reasons. Performance is definitely my main metric, but the lack of interesting options on Google Fonts is another. I could use TypeKit or Cloud.typography, but Adobe decided not to include the former in their Creative Cloud Photography Plan and the latter is just too much for my needs (in terms of price too).

font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;

I believe I’m targeting every relevant platform. As far as I know, these are the current popular system font stacks in use:

WordPress:
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;

Medium:
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;

Ghost:
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;

Github:
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", /* Emojis*/ "Segoe UI Emoji", /* Emojis*/ "Segoe UI Symbol"; /* Emojis*/

I went with Ghost. Let me know if you find any bugs or anything else out of the ordinary.