Be a Leader (HTWFAIP - Part 4)
Last installment of the series. 9 Tips to become the leader you’d like to follow.
Read on →A blog about code and stuff
Hi I'm Juan! I'm a software developer from Argentina 🇦🇷living in the Bay Area. On this blog I share the things I learn on software development and other related topics.
Hope you like it! ❤️
Last installment of the series. 9 Tips to become the leader you’d like to follow.
Read on →
Third post of the series. Today: some advice on how to convince people to your way of thinking. This is a long, but juicy post.
Read on →
Second post of the series on the book “How to Win Friends and Influence People” by Dale Carnegie. I know, How to make people like you sounds soooo lame, but stick with me, this is a good chapter.
Read on →
This is the first of a series of posts on the book “How to Win Friends and Influence People” by Dale Carnegie. Today: Handling People.
Read on →
This is from a presentation I gave at work about how to design APIs that don’t suck. You can download the whole presentation from here
Read on →
In this post I’ll introduce the concept of Feature Toggles as a release alternative to FeatureBranches. This technique is also known as: Feature toggles, Feature switches, Feature flippers, etc.
Read on →
Here I’ll show you how you can email a Google Form daily, weekly or whatever. I’ll achieve this by using Google App Scripts. Here we go
Read on →
So I was learning to animate Views in Android using this video and was having trouble with the second time the animation runned. First run the objects end up in their destination, second run it was mayhem. I had fallen victim to the great misunderstanding everyone makes about Android animations: they are just a magic trick.
Read on →
We were having a race condition on a server which was “fixed” by adding an sleep to the thread to check again later. Yes, it sucked, so I decided to make something more sophisticated and went looking for a library to handle retries with multiple strategies. That’s when I first read about Guava Retrying.
Read on →
Remember my last post on value types using Google’s AutoValue? Today while doing some work on a new Android project I’m starting I thought: ‘Great chance to use AutoValue!’. Guess what, there is a port of Google AutoValue for the Android platform.
Read on →