hellhound ©#
def main():
print("Hi, my name is Jean-Pierre Chauvel and I'm a Software Engineer and Pythonista.")
print("This blog is dedicated to tech stuff, more specifically: Python related stuff.")
if __name__ == "__main__":
main()
Recent posts:#
Benchmarking Python Flavors: PyPy, CPython (standard / free-threaded / jit), Cython & Numba by Jean-Pierre Chauvel on Thursday, October 16, 2025
Now that Python 3.14 is out, let’s compare how CPython fares against PyPy! Python has many implementations and optimization tools. This repository contains a focused benchmarking suite that compares several of them across three workload classes — compute-bound, I/O-bound, and parallel workloads. The goal of this article is to explain what was measured, how the experiments are organized, and what the results typically show when you run the suite.
Creating a Pyodide-Powered GPT-3.5 Turbo Chat Application: A Proof-of-Concept by Jean-Pierre Chauvel on Wednesday, March 12, 2025
Creating a Simple Solana dApp with Anchor and AnchorPy by Jean-Pierre Chauvel on Thursday, February 27, 2025
Exploring Python Performance: PyPy vs CPython vs Numba by Jean-Pierre Chauvel on Monday, May 13, 2024
Python developers often face the decision of choosing between different implementations for their projects, especially when performance is a crucial factor. In this blog post, we delve into a comparative benchmarking study between PyPy, CPython, and Numba, focusing on calculating Pi value using a custom script.
Modernizing Vim: Transforming it into a Powerhouse IDE Comparable to VSCode! by Jean-Pierre Chauvel on Monday, April 29, 2024



