Skip to content

Instantly share code, notes, and snippets.

View TechnicalRhino's full-sized avatar
:shipit:

Agnibha Bose TechnicalRhino

:shipit:
View GitHub Profile
@TechnicalRhino
TechnicalRhino / zip_by_hash.md
Last active June 11, 2025 06:23
Pincode Details By Hashed Phone API

Pincode Details API

Overview

This API retrieves pincode details for a user identified by hash.

API Endpoint

GET kratos/api/v1/external/pincode
@TechnicalRhino
TechnicalRhino / Java21Features.java
Created September 23, 2023 14:52
Small Code Explanation for Java21 Features
package org.example;
import java.util.ArrayList;
import java.util.List;
/**
* @author - agni
* @created_on - Saturday, 23/09/23
*/
public class Main {
@TechnicalRhino
TechnicalRhino / atob-btoa.js
Created December 21, 2017 09:10
atob and btoa for Previous node versions
const atob = (str) => Buffer.from(str, "base64").toString();
const btoa = (str) => Buffer.from(str).toString("base64");