develwoutacause’s avatardevelwoutacause’s Twitter Archive—№ 158

  1. #TypeScript style: const app = startApp(); * May refuse to start app and return null. * startApp() has all the power. const app = startApp()!; * Result is demanded non-null. * Programmer asserts themselves and bends reality to their will. * App knows it damn-well better start