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:#
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
Creating Your Own Small Scale Application Server Using PubSub Pattern by Jean-Pierre Chauvel on Wednesday, April 24, 2024
I recently had the idea to develop a small proof-of-concept application server using the built-in pub/sub functionality of Redis, and decided to get started on it.