Skip to content

Instantly share code, notes, and snippets.

View ludoo0d0a's full-sized avatar

LudoO ludoo0d0a

View GitHub Profile
@ludoo0d0a
ludoo0d0a / resume.json
Last active June 4, 2026 17:32
Ludovic Valente - my Json resume
{
"$schema": "./schema.i18n.json",
"basics": {
"name": "Ludovic Valente",
"image": "https://www.libravatar.org/avatar/0c1ddc83408f6f3966e7999083692f6d42832e1054640f4cc0a6e45aa2bc6779?d=retro&s=80",
"email": "ludovic.valente@gmail.com",
"phone": "",
"url": "https://scorawatch.com",
"location": {
"countryCode": "LU",
write a client iterating on next page using a cursor, a value coming from the first response
Here's an example of a Java client that iterates through pages using a cursor-based pagination approach:
```java
import org.springframework.web.reactive.function.client.WebClient;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
public class CursorPaginationClient {