Skip to content

Instantly share code, notes, and snippets.

@feng-ming
feng-ming / 0_reuse_code.js
Created April 22, 2014 08:37
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
@feng-ming
feng-ming / ddd
Created August 4, 2020 12:19
sdf #java
public static List<String> entriesSortedByValues(List<String> lists) {
Collections.sort(lists,
new Comparator<String>() {
@Override
public int compare(String o1, String o2) {
return o2.split("\\|")[0].compareTo(o1.split("\\|")[0]);
}
}
);
return lists;