// About Me
const aboutMe = {
name: "Denuwan",
role: "Software Developer",
favoriteTech: ["JavaScript", "Golang", "Python", "C"],
tagline: "Turning ideas into reality through code π",
};
console.log(`Hi there! I'm ${aboutMe.name}, a ${aboutMe.role}.`);
package main
import "fmt"
func main() {
skills := []string{
"Frontend Development: React, Tailwind CSS",
"Backend Development: FastAPI, Node.js, Echo",
"Database Management: MySQL, PostgreSQL, MongoDB",
"Cloud Platforms: GCP, AWS",
"DevOps: Docker, Kubernetes, CI/CD",
}
fmt.Println("π§ My Skills:")
for _, skill := range skills {
fmt.Println("- ", skill)
}
}
# Projects
projects = [
{
"name": "Tea Supply Management App",
"description": "A platform for tracking daily expenses and transactions.",
"technologies": [
"Next.js",
"PostgreSQL",
"React Charts"
],
},
{
"name": "MedAssist ChatBot",
"description": "Conversational agent for medical queries.",
"technologies": [
"FastAPI",
"LangChain",
"Vertex AI",
"Google Cloud Platform",
],
},
]
print("π Notable Projects:")
for project in projects:
print(f"π {project['name']}: {project['description']}")
print(f" πΉ Technologies: {', '.join(project['technologies'])}")
#include <stdio.h>
// Fun Fact
int main() {
printf("π Fun Fact: ");
printf("I wrote my first program in C and it was a simple 'Hello, World!'.\n");
return 0;
}
// Connect with Me
const socialLinks = {
LinkedIn: "https://linkedin.com/in/denuwan-kalubowila",
GitHub: "https://github.com/Denuwan-Kalubowila",
};
console.log("π« Connect with Me:");
console.log(socialLinks);