$ script -c "tmux -u" /dev/null
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
| var elements = document.getElementsByClassName("series-episode-list-container"); | |
| for (var i = 0; i < elements.length; i++) { | |
| console.log(elements[i].getAttribute('href')); | |
| } |
Map<String, Object> options = new HashMap<String, Object>() {{
put(Library.OPTION_FUNCTION_MAPPER, new FunctionMapper() {
public String getFunctionName(NativeLibrary library, Method method) {
Debug.println(method.getName());
if (method.getName().equals("default")) {
return "defaultSession";
} else {
return method.getName();
}
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
| private static String convert(byte[] buffer) { | |
| UniversalDetector detector = new UniversalDetector(null); | |
| detector.handleData(buffer, 0, buffer.length); | |
| detector.dataEnd(); | |
| String value = null; | |
| String encoding = detector.getDetectedCharset(); | |
| if (encoding != null) { | |
| value = new String(buffer, 0, buffer.length, Charset.forName(encoding)); | |
| } |
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
| diff --git a/CMakeLists.txt b/CMakeLists.txt | |
| index 03e6f74..6f96592 100644 | |
| --- a/CMakeLists.txt | |
| +++ b/CMakeLists.txt | |
| @@ -19,6 +19,13 @@ endif() | |
| # Git | |
| find_package(Git) | |
| +find_library ( | |
| + SSL_LIB |
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
| diff --git a/build.gradle b/build.gradle | |
| index 1fa8f09c3..c67345c3c 100644 | |
| --- a/build.gradle | |
| +++ b/build.gradle | |
| @@ -761,6 +761,23 @@ publishing { | |
| } | |
| } | |
| +task mapYourJar(dependsOn: compressTiny) { | |
| + group = mapJarGroup |