Renato Ivancic - Software Engineer

Background image

Hello, I'm Renato

I build clean, performant and well taught applications and tools, from first design kick-off till maintenance in production.

With 10 years of hands down experience, my main focus at this time is developing back-end systems (microservices, monoliths, integrations, core libraries, customized build tools - Gradle ) in banking / financial sector. I strive to maintain high quality code that solves real world issues in an extensible architecture. I am fortunate to work in team that is enthusiastic and follows the same vision. I'm eager to learn, explore, question and guide my team with acquired knowledge.

Download CV

My Posts

Gif screen recording

Android Development

Lets say you want to quickly make a short demo of Android application that can be easy embedded into web pages like git, confluence and any other content supporting gif animations. It is dead simple and faster compared with setting up video content. Take a note that the compression shouldn’t be your goal here because mp4 uses better algorithms to decrease the amount of information needed to display a sequence of images.

20 Sep 2016 #android

Create mock REST API Server

Backend

Mock REST API with json-server and support of faker and lodash npm modules.

In case you need lightweight-lightningfast deployment of fake REST API for prototyping, get Docker image that has npm json-server module installed. Just save static data in JSON file. Image also includes faker and lodash modules so instead of static JSON initialization file you can script a ton of data.

Docker image: json-server-faker

3 Apr 2016 #json-server #docker #faker #rest #test

Format TextView content with HTML tags

Android Development

In most of the times, for displaying few lines of plain old text in Android application the TextView widget will be sufficient. What if you want to add a bit of text formatting to it? For example wrapping lines, making words bold or underlined, even adding some links to it. It can be accomplished by providing HTML code to the TextView widget as text source. Saving HTML code in Android app for reuse.

11 Mar 2016 #HTML #Android #TextView