Cloud hosting for developers
If you are looking for a cloud hosting where you don't need to setup bunch of things before you even start deploying app, there is a solution...
If you are looking for a cloud hosting where you don't need to setup bunch of things before you even start deploying app, there is a solution...
People say that we Serbs are building houses like we're going to live for thousands years but we leave every day like it's our last. Most programmers are taking the similar approach when building apps...
I was always interested in automation tools, but they all seemed complicated. When a friend explained me in 5 minutes how Ansible works and how easy is to setup new project, I was amazed...
When you are interviewing someone, you can learn more about them by reviewing how they did some exercises than talking with them about specific technology. Anyone can learn theory from the blog posts, but people rarely understood it...
Grid systems can be quite complicated. 960.gs, the mother of all grid systems, contains over 600 lines of code! And it's one of the simpler pure-CSS grid systems...
Developers use Foundation or Bootstrap unnecessarily, and they don't know what the output of their CSS code is. I will try to explain my viewpoint about these kinds of frameworks, what their flaws are, and when might be a good time to use them...
We can create "one column fixed and one column fluid" layout using different techniques, but most of these solutions are kind of hacky and have some flaws like magic numbers, hard coded values, etc...
As web developers have become more concerned about browser performance a technique called “image spriting” has emerged that is designed to reduce the number of requests made to the server. As it turns out, fewer requests made the server (when there is no significant difference in the combined size of the files delivered) can make a big difference in how fast a page appears to download...
It's a trivial problem, but I've seen this in beginner tutorials, and I don't like it. People are iterating over collections and creating Item views in the same function...