Hi, I'm Mike Donahue,
- π Thankfull for God's presence in my life!!
- π± FOREVER curious and learning!
- π€Ί Security Champion
- π« AWS Architect Trained (but haven't take the test yet)
- π§βπ€βπ§ Customer 1st Oriented
- π» Computer Nerd
- π¨ DIYer
- β‘ Electronics Builder / Tinker
- π‘ Amature (Ham) Radio Operator
- π‘ Environmentally Conscious / Responsible
- π Striving to become a Renaissance Person in the 21st Century (polymath / polyglot)
package main
import (
"fmt"
"strings"
)
var (
languageList = map[string][]string{
"intermediate": []string{"Java", "Python", "Typescript"},
"advanced": []string{"C", "C++", "C#", "Go", "Javascript"},
"web": []string{"HTML", "CSS"},
}
toolList = map[string][]string{
"coding": []string{"AWS", "Docker", "Git", "Github/Actions", "VSCode"},
"network": []string{"Sockets", "TCP/IP", "HTTPS", "Wireshark"},
}
)
func main() {
fmt.Println("\nFavorite Languages:")
for level, lang := range languageList {
fmt.Printf("\t%s: %s\n", level, strings.Join(lang[:], ", "))
}
fmt.Println("\n\nFavorite Tools:")
for toolType, toolName := range toolList {
fmt.Printf("\t%s: %s\n", toolType, strings.Join(toolName[:], ", "))
}
}