Skip to content

Instantly share code, notes, and snippets.

View TamimEhsan's full-sized avatar
🏕️
Conquering the world one step at a time

TamimEhsan TamimEhsan

🏕️
Conquering the world one step at a time
View GitHub Profile
@joelonsql
joelonsql / PostgreSQL-EXTENSIONs.md
Last active December 2, 2025 18:02
1000+ PostgreSQL EXTENSIONs

🗺🐘 1000+ PostgreSQL EXTENSIONs

This is a list of URLs to PostgreSQL EXTENSION repos, listed in alphabetical order of parent repo, with active forks listed under each parent.

⭐️ >= 10 stars
⭐️⭐️ >= 100 stars
⭐️⭐️⭐️ >= 1000 stars
Numbers of stars might not be up-to-date.

@hmasum52
hmasum52 / Api.java
Last active October 29, 2021 15:26
Fastest way to call API endpoints in android using retrofit2
public class Api {
public static Api instance = new Api();
public Endpoints endpoints;
private Api(){
HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor();
interceptor.level(HttpLoggingInterceptor.Level.BODY);
OkHttpClient client = new OkHttpClient.Builder().addInterceptor(interceptor)