Skip to content

Instantly share code, notes, and snippets.

View mttjj's full-sized avatar

Matthew Janssen mttjj

View GitHub Profile
"Matthew, let me kindly inform you that 2 Factor Authentication for Chime accounts is a feature that Chime uses to protect your personal information and your funds. However, this Authentication won't be asked to be completed every time you log in. If the feature notices that you are logging in from many devices, then it will be asked to be completed. This may be the reason why sometimes it shows and sometimes not. Also, you will be always asked to complete 2 Factor Authentication if you need to change passwords."
public class Snippet
{
public static void main(String[] args)
{
Project p = getById(Project.class, 0);
System.out.println(p);
System.out.println(getById(Project.class, 1));
}
private static <T extends Insertable> T getById(Class type, int id)
@mttjj
mttjj / helloWorld.java
Last active August 29, 2015 13:57
Hello world gist
public static void main(String[] args)
{
System.out.println("Hello world!");
System.out.println("Embedding gists on tumblr works!");
}