Stavros Papapantelis

Results 13 issues of Stavros Papapantelis

Sometimes I get this error and the application crash ``` java.lang.IllegalArgumentException: Random range is empty: [8, -8). at kotlin.random.RandomKt.checkRangeBounds(Random.kt:348) at kotlin.random.Random.nextInt(Random.kt:57) at kotlin.random.Random$Default.nextInt(Random.kt:247) at org.firezenk.bubbleemitter.BubbleEmitterView.onDraw(BubbleEmitterView.kt:65) at android.view.View.draw(View.java:22350) at android.view.View.updateDisplayListIfDirty(View.java:21226) at...

Some of the bubbles that reach the top position and then they are respawned from the same horizontal location have an animation bug that looks a little ugly. They are...

I am using this code to get users followers info: ``` public static List getUsersFollowers(IGClient client, String username) { Print.e("Getting users followers. Please wait..."); final List result = client.actions().users().findByUsername(username) .thenApply(userAction...

bug

I keep getting this error and I don't know why. Can someone explain me what it means?

When I try to place an order I get this error: > com.webcerebrium.binance.api.BinanceApiException: ERROR: -1013, Filter failure: LOT_SIZE How can I resolve this?

question

I am trying to run: ``` BinanceSymbol symbol = new BinanceSymbol("ETHBTC"); Session session = (new BinanceApi()).websocketTrades(symbol, new BinanceWebSocketAdapterAggTrades() { @Override public void onMessage(BinanceEventAggTrade message) { System.out.println(message.toString()); } }); try {...

question

This post is not an issue but more like a suggestion for optimization. I am wondering if it's possible by any means to lower the time that is required to...

question

In your code example you explain how to trade BTC with ETH, but how to trade ETH with BTC?

question

I am using this code to show an image: ``` IDMPhoto *photo = [IDMPhoto photoWithImage:image]; IDMPhotoBrowser *browser = [[IDMPhotoBrowser alloc] initWithPhotos:@[photo] animatedFromView:self.view]; [self presentViewController:browser animated:YES completion:nil]; ``` When I exit...