👋 Hi, I’m Prabin Kharel

Full Stack Developer with 5+ years of experience, based in Australia and currently working at DIT AgTech. I specialize in Laravel, Symfony, and Go, helping AgTech and product-driven teams build scalable, API-first systems.

Passionate about clean, maintainable backend architecture, I’ve been building software professionally since 2019, supporting data-driven platforms in agriculture and industry.

🐘 PHP
<?php
class Experience
{
public $current = [
'role' => 'Full Stack Developer' ,
'company' => 'DIT AgTech' ,
'period' => '2022 - Present' ,
'location' => 'Queensland, Australia' ,
];
public $previous = [
'role' => 'OpenEdge Developer' ,
'company' => 'Javra Software B.V.' ,
'period' => '2018 - 2019' ,
];
public function getAchievements ()
{
return [
'🚀 Built IoT pipeline processing 5,000+ daily sensor readings' ,
'⚡ Reduced API response time by 40%' ,
'☁️ Maintained 99.9% AWS uptime' ,
'📊 Created React dashboards for real-time data' ,
];
}
}
⚛️ React.js
import React from 'react' ;
const Education = () => {
const masters = {
degree: 'Master in Information Technology' ,
university : 'Charles Sturt University' ,
period : '2019 - 2021' ,
location : 'Sydney, Australia' ,
focus : 'Cloud Computing & Internetworking'
};
const bachelors = {
degree : 'Computer Engineering' ,
university : 'Tribhuwan University' ,
period : '2013 - 2017' ,
location : 'Pokhara, Nepal'
};
return (
<div className = "education-profile" >
<h2> 🎓 Academic Journey </h2>
<div> ☁️ Cloud Computing Specialist </div>
<div> 🌐 Network Engineering Expert </div>
<div> 🔧 System Architecture </div>
</div>
);
};
export default Education;
🐹 Go
package main
import "fmt"
type TechStack struct {
Frontend [] string
Backend [] string
Cloud [] string
IoT [] string
Tools [] string
Experience int
}
func main () {
skills := TechStack {
Frontend : [] string {
"⚛️ React.js" , "📜 JavaScript" ,
"🎨 HTML5/CSS3" , "📈 Chart.js" ,
},
Backend : [] string {
"🐘 Laravel/PHP" , "🗄️ MySQL/PostgreSQL" ,
"🔄 REST APIs", "🐹 Golang",
},
Cloud : [] string {
"☁️ AWS (EC2, SQS, RDS)" , "🐳 Docker" ,
},
IoT : [] string {
"🛰️ Satellite Data" , "📡 Device Management" ,
},
Tools : [] string {
"Git" , "VS Code" , "Postman" , "JIRA" ,
},
Experience : 5 ,
}
fmt . Printf ( "🚀 Full Stack Developer\n" )
fmt . Printf ( "☁️ AWS & IoT Specialist\n" )
fmt . Printf ( "🛠 Experience: %d+ years\n" , skills.Experience )
}