Skip to content

Instantly share code, notes, and snippets.

View nicolasxu's full-sized avatar

Nicolas Xu nicolasxu

  • Actively looking for developer position
  • Boston, MA
View GitHub Profile
@nicolasxu
nicolasxu / fiddle.css
Created October 5, 2016 02:21 — forked from gabesumner/fiddle.css
Address Validation using the Google Maps API
body {
font: 12px verdana;
background-color: #5C87B2;
}
form {
max-width: 400px;
padding: 15px;
background-color: white;
}
@nicolasxu
nicolasxu / Main.java
Created January 10, 2016 20:06
Manage Constants in Project
// definition
public final class Constants {
private Constants() {
// restrict instantiation
}
public static final double PI = 3.14159;
public static final double PLANCK_CONSTANT = 6.62606896e-34;
}
@nicolasxu
nicolasxu / Main.java
Created January 10, 2016 19:30
plunck constant
final double PLANCK_CONSTANT = 6.62606896e-34;
<!--[if lt IE 8]>
<link rel="stylesheet" type="text/css" media="screen" href="ie-styleheet.css" />
<!--<![endif]-->