I'm a data and cloud engineer who loves solving real-world data challenges and designing scalable systems.
At the core of my work is a simple belief: power comes from simplicity—small, well-designed components composed together, just like monads.
A few ideas that guide me:
- Continuous improvement – small steps compound (monadic thinking in real life).
- Community & collaboration – great systems emerge from connected parts.
- Learning by building – clarity grows when concepts are applied.
“Simplicity first - Complex problems are an aggregation of simple and small ones.”
- Python
- SQL
- Java / JavaScript
- C++
- Bash
- Apache Spark
- AWS (EMR, SageMaker, EC2, Load Balancer, ...)
- Databases (PostgreSQL, Neo4j, …)
- Git & GitHub
- VS Code
- Docker
- Jupyter / Notebooks
- N8N
class DataEngineer:
def __init__(self):
self.name = "Lou Foua"
self.focus = ["Data", "Cloud", "Scalability", "Simplicity (Monad Mindset)"]
self.rule = (
"Turn raw data into reliable, usable knowledge through simple, composable systems."
)
def welcome(self, guest="you"):
print(
f"Thanks for dropping by, {guest}! "
"Let's build something meaningful—one simple component at a time."
)
me = DataEngineer()
me.welcome()
