Building a Real-Time Streaming ETL Pipeline in 20 Minutes with Kafka Streams API

https://www.confluent.io/blog/building-real-time-streaming-etl-pipeline-20-minutes/

git rebase – scalanie wielu commitow do jednego przed mergem

http://yarpo.pl/2015/10/12/git-rebase-scalanie-wielu-commitow-do-jednego-przed-mergem/

“Groovy SDK is not configured” with IntelliJ + Homebrew Groov

https://medium.com/@gsaslis/groovy-sdk-is-not-configured-with-intellij-homebrew-groovy-49c6153ff0c1 I installed Groovy with Homebrew ( brew install groovy ) and that means that the path for my Groovy SDK lies in: /usr/local/opt/groovy/libexec.

Correlation IDs in Scala using Monix

https://blog.softwaremill.com/correlation-ids-in-scala-using-monix-3aa11783db81

DEF CON 26 – Dennis Giese – Having fun with IoT: Reverse Engineering and Hacking of Xiaomi IoT

https://www.youtube.com/watch?v=DHsqb2poGII

IntelliJ IDEA: Find in Path behaves strange. It looks always for the same code. Is it a bug?

https://intellij-support.jetbrains.com/hc/en-us/community/posts/360001332020-Find-in-Path-behaves-strange-It-looks-always-for-the-same-code-Is-it-a-bug-

Richardson Maturity Model

steps toward the glory of REST

Git Merge vs. Rebase: What’s the Diff?

https://hackernoon.com/git-merge-vs-rebase-whats-the-diff-76413c117333

Bitcoin – Block Explorer

You can search for things like… Address , Transaction , Block , or Hash

Bash/sh – difference between && and ;

https://stackoverflow.com/questions/6152659/bash-sh-difference-between-and If previous command failed with ; the second one will run. But with && the second one will not run. This is a “lazy” logical “AND” operand between operations.