Skip to content

Instantly share code, notes, and snippets.

View HydroCarbon's full-sized avatar

HydroCarbon HydroCarbon

  • Nanjing, China
View GitHub Profile
@HydroCarbon
HydroCarbon / curl.md
Created February 28, 2022 06:28 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.

@HydroCarbon
HydroCarbon / Singleton.java
Created January 12, 2022 04:33
#Java #Singleton
public class Singleton {
private static class SingletonHolder {
private static final Singleton INSTANCE = new Singleton();
}
private Singleton (){}
public static final Singleton getInstance() {
return SingletonHolder.INSTANCE;
}
}