package main
import (
"fmt"
"strings"
)
type Developer struct {
Name string
Code []string
Interests []string
OperatingSystems []string
ToolsUsed []string
IDEs []string
}
func (d Developer) DisplayProfile() {
fmt.Printf("π Hello! I'm %s, a versatile developer with a passion for technology.\n\n", d.Name)
fmt.Printf("π» Coding Languages:\n %s\n\n", strings.Join(d.Code, ", "))
fmt.Printf("π Areas of Interest:\n %s\n\n", strings.Join(d.Interests, ", "))
fmt.Printf("π₯οΈ Operating Systems:\n %s\n\n", strings.Join(d.OperatingSystems, ", "))
fmt.Printf("π οΈ Tools & Technologies:\n %s\n\n", strings.Join(d.ToolsUsed, ", "))
fmt.Printf("ποΈ Preferred IDEs:\n %s\n", strings.Join(d.IDEs, ", "))
}
func main() {
developer := Developer{
Name: "9dl",
Code: []string{"Go (Golang)", "C#", "Next.js", "Python", "C++"},
Interests: []string{"Cybersecurity", "Reverse Engineering", "Backend Development", "Frontend Development & UI/UX"},
OperatingSystems: []string{"Windows 11 with WSL2 (Kali Linux, Ubuntu)"},
ToolsUsed: []string{"Git Bash", "VMware Workstation", "MobaXterm", "PuTTY", "Postman API Platform"},
IDEs: []string{"JetBrains WebStorm", "JetBrains GoLand", "JetBrains CLion" "JetBrains Rider" "JetBrains Fleet"},
}
developer.DisplayProfile()
}
15yo Pentester, Security Engineer, and Full-Stack Developer
-
Obscurity.cc
- Germany
-
18:02
(UTC +01:00)
Highlights
Pinned Loading
-
NullOps-Suite
NullOps-Suite PublicMultifunctional Penetration Testing Tool developed in Go *24 Modules*
Go 1
-
RobotsSniffer
RobotsSniffer PublicTool to analyze and parse website robots.txt for crawler rules.
C#
-
-
Axion-Security/Atomic
Axion-Security/Atomic PublicQuantum Security Firmware for M5Stack CPlus Devices
C++ 5
-
Axion-Security/GoInjection
Axion-Security/GoInjection PublicAutomated SQL Injection written in Golang
Go 3
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.