Skip to content
View 9dl's full-sized avatar
  • Germany
  • 18:29 (UTC +01:00)

Block or report 9dl

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
9dl/README.md
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()
}

Visitor Counter:

Pinned Loading

  1. Websploit Websploit Public

    New Exploit could be used to gather Vulnerable Links ( PoC )

    NSIS 2

  2. SecureX SecureX Public

    SecureX: Golang anti-debugging solution to protect against reverse engineering and unauthorized debugging programs.

    Go 1 1

  3. ESP32-Jammer ESP32-Jammer Public

    Bluetooth/WiFi/Rc 2.4ghz Jammer

  4. USBFalcon USBFalcon Public

    Automatically copies files from plugged USB drives to a specified location, enabling quick data retrieval for analysis.

    Go

  5. PHP-Reverse-Shell PHP-Reverse-Shell Public

    Simple PHP Reverse Shell

    PHP