SvenWoltmann
Java Scalability and Performance Specialist – Freelancer – Trainer – Author of HappyCoders.eu
HappyCoders.euBerlin, Germany
Pinned Repositories
advent-of-code-2022
Advent of Code 2022 – Object-Oriented Solutions in Java: https://www.happycoders.eu/algorithms/advent-of-code-2022/
binary-tree
Source Code for HappyCoders.eu article series on tree data structures (binary tree, binary search tree, AVL tree, red-black tree).
color-thief-java
Grabs the dominant color or a representative color palette from an image. A very fast Java port of Lokesh Dhakar's JavaScript version.
filechannel-bytebuffer-memory-mapped-io-locks
Demos for writing and reading files with FileChannel and ByteArray. Tests for write speed with RandomAccessFile, FileChannel, heap buffer, native buffer, memory-mapped buffer, and FileOutputStream.
hexagonal-architecture-java
This repository contains a sample Java REST application implemented according to hexagonal architecture.
o-notation-and-time-complexity
Code examples demonstrating the complexity classes O(1), O(log n), O(n), O(n log n), O(n²).
pathfinding
Source code for the HappyCoders.eu articles on pathfinding and shortest path algorithms (Dijkstra, A*, Bellman-Ford, Floyd-Warshall).
sorting-algorithms-ultimate-guide
Sorting algorithm source codes + ultimate test to compare the performance of all algorithms. For my HappyCoders.eu article.
structured-concurrency
Demo code showing how to use Java's StructuredTaskScope
virtual-threads
Demo code showing how to use Java's virtual threads.
SvenWoltmann's Repositories
SvenWoltmann/hexagonal-architecture-java
This repository contains a sample Java REST application implemented according to hexagonal architecture.
SvenWoltmann/pathfinding
Source code for the HappyCoders.eu articles on pathfinding and shortest path algorithms (Dijkstra, A*, Bellman-Ford, Floyd-Warshall).
SvenWoltmann/binary-tree
Source Code for HappyCoders.eu article series on tree data structures (binary tree, binary search tree, AVL tree, red-black tree).
SvenWoltmann/sorting-algorithms-ultimate-guide
Sorting algorithm source codes + ultimate test to compare the performance of all algorithms. For my HappyCoders.eu article.
SvenWoltmann/o-notation-and-time-complexity
Code examples demonstrating the complexity classes O(1), O(log n), O(n), O(n log n), O(n²).
SvenWoltmann/advent-of-code-2022
Advent of Code 2022 – Object-Oriented Solutions in Java: https://www.happycoders.eu/algorithms/advent-of-code-2022/
SvenWoltmann/structured-concurrency
Demo code showing how to use Java's StructuredTaskScope
SvenWoltmann/filechannel-bytebuffer-memory-mapped-io-locks
Demos for writing and reading files with FileChannel and ByteArray. Tests for write speed with RandomAccessFile, FileChannel, heap buffer, native buffer, memory-mapped buffer, and FileOutputStream.
SvenWoltmann/virtual-threads
Demo code showing how to use Java's virtual threads.
SvenWoltmann/binary-search
Binary search implementation in Java (recursive and iterative). Comparison with linear search. Runtime test of binary and linear search.
SvenWoltmann/internet-address-resolution-spi-jep-418-demo
A rudimentary demonstration on how to use the Internet-Address Resolution SPI defined in JEP 418 introduced in Java 18. Article: https://www.happycoders.eu/java/java-18-features/
SvenWoltmann/java-collections-guide
Java Queue, Deque, Stack and other collections - Ultimate Guide on HappyCoders.eu.
SvenWoltmann/virtual-threads-spring
Spring demo application to compare controllers using CompletableFuture vs. virtual threads.
SvenWoltmann/advent-of-code-2015
Advent of Code 2015 – Object-Oriented Solutions in Java: https://www.happycoders.eu/algorithms/advent-of-code-2015/
SvenWoltmann/application-cds-demo
A minimal application for demostrating application class-data sharing (AppCDS).
SvenWoltmann/ffm-api-demo
Demonstration of Java's Foreign Function & Memory API
SvenWoltmann/arrays-and-lists
Code accompanying the “Arrays and lists” video series
SvenWoltmann/biased-locking
A JMH benchmark demostrating the effects of disabled biased locking in Java 15.
SvenWoltmann/java-kata
Maven project for Java Katas containing only a class, a test class, and dependencies to JUnit, AssertJ, and Mockito
SvenWoltmann/java-random-demo
Java random number generation demos. Article on HappyCoders.eu.
SvenWoltmann/java-structured-concurrency-demo
Demo code for the HappyCoders.eu article "Structured Concurrency with Java".
SvenWoltmann/mastering-data-structures-in-java
Quellcode zum Online-Kurs „Mastering Data Structures in Java“
SvenWoltmann/pattern-matching-for-switch
Pattern Matching for Switch Examples
SvenWoltmann/project-b
Source code for the HappyCoders.eu article about Git Monorepos.
SvenWoltmann/scoped-values
Demo code showing how to use Java's scoped values
SvenWoltmann/string-substring-demo
A demonstration of the String.substring() method and its evolution from Java 1.2 to today.
SvenWoltmann/stream-gatherers
Demo code for Stream Gatherers presentation
SvenWoltmann/structured-concurrency-quarkus
Quarkus demo application to show how to introduce structured concurrency using StructuredTaskScope.
SvenWoltmann/SvenWoltmann
SvenWoltmann/virtual-threads-quarkus
Quarkus demo application to compare controllers using platform threads, CompletableFuture, and virtual threads.