Floris Thijssen
Floris Thijssen
hmm, yeah you're right. Maybe I was testing with my profit and not the market price and then my brain farted. Anyway, here's what you get for negative values: ```java...
Just bumped into the same issue on debian  It's strange though, because I don't think I had this issue a few days ago. I think it...
I implemented this once for a project I was working one. You can find my save/load here: https://github.com/sirolf2009/caesar/blob/master/src/main/java/com/sirolf2009/caesar/MainController.java#L65 It uses kryo to serialize DockFX dashboards by saving the splitpane dividers...
Also, so I wrote this thing ```xtend import info.bitrich.xchangestream.bitfinex.BitfinexStreamingExchange import info.bitrich.xchangestream.core.StreamingExchangeFactory import org.knowm.xchange.ExchangeFactory import org.knowm.xchange.bitfinex.v1.BitfinexExchange import org.knowm.xchange.currency.CurrencyPair class RestVSWebSocket { def static void main(String[] args) { val restExchange = ExchangeFactory.INSTANCE.createExchange(BitfinexExchange.name)...
I have the same problem, I have a folder with a bunch of groovy scripts that I'd like to get updated with the jar. I could package the scripts in...
will do, I'm a little busy, so it might take a week or so.
Same here. We use release to track when and what code we push to prod, which is automated by jenkins because our environment consists of about 30 projects. Merging them...
https://github.com/petervanderdoes/gitflow-avh/pull/386
I was thinking of something like ```java public class SomeClass { SomeOtherClass:SomeOtherMethod (80%) public void someMethod() { } } ``` In this case, the plugin has detected that whenever ```someMethod```...
Yeah I had come across the same issue. I used https://github.com/abego/treelayout for the graph layout, but it looks like I'll have to create my own. I'm rather busy with work...