CINXE.COM
Michael Pollmeier
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Michael Pollmeier</title> <meta name="viewport" content="width=device-width"> <link href="/assets/css/style.css" rel="stylesheet" /> <!-- favicon code start, by https://favicon.io/favicon-generator --> <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> <link rel="manifest" href="/site.webmanifest"> <!-- favicon code end --> </head> <body> <div id="header-outer"> <header id="header"> <h1><a href="/">Michael Pollmeier ~ dev blog</a></h1> <nav> <ul> <li><a href="/">blog posts</a></li> <li><a href="/presentations">presentations</a></li> <li><a href="http://twitter.com/pollmeier">twitter</a></li> <li><a href="/feed.xml">rss</a></li> <li><a href="/about">about me</a></li> </ul> </nav> </header> </div> <div id="page"> <div id="content"> <div id="home"> <h1>Blog Posts</h1> <ul class="posts"> <li><a href="/2024/01/scala-extension-methods-precedence">Scala extension methods vs implicits - beware of precendence</a></li> <li><a href="/2020/01/14/scala-valueclass-allocations">Does my Scala Value Class really not get allocated?</a></li> <li><a href="/2019/04/09/understanding-jvm-soft-references-for-great-good-and-building-a-cache">Understanding JVM soft references for great good (and building a cache)</a></li> <li><a href="/2019/02/20/sbt-subprojects-tests-intellij">Working dir for tests between sbt and intellij for subprojects</a></li> <li><a href="/2018/12/10/checksum-files-scala">Calculating the checksum (hash/md5/sha) of directories in Scala</a></li> <li><a href="/2018/01/16/specialized-tinkergraph">Open sourcing our specialized TinkerGraph with 70% memory reduction and strict schema validation</a></li> <li><a href="/2016/12/01/scalameta-code-generation-tutorial">Introduction to code generation with scalameta</a></li> <li><a href="/2015/09/26/playframework-basic-auth">Http Basic Auth as a composable Action in Playframework</a></li> <li><a href="/2015/09/25/playframework-guice-di">Overriding dependencies in a test with playframework and guice</a></li> <li><a href="/2015/08/26/tag-scalatest-suite">Tag a whole ScalaTest suite (update for Java 8)</a></li> <li><a href="/2014/12/27/gremlin-scala-shortest-path">Calculating the shortest path with Gremlin-Scala</a></li> <li><a href="/2014/10/12/calling-java-8-functions-from-scala">Calling Java 8 functions from Scala</a></li> <li><a href="/2014/06/29/simple-dependency-injection-scala">Super simple dependency injection in Scala</a></li> <li><a href="/elasticsearch-case-study">Elasticsearch case study for realtime analytics</a></li> <li><a href="/execute-scala-futures-in-serial-one-after-the-other-non-blocking">Execute Scala Futures in serial one after the other (non-blocking)</a></li> <li><a href="/create-generic-scala-collections-with-canbuildfrom">Create generic Scala collections with CanBuildFrom</a></li> <li><a href="/akka-work-pulling-pattern">Akka Work Pulling Pattern to prevent mailbox overflow, throttle and distribute work</a></li> <li><a href="/scala-util-try-chain-to-handle-all-success-and-error-cases">scala.util.Try - chain to handle all success and error cases</a></li> <li><a href="/callback-lifter-and-exception-driven-development">Callback lifter and exception driven development</a></li> <li><a href="/akka-testkit-expectmsgallofignoreothers">Akka TestKit addition: expect some messages, ignore others</a></li> <li><a href="/akka-work-pulling-pattern-to-throttle-work">Akka work-pulling pattern to throttle work</a></li> <li><a href="/create-your-custom-scala-repl">Create your custom Scala REPL</a></li> <li><a href="/fun-with-scalas-new-reflection-api-2-10">Fun with Scala's new Reflection API (2.10)</a></li> <li><a href="/maven-skip-pgp-sign-process">Maven: skip GPG sign process</a></li> <li><a href="/selecting-top-k-items-from-a-list-efficiently-in-java-groovy">Selecting top k items from a list efficiently in Java / Groovy</a></li> <li><a href="/python-mock-how-to-assert-a-substring-of-logger-output">Python Mock: how to assert a substring of logger output</a></li> <li><a href="/eclipse-pydev-and-virtualenv">Eclipse, PyDev and virtualenv</a></li> <li><a href="/performance-testing-with-insights-into-jaxws-client-scalability">Performance testing with insights into JaxWS client scalability</a></li> </ul> </div> </div> </div> <script src="/assets/js/jquery.min.js"></script> <script src="/assets/js/jquery.mobilemenu.min.js"></script> <script> $(document).ready(function(){ $('#sidebar nav ul').mobileMenu({'topOptionText': 'Menu', 'prependTo': '#sidebar nav'}); }); </script> </body> </html>