Komang Frederich Blessy
user@komang-blessy:~
|

Komang Frederich Blessy

|

Backend Engineer who loves building tools that make developers' lives easier

|
|

# Featured Projects

JSON Playground
JSON Playground
A versatile and user-friendly online JSON editing tool
javascript
// Format and validate JSON
const formatJSON = (json) => {
  try {
    return JSON.stringify(
      JSON.parse(json), 
      null, 
      2
    );
  } catch (e) {
    return "Invalid JSON";
  }
}
Bagirata App
Bagirata
Split bill app with OCR technology for iOS
swift
// Scan receipt with OCR
func scanReceipt(image: UIImage) -> Receipt? {
  let scanner = OCRScanner()
  let items = scanner.detectItems(from: image)
  return Receipt(
    items: items,
    total: calculateTotal(items)
  )
}
More Projects
More Projects
Check out my other work
ls -la websites/
|

# About Me

I'm a Backend Engineer with a passion for building scalable, reliable, and maintainable systems. I also enjoy frontend and mobile development.

go
package main

// Developer represents my skills and expertise
type Developer struct {
	Languages []string
	Frameworks []string
	Cloud []string
	Databases []string
	Tools []string
}

func main() {
	me := Developer{
		Languages: []string{"Golang", "JavaScript", "Swift"},
		Frameworks: []string{"React", "Next.js"},
		Cloud: []string{"GCP", "AWS"},
		Databases: []string{"PostgreSQL", "MongoDB", "Redis"},
		Tools: []string{"Docker", "Kubernetes", "Git"},
	}
	
	// Always learning new technologies
	me.LearnNewSkills()
}

With experience at companies like Dealls, Erajaya, and kumparan, I've worked on a variety of projects from centralized order services to video platforms and file upload systems.

When I'm not coding, I'm mentoring beginners in Golang development and working on my own projects like Bagirata, a split bill app for iOS.

|

# Get In Touch

I'm always open to new opportunities and collaborations. Feel free to reach out!

// Contact methods
go
package contact

import (
	"fmt"
	"net/smtp"
)

// ContactInfo contains my contact information
type ContactInfo struct {
	Email    string
	GitHub   string
	Location string
}

// GetContactInfo returns my contact details
func GetContactInfo() ContactInfo {
	return ContactInfo{
		Email:    "ifrederich@icloud.com",
		GitHub:   "https://github.com/notblessy",
		Location: "Jakarta, Indonesia",
	}
}

// SendMessage sends me an email
func SendMessage(message string) error {
	contact := GetContactInfo()
	fmt.Println("Sending message to:", contact.Email)
	
	// Message sent successfully!
	return nil
}