Debugging a Mixed Python and C Language Stack

Debugging is difficult. Debugging across multiple languages is especially challenging, and debugging across devices often requires a team with varying skill sets and expertise to reveal the underlying… Read more

Similar

How to Always run Python 3 from Bash

Given a directory that contains: We can create a runme.sh file to always make sure we are running python 3. Create a shell script Create a file called runme.sh and put the following code in: Now instead of running python app.py or python3 app.py, you can ... (more…)

Read more »

JPMorgan still has its Python 2 issues

As we were the first to report in September 2019, JPMorgan had a few issues with Python's decision to stop supporting Python 2 from January 2020. - The U.S. bank built its Athena risk and pricing platform in Python 2.7 and had 35 million lines of code to ... (more…)

Read more »

Using both Python 2 and 3 in Windows

The release of Django 2.0 was a milestone in the history of Python since it completely dropped support for Python 2.x. I am a long time user of Django and, loyal to the philosophy of “if it is working don’t change” I was always using Python 2.x. (more…)

Read more »