type Gear struct {
Name string
Desc string
Tags []string
}
var hardware = map[string][]Gear{
"computers": {
{Name: "Honor MagicBook 16", Desc: "An old-timer... never let me down.", Tags: []string{"Laptop"}},
},
"phones": {
{Name: "OnePlus 9 Pro", Desc: "Battery life. Storage. Customization.", Tags: []string{"Smartphone"}},
},
}
var operationSystem = []Gear{
{Name: "Arch Linux", Desc: "Flexibility. Control. Minimalism. For those who know what they're doing.", Tags: []string{"OS"}},
{Name: "Kali NetHunter", Desc: "Mobility. Quality. Innovation.", Tags: []string{"OS"}},
}
var baseSoftware = []Gear{
{Name: "Vim", Desc: "Niche? - no. Professional.", Tags: []string{"Editor"}},
{Name: "Yakuake", Desc: "Speed. Adaptability. Design", Tags: []string{"Terminal"}},
}
var development = []Gear{
{Name: "VS Code", Desc: "Freedom. Choice. Focus.", Tags: []string{"IDE"}},
{Name: "GoLand JetBrains", Desc: "Support. Growth. Possibilities.", Tags: []string{"IDE"}},
}Jomel.Tr