Skip to content

Instantly share code, notes, and snippets.

View sachin-handiekar's full-sized avatar

Sachin Handiekar sachin-handiekar

View GitHub Profile
interviewing.io - Discount code ($100 off)- https://iio.sh/r/jVrE
Get $100 off at interviewing.io - https://iio.sh/r/jVrE
#Algorithms
#Amazon
#Apple
#BackendDevelopment
#CareerChange
#CareerGrowth
CodeCrafters.io - 40% discount link - https://app.codecrafters.io/join?via=sachin-handiekar
✅ Build Git from scratch
✅ Implement your own HTTP server
✅ Create a database (SQLite)
✅ Develop Redis clones
and many more...
#SoftwareDevelopment #CareerGrowth #BackendDevelopment #SystemDesign #SoftwareDevelopment #CareerGrowth #BackendDevelopment #SystemDesign
#LearnToCode #DeveloperLife #BackendDevelopment #CodingCommunity
referral link to sign up and get started — it takes just a few minutes:
👉 https://www.revolut.com/referral/?referral-code=saching4x5!APR1-26-VR-GB
To unlock the reward, you'll just need to:
✅ Sign up as a new customer
✅ Add money to your account
✅ Order a physical card
✅ Make a few card purchases
Get 30% off HelloInterview
https://www.hellointerview.com/premium/checkout?referralCode=HbDRwedV
#HelloInterview
#TechInterview
#CodingInterview
#SoftwareEngineer
#SystemDesign
#LeetCode
@sachin-handiekar
sachin-handiekar / gist:92c696c92a1de5a317f4889509887fe8
Created March 20, 2026 06:43
Love Costa Coffee? Get 6 beans FREE when you join the Costa App! - 🫘 https://app.costa.co.uk/PsbT/b5bksixx
Free Costa Coffee incoming! Use my Costa App referral link and score 6 beans instantly on your first handcrafted drink.
That's your free coffee getting closer with every sip.
🫘 https://app.costa.co.uk/PsbT/b5bksixx
#CostaApp
#CostaCoffee
#CostaCup
#CostaRewards
@sachin-handiekar
sachin-handiekar / gist:3a5eb326d8f8120fc50fdcab76a42c34
Created March 11, 2026 06:48
Rate Limiter — Interview Question
# Rate Limiter — Interview Question
**Difficulty:** Medium
**Topic:** Sliding Window · Queue · Data Structures
**Time:** 45–60 minutes
---
## Problem Statement
Get a mystery reward of £10, £20 or £50 when you join Monzo using the referral link - https://join.monzo.com/c/pf9x8xry
#Monzo
#MysteryReward
Build your own Redis, Git, HTTP server & more from scratch with @codecraftersLearn by doing with hands-on challenges that teach you how real systems work.
Join here: https://app.codecrafters.io/join?via=sachin-handiekar
#CodeCrafters
#LearnToCode
#SystemsProgramming
package com.example.resttemplatedemo.exception;
public class CustomExceptions {
public static class ApiException extends RuntimeException {
private final int statusCode;
private final String responseBody;
public ApiException(String message, int statusCode, String responseBody) {
super(message);
@sachin-handiekar
sachin-handiekar / CustomErrorHandler.java
Created August 22, 2025 13:53
CustomErrorHandler - Spring Rest Template
package com.example.resttemplatedemo.handler;
import com.example.resttemplatedemo.exception.CustomExceptions;
import org.springframework.http.HttpStatus;
import org.springframework.http.client.ClientHttpResponse;
import org.springframework.web.client.ResponseErrorHandler;
import java.io.IOException;
import java.nio.charset.StandardCharsets;