Our Blog

Boost your knowledge with the insights from our expert team.

API
API
Close
Business
Business
Close
Web
Web
Close
Talk
Talk
Close
Python
Python
Close
Design
Design
Close
People
People
Close
Open Source
Open Source
Close
Javascript
Javascript
Close
placeholder background

A/Bout Testing

In this post we will go through all the steps to adopt A/B testing as a common practice on your project. TL;DR Follow up our checklist with all the insights gathered from doing A/B tests on our projects: A/B Testing Checklist & A/B Testing Checklist Repository

placeholder background

How to make sure your Celery Beat Tasks are working

Celery is a great tool to run asynchronous tasks. It handles situations where you don't want to lock web requests with time consuming operations or when you want things to happen after some time or even in specific date/time in the future.

placeholder background

Responsive layout with an unknown number of elements solved by Flexbox

The CSS3 Flexible Box, or Flexbox, is a layout mode providing for the arrangement of elements on a page such that the elements behave predictably when the page layout must accommodate different screen sizes and different display devices.

placeholder background

5 tools to help developing and testing APIs

Here are some very useful tools that can assist you while developing, debugging and testing web APIs.

placeholder background

Fast enough? 9 tips for web page optimization

Our world is large, internet isn’t fast everywhere. Web optimization needs to ride along user needs. So don't waste your time with performance if it will not improve user experience. Instead, try to learn about how users are interacting with your page.

placeholder background

Seriously, we can build better web API clients

We are in the era of Software as a Service and microservices. From the techinical point of view this means we are writting more web APIs than we use to. This also means we need to build clients to free our souls from dealing with bare HTTP. This doesn't mean we should separate this much from HTTP

placeholder background

Uncovering input fields from iOS Keyboard

One thing new iOS developers notice on their first experiences developing applications is that their interfaces do not adapt to the screen when the keyboard is shown. Because of this, text input fields might be hidden by the keyboard. The good news is that the solution for this is not very complex.

placeholder background

URL, URI, URN what's the difference?

URL, URI and URN are widely used terms when we talk about the web, although they seem to be the same, there is a slight difference between each one of them.

placeholder background

Creating Cordova/Phonegap plugins

Building hybrid mobile apps is all nice and easy until you need some native feature that does not yet have a cordova package. But don't you worry, we will show you how to do it. We will be writing a plugin to run some simple android code and call it from the javascript side.