Gael Ribes

Results 46 comments of Gael Ribes

To make it clear, in CraftBukkit the classes in NMS are what is actually used to run the server. In Glowstone, there's no NMS, and there never will. Both plugins...

> Moreover, compared to the API of java.net.InetAddress that applies to both IPv4 and IPv6, the API of commons-ip-math can only be applied to addresses of the same family. Set...

I encountered this issue too. I have to disable the daemon.

I don't know much about Cocoapod and only ever used Carthage, but doesn't Cocoapod create XCode projects? Would it be possible to have a CI create an XCode project for...

Right, such extensions should really add value. My only example right now is setting the alpha of a color int. ```kotlin inline fun Int.alpha(alpha: Double): Int { require(alpha in 0.0..1.0)...

The code I provided doesn't work on Android 9, I'm trying to fix it. https://github.com/aosp-mirror/platform_frameworks_base/commit/fa83834a44052fb9bbdaa81e0faea6870e71268d

FYI I tried to make a version working from API 19 to 28 and didn't find a good way to do it. But I didn't have enough time to invest...

I've added this to my extensions: ```kotlin inline fun TextView.setFont(@FontRes fontRes: Int, italic: Boolean = false) { if (!isInEditMode) { setTypeface(font(fontRes), if (italic) Typeface.ITALIC else Typeface.NORMAL) } } ``` I'm...

I'm convinced that downloadable fonts are the right thing, but I think that a library should stay realistic and implement the most commonly used patterns. The gains from such simple...

Just encountered this as well!