Meandering Thoughts #52

Anyone job searching knows a quality, well-written CV gives you the best chance of surviving the initial cull of applicants; conversely, misspellings and grammatical mistakes allow those hiring to quickly…

Maintainable Code #1

This code snippet (FirJvmStaticChecker.kt:72) caught my eye while digging into Kotlin codebase: if ( container !is FirClassSymbol || container.classKind != ClassKind.OBJECT || !container.isCompanion() && containerIsAnonymous ) { ... } else…