Description | Command |
---|---|
Start a new session with session name | screen -S <session_name> |
List running sessions / screens | screen -ls |
Attach to a running session | screen -x |
Attach to a running session with name | screen -r |
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 ScrollVis = function() { | |
var id = new Date().getTime(); | |
var isVis = e => e.getBoundingClientRect().bottom > 0 && e.getBoundingClientRect().top < window.innerHeight; | |
var isVisMarked = e => e['vis-mark-' + id] === true; | |
var visMark = e => e['vis-mark-' + id] = true; | |
var isStarted, visTimeout, visEvent; | |
var starter = function(visElements, visAction) { | |
if (isStarted) { | |
return; | |
} |
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
public static class SBCW extends CodeWriter { | |
private SBOS sbos = new SBOS(); | |
@Override | |
public void close() throws IOException { | |
} | |
public String getCode() { | |
return sbos.getText(); |
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
<dependency> | |
<groupId>org.javassist</groupId> | |
<artifactId>javassist</artifactId> | |
<version>3.19.0-GA</version> | |
</dependency> | |
<dependency> | |
<groupId>net.openhft</groupId> | |
<artifactId>compiler</artifactId> | |
<version>2.2.0</version> | |
</dependency> |