PLATFORM
  • Tails

    Create websites with TailwindCSS

  • Wave

    Start building the next great SAAS

  • Pines

    Alpine & Tailwind UI Library

  • Auth

    Plug'n Play Authentication for Laravel

  • Designer comingsoon

    Create website designs with AI

  • DevBlog comingsoon

    Blog platform for developers

  • Static

    Build a simple static website

  • SaaS Adventure

    21-day program to build a SAAS

Ketone Maniac

@ketonemaniac

369 Points 4 Followers

12 Posts

0 Answers

My discoveries in Java, Javascript and beyond

What is that Error Object from Spring Boot REST API?

For those working with Spring Boot REST API, there should be already countless occasions that you have encountered errors like this: ``` { "timestamp": "2022-01-19T14:36:29.443+00:00", "...

Will this Flux break?

Let me start with a question: Will this Flux break? ``` public static void main(String[] args) { Flux.interval(Duration.ofMillis(100)) .concatMap(i -> Mono.just(i) .delayElement(...

Kafka Messaging with Spring 101

My first serious application using Kafka is Spring Cloud Functions with Webflux. While exploring its (lack of) documentation and related tutorials, I turned out finding lots of stuff along t...

Organising Common Code via Spring Annotations and Bean Registry

# Motivation The project that I work on is a vast net of 40+ microservices, mainly divided into * Apps (those with UI code) * Services (all the heavyweight logic and interfacing downstream...

Reactor onErrorContinue VS onErrorResume

This seems one of the hot searches for Reactor, at least when I type onErrorContinue in Google, onErrorResume would pop up beside it. Let me paste my testing code with some of my interpretat...