Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.
I've been working with Apache Kafka for over 7 years. I inevitably find myself doing the same set of activities while I'm developing or working with someone else's system. Here's a set of Kafka productivity hacks for doing a few things way faster than you're probably doing them now. 🔥
| <script type="text/javascript"> | |
| var gesturesSetUp = false; | |
| var ua = navigator.userAgent.toLowerCase(); | |
| var isAndroid = ua.indexOf("android") > -1; | |
| document.addEventListener('textlayerrendered', function (e) { | |
| if (gesturesSetUp || e.detail.pageNumber !== PDFViewerApplication.page) { | |
| return; | |
| } |
| #!perl6 | |
| # | |
| use v6; | |
| my class HelloWorldFactory { | |
| subset NonEmpty of Str where .chars > 0; | |
| has NonEmpty $.greeting; | |
| has NonEmpty $.target; | |
| sub infix:<👋> { |