Often times I find myself working out of a coffee shop with a terrible Internet connection. We have a nice office at OmbuLabs but there is still that Je ne sais quoi at coffee shops.
The cool thing about Git is that you can git commit
all your changes while enjoying a cup of coffee and git push
later (when you’re back at home with a decent connection)
But what if you want to git push
from the coffee shop? Sometimes the only ports that are open are port 80 (HTTP) and 443 (HTTPS).
Read more »
Quality should be present in everything you do, but it should be balanced with the time you spend working on a feature. Does it feel like you’ve been working on this feature for a really long time? Maybe you have. Is it “done”?
That is a tough question, so I’ll write down our definition of done.
Read more »
Often, Enumerable#select
is the chosen method to obtain elements from an
Array for a given block. Without thinking twice, we may be doing more work than
necessary by not taking advantage of another method from the Enumerable module,
Enumerable#grep
.
Read more »
The other day my friend Juan Rossi reported a vulnerability in the Almundo billing system. Since then, the vulnerability has been fixed by Superfactura, their billing software provider.
Almundo is one of the biggest travel agencies in Argentina. Their site is among the 250 most visited websites in the country.
The vulnerability allowed anyone to download billing information about their clients by creating a pretty simple HTTP GET
request. No programming knowledge required.
Read more »
If you are using git in 2015, you are probably also using Github, unless you’re self-hosting or still betting on Bitbucket.
Below are some cool, useful tricks you can use on Github which can probably make your life easier:
Read more »