One of the common developments in mobile applications is showing information using tables. This task can easily be done when you have a collection of homogeneous entities but it gets trickier when this collection has n-number of different entities. In … Read More
Agile web and app development

Web Design for Coding: 7 steps checklist to have it ready for development
Most creative projects today ain’t a one person’s project. Truly innovative can only be a result of collaboration, because it requires a skill set that a single mind won’t possess. At Chop-Chop, we are dealing with web development as a … Read More

How to create a React project with TypeScript
In my last article we saw how can we begin to migrate a JavaScript project to TypeScript, in a incremental manner, without making great efforts or breaking changes. Now, I would like to talk about using TypeScript in a new … Read More

Cloud native architecture – the modern way to develop Software
Since an increasing number of companies are migrating their operations to the cloud, the cloud industry is likely to become more advanced. The IT industry is all up for cloud native architecture and software development that is way better than … Read More

Distributed agile teams: 9 hacks that make them work
The world is going insane. Thousands and thousands of things we have in our brain every day; new stuff to do, new trends to discover, new team members, projects that you have to catch up with, self-education, etc. It seems … Read More

Migrate from JavaScript to TypeScript
If you’ve been working in the software development industry (specially Frontend) in the past couple of years, it’s most likely you worked, or still do, in a project in JavaScript. And by now, you’re more than tired from it. Therefore, … Read More

Intro to lenses in Swift: Immutability of objects
To understand lenses in Swift, we should first review what we refer to when talking about immutability of an object. We understand as an immutable object that object which can not be modified once it is created. Its use gives … Read More

Hexagonal architecture in a Symfony project: Working with Domain Identifiers
When we talk about Domain Identifiers, we are talking about the ID of an entity in our domain. Many times, it may seem like a simple procedure to assign an ID to an instance of a domain entity, and therefore … Read More

Top 18 DevOps blogs you should be reading
DevOps engineers have taken over the world, they drive change in IT culture, focusing on rapid IT service delivery. They drive continuous deployment and infrastructure improvements through the adoption of agile. They create collaboration between development, operations and testing. But … Read More

Customized change detection in Angular
Today, I would like to talk about customized change detection in Angular. As developers, we strive to build applications that are snappy, interactive and alive. And reactive applications feel that way. We can think of an Angular application as a … Read More

CSS Grid solution to the problems of float and flexbox
Before going on to explain what CSS Grid is and what it is for, I will explain the current state of the tools we have when developing a layout for our website. Let’s suppose we want to create the following … Read More

Feature Flag pattern in java
In this article, we will briefly introduce the feature flag pattern in java to allow uploading features to production that are not yet finalized. It is very common to see projects that use the Feature Branch mechanism in order to … Read More