String Interpolation in Java
Languages like Scala, Ruby or even PHP allow to build dynamic textual content in an elegant and concise way. Is string interpolation available in Java?… Read More »
String Interpolation in Java
Languages like Scala, Ruby or even PHP allow to build dynamic textual content in an elegant and concise way. Is string interpolation available in Java?… Read More »
String Interpolation in Java
There we go again. I couldn’t help but to (re)write my own. Unlike my previous attempt, I managed to keep implementation neat and tidy with… Read More »
API Mock Server Powered by Node.js
Coding for Android can be tough at times. Especially when things one would take for granted aren’t supported at all. Such as an option for… Read More »
Preloading of an Android WebView
While designing of the Endpoints API is fairly straightforward, there are gotchas one might stumble upon. Especially when task at hand is slightly more involved… Read More »
Google Cloud Endpoints – Design Considerations
Conscious about REST? Then you want to have control over HTTP methods associated with your API calls. Should you choose not to use @ApiMethod, Endpoints… Read More »
Google Cloud Endpoints – GET vs POST
The title says it all, one cannot make use of method overloading when working with Endpoints. Not a big deal one might think. Well, as… Read More »
Google Cloud Endpoints – Overloaded Methods not Supported