
Greeting,
I'm Vadim Ghedreutan
- Developer & Sysadmin who builds and maintains.
I do
DevelopmentNetworkingSystem Administrator
and everything in between
3
Countries
Born and raised in Chișinău, Republic of Moldova, I began my career in Portugal as a System Administrator before moving to Germany. Along the way, I worked in various roles outside of development while pursuing freelance projects in web development and IT support.
I’m continuously expanding my skills, exploring emerging technologies, and building apps that bring ideas to life. Whether for client work or personal passion, I love creating functional, well-designed digital experiences — always making sure there’s a bit of fun in the process.
20K+
Hours Invested
HoursInvested.tsx
1const HoursInvested = () => {
2 const [skills] = useState({
3 React: "🚀 My daily driver",
4 ReactNative: "📱 On Quest",
5 WebDesign: "🎨 Pixel-perfect",
6 Java: "☕ Coffee-powered",
7 Networking: "🌐 Always curious",
8 SysAdmin: "🛠️ Battle-tested",
9 Curious: true,
10 ExploringNewTech: "Always 🚀",
11 });
12
13 return (
14 <div className="flex items-center justify-center">
15 <pre className="text-left">
16 {JSON.stringify(skills, null, 2)}
17 </pre>
18 </div>
19 );
20 };