Skip to content

Instantly share code, notes, and snippets.

@radubalanpro
radubalanpro / ApiClient.java
Created July 27, 2020 20:43 — forked from haerulmuttaqin/ApiClient.java
Android CRUD Tutorial | • RETROFIT • PHP • MYSQL (https://youtu.be/Vh92eSAEu5c)
import retrofit2.Retrofit;
import retrofit2.converter.gson.GsonConverterFactory;
public class ApiClient {
private static final String BASE_URL = "http://your-domain-name.000webhostapp.com/";
private static Retrofit retrofit;
public static Retrofit getApiClient() {
@radubalanpro
radubalanpro / JavaHTTPServer.java
Created January 3, 2019 11:42 — forked from ssaurel/JavaHTTPServer.java
Simple HTTP Web Server made in Java for a tutorial on the SSaurel's Blog
import java.io.BufferedOutputStream;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.net.ServerSocket;