1954

Thoughts, stories and ideas.

2023-01-29から1日間の記事一覧

KafkaStreams outer join semantics change in 3.1.0

Before 3.1.0, KafkaStream's stream-to-stream outer join used to produce a bit counterintuitive output. When we have stream s1, s2 with 10 seconds window, s1.leftJoin(s2) produces below output before 3.1.0: refs: kstream-kstream-join in 3.0…

Access raw clipboard PNG image data in Electron (macOS)

Electron provides the API to get clipboard data via clipboard.readImage. However, I found it doesn't preserve original image info so some information may drop. Notably, pHYs metadata in PNG. The problem arises when we take a screenshot in …