Skip to content

Instantly share code, notes, and snippets.

View minhtran83's full-sized avatar

Minh Tran minhtran83

  • https://github.com/atlassian
  • Sydney, Australia
View GitHub Profile
package interview;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import jdk.incubator.http.HttpClient;
import jdk.incubator.http.HttpRequest;
import jdk.incubator.http.HttpResponse;
import java.io.IOException;
import java.net.URI;
@minhtran83
minhtran83 / css-best-practices.md
Created February 20, 2017 01:00 — forked from yurivictor/css-best-practices.md
CSS best practices for The Washington Post

CSS best practices

Do

  • Use Eric Meyer's CSS override
  • Use clearfloat instead of clear:both, when applicable
  • Use core html over divs whenever possible (h2, p, li, ol, time)
  • Add a top level ID to every kind of page (#race-page, #candidate-page)
  • Use IDs for elements that are unique to every page in the site
  • Use hyphens for IDs and classes, no camelCase or underscores. (Improves readability)
@minhtran83
minhtran83 / springer-free-maths-books.md
Created December 28, 2015 15:47 — forked from bishboria/springer-free-maths-books.md
Springer have made a bunch of maths books available for free, here are the direct links
@minhtran83
minhtran83 / 0_reuse_code.js
Created June 18, 2014 07:02
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console