This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name GitHub Fullscreen | |
// @match https://github.com/* | |
// ==/UserScript== | |
document.querySelectorAll(".container-lg") | |
.forEach(e => e.classList.remove("container-lg")); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Main { | |
public static void main(String[] args) { | |
Person andreas = new Person("Andreas"); | |
Werewolf w = new Werewolf(andreas); | |
w.brain.think(); | |
} | |
} | |
class Person { | |
String name; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package jacksonrepro; | |
import java.net.UnknownHostException; | |
import java.time.Instant; | |
import java.util.Arrays; | |
import org.jongo.Jongo; | |
import org.jongo.Mapper; | |
import org.jongo.MongoCollection; | |
import org.jongo.marshall.jackson.JacksonMapper.Builder; |