Skip to content

Instantly share code, notes, and snippets.

@andredasilvapinto
andredasilvapinto / Test.kt
Created December 31, 2017 18:55
java.lang.VerifyError: Bad type on operand stack
import kotlinx.coroutines.experimental.delay
import kotlinx.coroutines.experimental.launch
import kotlinx.coroutines.experimental.runBlocking
import java.util.*
import kotlin.concurrent.schedule
class Test {
fun scheduleTimeout() {
Timer(true).schedule(300) {
launch {
@andredasilvapinto
andredasilvapinto / pom.xml
Last active November 22, 2016 01:57
fabric8 docker.container.alias.ip
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>me.andresp</groupId>
<artifactId>playground</artifactId>
<version>1.0-SNAPSHOT</version>