Open in app

Sign In

Write

Sign In

Kathiriya Niket
Kathiriya Niket

20 Followers

Home

About

Published in Advanced Algorithms

·Dec 10, 2022

Dynamic Programming — Simplified

To many programmers, dynamic programming seems like an enigma or a suffering that they have to go through when they are preparing for interviews. But, once you understand the core of it, the rest is just practice. …

Dynamic Programming

4 min read

Dynamic Programming — Simplified
Dynamic Programming — Simplified
Dynamic Programming

4 min read


Published in Way to wisdom

·Apr 25, 2021

Attitude is everything — 3 Takeaways of Part 3

“Attitude is everything” is a small and interesting book by Jeff Keller. The language used is simple and easy to understand. The strategies are effective. The book is divided into 3 parts by the author himself. Part 1: Success Begins in the Mind — Focuses on the way of THINKING …

Success

4 min read

Attitude is everything — 3 Takeaways of Part 3
Attitude is everything — 3 Takeaways of Part 3
Success

4 min read


Published in Way to wisdom

·Apr 25, 2021

Attitude is everything — Part 2 (Watch your words!)

“Attitude is everything” is a small and interesting book by Jeff Keller. The language used is simple and easy to understand. The strategies are effective. The book is divided into 3 parts by the author himself. Part 1: Success Begins in the Mind — Focuses on the way of THINKING …

Book Recommendations

4 min read

Attitude is everything — Part 2 (Watch your words!)
Attitude is everything — Part 2 (Watch your words!)
Book Recommendations

4 min read


Published in Way to wisdom

·Apr 13, 2021

Attitude is everything — 7 key ideas from it’s part 1

“Attitude is everything” is a small and interesting book by Jeff Keller. The language used is simple and easy to understand. The strategies are effective. The book is divided into 3 parts by the author himself. Part 1: Success Begins in the Mind — Focuses on the way of THINKING …

Book Summary

6 min read

Attitude is everything — 7 key ideas from it’s part 1
Attitude is everything — 7 key ideas from it’s part 1
Book Summary

6 min read


Published in Way to wisdom

·Apr 10, 2021

Attitude is everything — Introduction

“Attitude is everything” is a small and interesting book by Jeff Keller. The language used is simple and easy to understand. The strategies are effective. The book starts with an introduction about the author and how he changed his life Since his early teenage years, Jeff was interested in becoming…

Attitude Is Everything

4 min read

Attitude is everything — Introduction (The 3 important takeaways)
Attitude is everything — Introduction (The 3 important takeaways)
Attitude Is Everything

4 min read


Published in Reactive programming in Springboot using WebFlux/Reactor

·Dec 11, 2020

JUnit: testing API with WebTestClient

For the sake of getting straight to the point, we will assume followings, so that we can look directly into testing. We have a RestController with two get mappings. ‘/flux’ returns Flux<Integer> in default media type — application/json. ‘/fluxStream’ returns Flux<Long> in — application/stream+json OR application/x-ndjson. ‘/flux’ is finite and…

Reactive Programming

1 min read

Reactive Programming

1 min read


Published in Reactive programming in Springboot using WebFlux/Reactor

·Dec 11, 2020

Hot vs Cold Reactive Streams

Let’s suppose there is a producer that produces integers 1 to 10. Now, a subscriber will subscribe and request for data. The publisher starts sending data through onNext() event. When the publisher has sent 3 onNext() events, another subscriber (subscriber-2) will subscribe and request for data. …

Spring Boot

2 min read

Hot vs Cold Reactive Streams
Hot vs Cold Reactive Streams
Spring Boot

2 min read


Published in Reactive programming in Springboot using WebFlux/Reactor

·Nov 30, 2020

Error handling for Flux

Earlier, we saw how to check/ verify errors in the stream. Flux<String> strFlux = Flux.just("These","Strings","will","create","flux") .concatWith(Flux.error(new RuntimeException("Exception Occured"))) .concatWith(Flux.just("After Error")); StepVerifier.create(strFlux) .expectNext("These","Strings","will","create","flux") .expectError(RuntimeException.class) .verify(); Now let’s see how to handle the error.

Flux

2 min read

Flux

2 min read


Published in Reactive programming in Springboot using WebFlux/Reactor

·Nov 30, 2020

Operations on Reactive Streams

Let’s look at some of the operations that can be done on a Reactive Stream (Flux/ Mono) and play around with the stream. Filtering Reactive Stream We can filter a stream based on a predicate (condition) provided as an argument with the filter() method. If we wanted to filter a string stream and…

Mono

2 min read

Mono

2 min read


Published in Reactive programming in Springboot using WebFlux/Reactor

·Nov 30, 2020

Flux/Mono Factory Methods

In this post, we will discuss different ways to create Flux/Mono. Flux From List (or any other Iterable data type): Flux<String> strFlux = Flux.fromIterable(strList); From Array: Flux<String> strFlux = Flux.fromArray(strArray); From Stream: Stream is an API included in JDK from Java 8. It can be used to process collection from iterables. Visit this page for more on Java 8 Streams: https://www.geeksforgeeks.org/stream-in-java/

Spring Boot

1 min read

Spring Boot

1 min read

Kathiriya Niket

Kathiriya Niket

20 Followers
Following
  • Shivam Gohel

    Shivam Gohel

  • William Cho

    William Cho

  • Mark Billinghurst

    Mark Billinghurst

  • Parth Shah

    Parth Shah

  • Amit Bhoraniya

    Amit Bhoraniya

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech