Developer - Sales Engineer - French Market

Work with me

About/
Work with me

My technical knowledge, my business background, as well as my ability to communicate effectively with both technical and non-technical stakeholders, make me an ideal candidate in a pre-sales organization.

I have experience collaborating with developers to design and implement solutions, I also work with C-level executives to identify and prioritize projects. I am confident in my ability to excel in a role that involves bridging the gap between technical products and decision-makers. Learn more

I have a deep understanding of web technologies and how they work, and I am always eager to learn more and stay up-to-date with the latest developments in the field. My technical knowledge and expertise, combined with my ability to communicate effectively with technical and non-technical stakeholders, make me an ideal fit for a role in technical sales or sales engineering.

I have experience working with developers to design and implement solutions, and I collaborate with business leaders to identify and prioritize projects. I am confident in my ability to evolve in a role that involves bridging the gap between technical products and decision makers.

I am passionate about the technical aspects of the web and I am eager to apply my knowledge and skills to help drive the success of an organization through technical sales or sales engineering. I am open to discussing opportunities and exploring potential collaborations.

My latest projects / achievements

Discover my latest projects. Mostly web development projects


Contact me / Ask me a question

Do you have a question about an article I wrote or a talk I gave? Are you looking to work with me? Let's chat

My latest articles / on development


Create a router between 2 VMs on Proxmox /
Connect 2 machines in different subnets via a homemade router

Setup of the experiment Machine Interface Bridge IP PC1 eth0 vmbr10 192.168.10.2/24 ROUTER eth0 vmbr10 192.168.10.1/24 ROUTER eth1 vmbr20 192.168.20.1/24 PC2 eth0 vmbr20 192.168.20.2/24 Bridge ( vmbr 10 and 20) You can create the bridge by modi...

Kubernetes CI-CD & GitOp with ArgoCD /
Git automation

Let’s do this step-by-step. We’ll break it into two main phases: Phase 1: Continuous Integration (CI). We’ll set up a workflow where git push automatically builds and publishes your app’s Docker image. Phase 2: Continuou...

Deploy WordPress on a Kubernetes K3s cluster /
Learn about PVC, secrets and more

Persistent Storage: In Docker, you’d use a volume like -v /my/files:/var/www/html to save your data. In Kubernetes, you need a way to do this that works even if your app (Pod) gets moved to a different node. We’ll use PersistentVolu...

Setup basic CI/CD with Github Action and Node.js /
DevOps Fundamentals

Set up the app npm init -y Install Express, Mocha, and Chai (for the tests). Here, we install chai@4.3.10 as it handles CommonJS imports, while version 5 does not. npm install express npm install mocha chai@4.3.10 supertest --save-dev Create th...

How to get started with Kubernetes /
Create a cluster and deploy an app with K3s

Install K3s To install K3S, you need at least 2 VMs. In my case, I decided to use Debian VMs on Proxmox. The first VM will be the master node, and the second will be the worker node. The master node orchestrates the cluster and distributes the ...