Skip to content

Instantly share code, notes, and snippets.

View danprado's full-sized avatar

Danilo Prado danprado

  • Sr. Android Engineer @ Tinder
  • Orange County, California
View GitHub Profile
@tsiege
tsiege / The Technical Interview Cheat Sheet.md
Last active January 10, 2026 18:45
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

ANNOUNCEMENT

I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!






\

@kany
kany / sendmail_setup.md
Last active January 27, 2025 11:55
Setup SENDMAIL on Mac OSX Yosemite
@swankjesse
swankjesse / HostSelectionInterceptor.java
Last active September 27, 2025 02:40
This OkHttp application interceptor will replace the destination hostname in the request URL.
import java.io.IOException;
import okhttp3.HttpUrl;
import okhttp3.Interceptor;
import okhttp3.OkHttpClient;
import okhttp3.Request;
/** An interceptor that allows runtime changes to the URL hostname. */
public final class HostSelectionInterceptor implements Interceptor {
private volatile String host;