Hi there! 👋

A self-motivated, open-source enthusiast who believes in open-source will make the world better. With a strong focus on Kubernetes, cloud-native technologies, and automation.

Homebrew Security Best Practices

Homebrew is a package manager for macOS. The post here aim to provide basic guidance for how to examines Homebrew’s security model, identifies potential risks, and provides security best practices. Understanding the Trust Chain When you install a package with Homebrew, you’re trusting several parties: Homebrew maintainers — Review and approve package formulas Package contributors — Write the installation recipes Original software authors — Create the actual software Download sources — Host the software files How Homebrew Stays Safe Package Review Process Homebrew has a review process for all packages: ...

August 15, 2025 · 4 min · guessi

Who am I?

I’m a Senior Cloud Engineer who loves clean code and creative solutions. Instead of a traditional bio, let me introduce myself the way I think best - through code. Here’s my professional profile in golang: package main import "fmt" type TechnicalArea struct { Title string Technologies []string } type EngineerProfile struct { JobTitle string Summary string TechnicalAreas []TechnicalArea } func main() { myProfile := EngineerProfile{ JobTitle: "Senior Cloud Engineer", Summary: "Specializing in Kubernetes and cloud-native technologies", TechnicalAreas: []TechnicalArea{ { Title: "☁️ Cloud Platforms", Technologies: []string{ "AWS (EKS, EC2, VPC, IAM, CloudFormation)", "GCP (GKE, GCE, VPC, IAM)", "OpenStack", "VMware", }, }, { Title: "🐳 Container & Orchestration", Technologies: []string{ "Kubernetes", "Docker", }, }, { Title: "🏗️ Infrastructure as Code", Technologies: []string{ "Terraform", "Ansible", "Packer", "Vault", "Consul", }, }, { Title: "💻 Programming Languages", Technologies: []string{ "Go", "Python", "Bash", "JavaScript", "TypeScript", }, }, { Title: "📊 Monitoring & CI/CD", Technologies: []string{ "Prometheus", "Grafana", "Jenkins", "GitHub Actions", }, }, }, } fmt.Printf("👋 Hi, I'm a %s\n", myProfile.JobTitle) fmt.Printf("🚀 %s\n", myProfile.Summary) for _, area := range myProfile.TechnicalAreas { fmt.Printf("\n%s:\n", area.Title) for _, tech := range area.Technologies { fmt.Printf(" ✓ %s\n", tech) } fmt.Printf(" ... and more\n") } fmt.Println("\n📫 Let's connect and build something amazing!") } The Result Running this program reveals my technical profile: ...

January 1, 2021 · 2 min · guessi