Fernando Raviola

Results 10 issues of Fernando Raviola

Even though I'm able to sync dependencies without errors, android studio still can't find the AndroidDevMetrics.class I tried a clean build and even invalidated my cache and restarted AS, no...

The snippet below will not update te text displayed on the TextView. It works fine using the LinkableEDITTEXT though ``` tv = (LinkableTextView) findViewById(R.id.heloworld); Link linkHashtag = new Link(Pattern.compile("(#\\w+)")) .setUnderlined(true)...

Thanks for this great library, I love how quick and simple it is, I'm having some trouble with the save dialog option: ``` if (ImGui::MenuItem("Save as...")) { auto destination =...

Just a suggestion here, I was very confused with this property when I first saw it. This name suggests that the variable will define how high the hero can jump,...

> Let's start by manually creating a SharedCode sub-project in our Gradle project. The source code from the SharedCode project will be shared between platforms. We will create several new...

`World::entities` is a vector of pointers, those pointers could be scattered in memory. Iterating over them might result in poor usage of CPU caches. I tried changing `std::vector entities;` to...

enhancement
help wanted

I was just wondering, Shouldn't we be handling disconnections from the server as well throughout your activity life-cycle? If not, we're gonna end up with tons of connection as the...

On a real application, a method like `updateUserName()` might perform a long running operation (network call / db query) This example is clearing the `compositeDisposable` on `onStop()`, so this long...

From the example, it is not clear how an user can be matched between the '/login' and '/callback' method calls ### Expected behavior A realistic example where the 'client' object...

Is it possible to use the `top/left` css properties instead of `transform`? ...or alternatively, keep using `transform` for dragging but then set reset its value on `onDragStopped` (and move the...