Skip to content
View hussaratkuro's full-sized avatar
💭
🐧
💭
🐧

Block or report hussaratkuro

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
hussaratkuro/README.md

About me

package main

import "fmt"

type Person struct {
    Name                 string
    Role                 string
    Languages            []string
    ProgrammingLanguages []string
    DevOpsTools          []string
}

func (p Person) Greet() {
    fmt.Printf("Hello my name is %v and my role at my current job is %s\n", p.Name, p.Role)

    fmt.Println("\nI speak:")
    for _, lang := range p.Languages {
        fmt.Printf("- %s\n", lang)
    }

    fmt.Println("\nI program in:")
    for _, progLang := range p.ProgrammingLanguages {
        fmt.Printf("- %s\n", progLang)
    }

    fmt.Println("\nI work with the following DevOps tools and technologies:")
    for _, tool := range p.DevOpsTools {
        fmt.Printf("- %s\n", tool)
    }

    fmt.Println("\nThanks for dropping by, hope you find some of my work interesting. 👋")
}

func main() {
    me := Person {
        Name:                 "Huszár Bence",
        Role:                 "DevOps Engineer",
        Languages:            []string{"hu_HU", "en_US"},
        ProgrammingLanguages: []string{"GO", "Lua", "PHP", "Python", "C#", "jQuery", "HTML", "CSS", "JavaScript"},
        DevOpsTools:          []string{"AWS", "Docker", "K8s", "Ansible", "traefik", "Nginx"},
    }

    me.Greet()
}

DevOps Engineer at eHÁZ

Operating systems I use(d)

Hypervisors I use(d)

Pinned Loading

  1. compose.yml compose.yml Public

    docker-compose templates

    Shell

  2. dotfiles dotfiles Public

    My current dotfiles and software I daily drive for work { tailored version of prasanthrangan/hyprdots, go check the original :) }

    Lua

  3. gopass gopass Public

    Cli password generator written in go

    Go

  4. charmvpn charmvpn Public

    TUI VPN manager app written in go. Made for the networkmanager-openvpn package

    Go

  5. init.lua init.lua Public

    Neovide dotfiles

    Lua

  6. ansible.yaml ansible.yaml Public

    Ansible automation playbooks in different categories