Jeremy W. Sherman August 25, 2020 Use Flutter to deliver the same experience across multiple platforms Flutter is ideal when you want a c... Android Front-End iOS
Jeremy W. Sherman November 12, 2019 Default exports or named exports: Why not both? In NodeJS's CommonJS module system, a module could only export one object: the one assigned to ... Back-End Front-End Full-Stack Web
Jeremy W. Sherman February 18, 2019 TalkBack Crash Course TalkBack is Google's screen reader for Android devices. It's hard to understand accessibility issues without ex... Android
Jeremy W. Sherman December 3, 2018 When nullability lies: A cautionary tale When a Kotlin non-null property turns up null, you know something has gone subtly, yet terribly, ... Android
Jeremy W. Sherman October 15, 2018 React Native Is Native React Native apps are native apps. It’s a heck of a coup they’ve pulled off, and while I have my concer... Front-End Full-Stack Web
Jeremy W. Sherman June 25, 2018 Producing a CircleCI Test Summary with Fastlane The heart of Continuous Integration is running tests. Whenever a test fails, you want to k... iOS
Jeremy W. Sherman October 23, 2017 Growing a Code Review Culture Big Nerd Ranch esteems code review. We've seen it pay off time and again. It is core to our workflow and pro... Clients Leveling Up
Jeremy W. Sherman September 26, 2017 Write Better Code Using Kotlin’s Require, Check and Assert Codify your functions' assumptions and promises using ... Android
Jeremy W. Sherman August 16, 2017 Why Associated Type Requirements Become Generic Constraints Swift protocols can have associated types, which make... iOS