Kotlin: An Illustrated Guide

Kotlin: An Illustrated Guide

Przelew natychmiastowy

Przelew natychmiastowy w Santander Bank

Developer conferences

Developer conferences

Kompendium wiedzy o akumulatorach Li-Ion – 18650 i nie tylko

Kompendium wiedzy o akumulatorach Li-Ion – 18650 i nie tylko

How to shoot a SMB – or why we shoot the SMB the way we do

How to shoot a SMB – or why we shoot the SMB the way we do

How To Make A Scuba Diver’s Pigtail?

How To Make A Scuba Diver’s Pigtail?

Bare: sizing for stock drysuits

Sizing for Stock Drysuits

How to connect your double ender to your light head

How to connect your double ender to your light head

AI Commits

This CLI tool runs git diff to grab all your latest code changes, sends them to OpenAI’s GPT-3, then returns the AI generated commit message.

Fixing floating-point arithmetics with Kotlin

– https://blog.frankel.ch/fixing-floating-point-arithmetics-with-kotlin/ – https://www.linkedin.com/pulse/why-we-should-use-bigdecimal-instead-double-java-financial-ismail val a = 5.8.toBigDecimal() val b = 5.6.toBigDecimal() assertThat(a - b).isEqualTo(0.2.toBigDecimal()) or val a = BigDecimal("5.8") val b = BigDecimal("5.6") assertThat(a - b).isEqualTo(BigDecimal("0.2"))