Transform Your Applications with Rust, AI, and Smart APIs
Specialized in Rust adoption, LLM integration, and AI agent development for companies ready to build faster, safer applications.
What I Offer
Specialized services that help businesses innovate and transform through modern technology solutions.
Rust Adoption & Training
Help your team adopt Rust for new applications or migrate existing systems. From initial assessment to hands-on training, I guide companies through their entire Rust transformation journey.
Start Your Rust JourneyLLM Integration
Seamlessly connect large language models (LLMs) to your applications for enhanced automation, chatbots, and data processing. Custom solutions designed to integrate with your existing systems, ensuring scalability and performance.
Get a Free ConsultationAI Agent Development
Build intelligent AI agents for automation, decision-making, and process optimization. From concept to deployment, I create agents that leverage NLP and gRPC for enterprise-grade performance.
Start Your Agent Projectapi0.ai Solutions
Promote api0.ai, my cutting-edge platform that uses advanced NLP to match user inputs to API endpoints, simplifying integrations for enterprises. Easy-to-use, secure, and designed for minimal setup.
Try api0.ai NowDiscover api0.ai
api0.ai is my flagship solution for enterprises looking to streamline API integrations. Using advanced NLP, it intelligently matches user sentences to the right API endpoints, reducing development time and complexity.
- ✓Minimal setup with JavaScript SDK
- ✓Secure API key management
- ✓Scalable for enterprise needs
const api0 = await Api0.initialize({
apiKey: “your-api-key”,
domainRestriction: “yourcompany.com”
});
const result = await api0.match({
input: “Find products under $50”,
context: {...};
});
My Work
Showcasing successful projects and collaborations across Switzerland and beyond.
Rust Training for Java Developers
Delivering hands-on Rust training programs tailored for Java developers, enabling them to master Rust with the same fluency as Java.
LLM-Powered Chatbot
Integrated an LLM into a client's customer service platform, reducing response times by 40%.
api0.ai Implementation
Helped an e-commerce client map user queries to product APIs, cutting integration time by 50%.
What Clients Say
The experiences of those who have benefited from my services.
The Rust training was transformative for our team. Clear, practical, and perfectly tailored to our needs.
— Fintech Lead, Zurich
api0.ai made our API integrations effortless. It's a game-changer for our platform.
— E-commerce CTO
Ready to Elevate Your Tech Stack?
Contact me for Rust training, LLM integration, or custom solutions that drive innovation and efficiency.
Get in TouchLatest Insights
Thoughts and tutorials on Rust, LLM integration, and AI agent development.
Deadlocks in C vs Rust: What Does Rust Really Prevent?
Deadlocks aren't prevented by compilers—but Rust adds safety guarantees that make writing deadlock-prone code harder. Here's how it compares to C.
Write a function that accepts both sized types (e.g., [u8; 16]) and unsized types (e.g., [u8] or dyn Trait) with ?Sized bound
Understanding the role of ?Sized bounds in Rust trait definitions and leveraging them to create flexible functions that work with both sized and unsized types efficiently
Use supertraits to enforce a hierarchy of behaviors
Leveraging supertraits to establish behavior hierarchies and combining them with where clauses to optimize complex generic algorithms for performance and type safety