Skip to content

Instantly share code, notes, and snippets.

View DeanDonkov's full-sized avatar
🎯
Focusing

Dean Donkov DeanDonkov

🎯
Focusing
View GitHub Profile
<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;
@DeanDonkov
DeanDonkov / Clash of clans idea
Created August 4, 2021 16:32
Clash of Clans
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:
@DeanDonkov
DeanDonkov / WeirdMemory.kt
Created September 12, 2019 13:28
Weird Memory
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);