I hereby claim:
- I am dklotz on github.
- I am dklotz (https://keybase.io/dklotz) on keybase.
- I have a public key ASDpgdzQAt6O49JRJRTFjvVWafCzMgQakZCm0iaitzEdcQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| public class TestMain { | |
| public static void main(String[] args) { | |
| // What does this program print when run? | |
| // \u000d System.out.println("Hello "); | |
| System.out.println("World!"); | |
| } | |
| } |
| package com.fileee.experiments.vertx; | |
| import io.vertx.core.Vertx; | |
| import io.vertx.core.VertxOptions; | |
| import io.vertx.core.eventbus.DeliveryOptions; | |
| import io.vertx.core.eventbus.EventBus; | |
| import io.vertx.core.eventbus.Message; | |
| import io.vertx.spi.cluster.hazelcast.HazelcastClusterManager; | |
| public class InterceptorReproducer { |
| import java.util.function.BiConsumer; | |
| import java.util.function.Consumer; | |
| import static java.lang.String.format; | |
| /** | |
| * Demo of some common pitfalls with class.getSimpleName() and class.getCanonicalName(). | |
| * @author David Klotz | |
| */ | |
| public class MyClassNames { |
| import java.nio.file.Files; | |
| import java.nio.file.Paths; | |
| import com.google.common.base.CharMatcher; | |
| import com.google.common.base.Splitter; | |
| // ... | |
| public class FindDups { | |
| // ... | |
| public static void main(String[] args) throws Exception { | |
| String filePath = "/Users/david/Documents/fileee/es_queries/de-lemma-utf8.txt"; |