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"))

Kotlin difference between Iterable and Sequence

https://kotlinlang.org/docs/sequences.html#sequence-processing-example

Nie dane nam było ratować “Heweliusza” – relacja z pokładu Mi-14PŁ

Nie dane nam było ratować “Heweliusza” – relacja z pokładu Mi-14PŁ

Helios – verifiable online elections

Helios offers verifiable online elections. Helios elections are: – private: no one knows how you voted. – verifiable: each voter gets a tracking number. – proven: Helios is open-source, vetted by top-tier experts, and in use by major organizations.

Nurkowanie – webinaria i ciekawe spotkania

Webinaria nurkowe – spotkania z ciekawymi ludźmi

The Human Diver Blog

The Human Diver Blog

Human Factor in Diving Conference 2021

This playlist contains all of the videos from the 2021 HF in Diving Conference which was held online 24-25 September 2021.

Running mc (midnight commander) under su on Mojave/Catalina/Big Sur/Monterey

https://apple.stackexchange.com/questions/340414/running-mc-midnight-commander-under-su-on-mojave-catalina-big-sur-monterey sudo dscl . -change /Users/root UserShell /bin/sh /bin/bash

Java Architecture for XML Binding

The Java™ Architecture for XML Binding (JAXB) provides an API and tools that automate the mapping between XML documents and Java objects.