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
object TestThreadClientMode { | |
private var done: Boolean = false | |
@Throws(InterruptedException::class) | |
@JvmStatic | |
fun main(args: Array<String>) { | |
Thread(Runnable { | |
var count = 0 | |
while (!done) { | |
count++ | |
println(count); |
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
Clash of clans type of server | |
Servers | |
----------- | |
Maybe each spigot server would have one island/base, and they will be connected by bungees. | |
Base | |
----------- | |
Buildings: |
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
<WebView | |
source={{ uri: 'https://staging.assetify.net/kaspa-worker/index.html' }} | |
javaScriptEnabled={true} | |
injectedJavaScript={` | |
const consoleLog = (type, log) => { | |
let data; | |
try { | |
data = JSON.parse(log); | |
} catch (e) { | |
data = log; |