The UI/UX looks smooth overall.
I noticed a couple of issues: - This page seems to be missing something in the UI (the red button on the top right): https://autocidade.com/painel - This page returns a *405 Method Not Allowed* error: https://autocidade.com/manutencao Screenshot: https://imgur.com/a/l6yvrXJ Also, as a possible improvement, the chatbot could be scoped more like a *RAG system*, so it only answers based on information from your site. On Monday, 22 December 2025 at 07:14:03 UTC+3 Andrey Andrade wrote: > Hi gophers! > > I'd like to share a project I built entirely in Go: AutoCidade ( > https://autocidade.com). > > It's a Brazilian city guide serving data for: > - 20 largest cities in Brazil > - Neighborhoods organized by region > - Area codes (DDDs) for all states > - Local businesses by category > > Tech stack: > - Go 1.24 > - LevelDB for storage > - Native html/template > - No external frameworks > > I also released the data as open JSON files on GitHub: > https://github.com/andradeandrey/autocidade-dados-abertos > > Available datasets: > - cities.json - 20 cities with population, area codes > - states.json - 27 Brazilian states > - ddds.json - 67 area codes mapped to cities > - neighborhoods/*.json - Neighborhoods by city and region > > Quick usage example: > > ```go > type City struct { > Slug string `json:"slug"` > Name string `json:"nome"` > State string `json:"estado"` > DDD string `json:"ddd"` > Population int `json:"populacao_estimada"` > } > > resp, _ := http.Get(" > https://raw.githubusercontent.com/.../dados/cidades.json") > var data struct { Cities []City `json:"cidades"` } > json.NewDecoder(resp.Body).Decode(&data) > ``` > > Feedback welcome! PRs are open if anyone wants to add more cities or > improve the data. > > Cheers, > Andrey > > -- > AutoCidade: https://autocidade.com > GitHub: https://github.com/andradeandrey/autocidade-dados-abertos > -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion visit https://groups.google.com/d/msgid/golang-nuts/600dab51-24c6-4ee3-87f2-981441836a13n%40googlegroups.com.
