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 January 7, 2025 15:20
Ludovic Valente - my Json resume
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"basics": {
"name": "Ludovic Valente",
"image": "https://www.libravatar.org/avatar/0c1ddc83408f6f3966e7999083692f6d42832e1054640f4cc0a6e45aa2bc6779?d=retro&s=80",
"email": "[email protected]",
"phone": "",
"url": "https://scora.watch",
"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 {