package main
import (
"play.ground/profile"
)
func main() {
me := profile.NewBio("Cezar G.B")
stack := profile.NewStack(
[]string{"Go", "Elixir", "Java", "C", "Javascript"},
[]string{"Postgres", "Mysql", "SQLite", "MongoDB", "DynamoDB", "Cassandra"},
[]string{"RabbitMQ", "AWS", "Vue.js"},
[]string{"Docker", "Kubernetes", "Elm", "Haskell"},
)
_ = me
_ = stack
}
-- go.mod --
module play.ground
-- profile/profile.go --
package profile
type Bio struct {
Name string
}
type Stack struct {
languages []string
databases []string
misc []string
ongoing []string
}
func NewBio(name string) *Bio {
return &Bio{name}
}
func NewStack(languages, databases, misc, ongoing []string) *Stack {
return &Stack{languages, databases, misc, ongoing}
}
🏠
Working from home
- Dourados/MS
Pinned Loading
-
cachedpath
cachedpath PublicA Go library inspired by the Python cached_path, providing a unified and simple interface to access local and remote files with automatic caching.
Go
-
fundos
fundos PublicProjeto Final de Conclusão de Curso - Analisador de Fundos de Investimentos do Brasil
Rust
-
anp_fuel_price_analysis
anp_fuel_price_analysis PublicAnálise de Preços de Combustíveis no Brasil (2024)
Jupyter Notebook
-
python_para_investimentos
python_para_investimentos PublicForked from codigoquant/python_para_investimentos
Aplicações de Python para Finanças e Investimentos
Jupyter Notebook
-
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.