This file contains hidden or 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
| [source](https://stackoverflow.com/questions/46402772/failed-to-install-android-sdk-java-lang-noclassdeffounderror-javax-xml-bind-a) | |
| Both JDK 9 and 10 are incompatible with android-sdk | |
| ``` | |
| DEFAULT_JVM_OPTS='"-Dcom.android.sdklib.toolsdir=$APP_HOME" -XX:+IgnoreUnrecognizedVMOptions --add-modules java.se.ee' | |
| ``` |
This file contains hidden or 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 minecraft.net netease modal remover | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description remove netease modal while browsing minecraft.net in chinese | |
| // @author amethystek | |
| // @match https://*.minecraft.net/zh-hans/* | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or 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
| { | |
| "request": [ | |
| { | |
| "enable": true, | |
| "name": "replace resources from community.cloudflare.steamstatic.com", | |
| "ruleType": "redirect", | |
| "matchType": "regexp", | |
| "pattern": "https://community.cloudflare.steamstatic.com/economy/emoticon/(.*)", | |
| "exclude": "", | |
| "group": "steam", |
This file contains hidden or 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
| { | |
| "request": [ | |
| { | |
| "enable": true, | |
| "name": "jianshu.com", | |
| "ruleType": "redirect", | |
| "matchType": "regexp", | |
| "pattern": "https:\\/\\/www.jianshu.com\\/go-wild\\?(.*)url=(.*)", | |
| "exclude": "", | |
| "group": "Open the F**king URL Right Now", |
This file contains hidden or 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 cc.ddrpa.dorian.dsl; | |
| import com.fasterxml.jackson.databind.JsonNode; | |
| import com.fasterxml.jackson.databind.ObjectMapper; | |
| import com.fasterxml.jackson.databind.node.ArrayNode; | |
| import com.fasterxml.jackson.databind.node.ObjectNode; | |
| import java.util.AbstractMap; | |
| import java.util.Collection; | |
| import java.util.Map; |
This file contains hidden or 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 cc.ddrpa.labs.lang; | |
| import java.util.Optional; | |
| import java.util.function.Function; | |
| import java.util.function.Supplier; | |
| public record R<T, E>(T value, E error) { | |
| public static <T, E> R<T, E> ok(T value) { | |
| return new R<>(value, null); |
OlderNewer