Etki

Results 24 comments of Etki

@Grafikart my version is based on yii 1, i don't think it's of any relevance current days. I can, of course, split it out, but i really think we can...

I was quite interested in this feature too, knowing it is hard as hell to implement from the start. However, i've found couple of things that can turn athletic into...

It seems that previously available core classes have been moved to module and then deprecated in java 12. Is it possible to try to add following dependency to plugin? ```...

For those whow will end up here via google. As found here: > If i create a clean project and only adding id 'com.gluonhq.gluonfx-gradle-plugin' version '1.0.7' then i got following...

Found it ```php // Rocketeer\Services\Connections\ConnectionsHandler public function setConnection($connection, $server = 0) { if (!$this->isValidConnection($connection) || (($this->connection === $connection) && ($this->currentServer === $server))) { return; } // Set the connection $this->handle...

Just duplicating workaround from Lombok issue: you can safely declare builder inner class in your main class: ``` @Builder(builderClassName = "LombokBuilder") class X { // ... @Foo public static class...

@msridhar It's not NullAway itself, it's a way to set SuppressWarnings on lombok builder

@progrium is there a to-do list anywhere? I'm not familiar with go in any way, so i can't help with the code (and, i guess, i'm not the only one),...

You need to launch selenium manually afaik. Selenium is not listed as a standalone package in repositories and doesn't require any installation, and because of that any application won't have...

Does the launch succeed? What's the output of it? Does `telnet localhost 4444` succeed if run on remote host? upd. ending telnet session may get a little tricky, be ready...