PHP Developer – Income and Opportunity

Annual Income How much does a PHP Developer make per year? The average annual income of a PHP Developer is $65,590 according to PayScale (source) ranging from $44k (10th percentile) to $97k (90th percentile). Let’s have a look at the hourly rate of PHP Developers next! Hourly Rate PHP Developers are well-paid on freelancing platforms … Read more

PowerShell Developer – Income and Opportunity

Annual Income How much does a Powershell Developer make per year? The average annual income of a Powershell Developer is between $93,000 (25th percentile) and $170,000 (75h percentile) with top earners making $170,000 per year and more according to Ziprecruiter (source): Let’s have a look at the hourly rate of Powershell Developers next! Hourly Rate … Read more

How to Remove a List Element by Value in Python?

Problem Formulation Given a Python list and an element (value). How to remove the element (value) from the given list? Here’s an example of what you want to accomplish: Given: List [1, 2, 99, 4, 99] Element 99 Return: List [1, 2, 4, 99] An alternative would return the list with the element (value) 99 … Read more

What is Short Circuit Evaluation in Python?

Short circuit evaluation in any programming language — e.g., Python — is the act of avoiding executing parts of a Boolean expression that have no effect on the final result. For example, if you already know that A is False, you can conclude that A and XXX is False no matter what the result of … Read more

APL Developer – Income and Opportunity

Annual Income How much does a APL Developer make per year? The average annual income of a APL Developer is between $65,000 and $125,000 according to PayScale (source). Let’s have a look at the hourly rate of APL Developers next! Hourly Rate APL Developers are well-paid on freelancing platforms such as Upwork or Fiverr. Related … Read more

Scala Developer – Income and Opportunity

Annual Income How much does a Scala Developer make per year? The average annual income of a Scala Developer is $119,000 according to PayScale (source). Ziprecruiter even reports an annual average pay of $141,810 for Scala developers. Here’s a more fine-grained income distribution per job title for Scala developers based on PayScale’s data: Let’s have … Read more

How to Escape 9 to 5 as a Python Freelancer?

I vividly remember my first semester studying computer science more than 10 years ago. I knew almost nothing about coding. My uncle, a professional software developer, had quickly shown me the programming language “Visual Basic” and told me something which you may find helpful in your own career: “Learning a programming language is like learning … Read more

CΓ³mo convertir una cadena hexadecimal en un entero en Python

Planteamiento del problema Dada una cadena en forma hexadecimal: CΓ³mo convertir una cadena hexadecimal en un entero en Python Por ejemplo, quieres convertir la cadena hexadecimal ‘0xff’ en el entero decimal 255. AquΓ­ hay otros ejemplos: 0x0 –> 0 0x4 –> 4 0x8 –> 8 0x12 –> 18 0x16 –> 22 0x20 –> 32 0x24 … Read more