Ratpack Developer – Income and Opportunity

Before we learn about the money, let’s get this question out of the way: What Is Ratpack? Let’s have a look at the definition from the official Ratpack website and the docs: Ratpack is a set of Java libraries for building scalable HTTP applications. It is a lean and powerful foundation, not an all-encompassing framework. … Read more

Zope Developer – Income and Opportunity

Before we learn about the money, let’s get this question out of the way: What Is Zope? Let’s have a look at the definition from the official Zope website: Zope is a free and open-source web application server written in the object-oriented programming language Python. Since its release in 1998, Zope continues to grow into … Read more

CompoundJS Developer – Income and Opportunity

Before we learn about the money, let’s get this question out of the way: What Is CompoundJS? Let’s have a look at the definition from the official CompoundJS website: The compound framework is a framework for creating interactive web applications based on JavaScript. Compound’s formula is ExpressJS + structure + extensions. Where structure is the … Read more

How to Convert an Integer List to a String List in Python

The most Pythonic way to convert a list of integers ints to a list of strings is to use the one-liner strings = [str(x) for x in ints]. It iterates over all elements in the list ints using list comprehension and converts each list element x to a string using the str(x) constructor. This article … Read more