Blog Posts

Recent posts

Angular - Proxy settings to avoid CORS

less than 1 minute read

Create a proxy.config.json 1 2 3 4 5 6 { "/api": { "target": "http://localhost:8080", "secure": false } } run ng serve with a configuration file...

Java - Read CSV file from a stream

less than 1 minute read

1 2 3 4 5 6 7 try (final CSVReader reader = new CSVReader(new BufferedReader(new InputStreamReader(inputStream)))) { String[] line = null; while ((li...

Java - ForkJoinPool

less than 1 minute read

Good explanation on ForkJoinPool in Java http://www.baeldung.com/java-fork-join