···33 REMOVE_UNUSED_MESSAGES=1 ENV=static ./tmp/main
4455dev:
66- MAIL_PASSWORD=$(rbw get mail.ewen.works) ENV=development air
66+ WAKATIME_API_KEY=$(rbw get 'wakatime api key') MAIL_PASSWORD=$(rbw get mail.ewen.works) ENV=development air
7788start:
99 just build
···225225 var tags []shared.Tag
226226 loadDataFile("tags.yaml", &tags)
227227228228+ for i := range technologies {
229229+ err := technologies[i].CalculateTimeSpent()
230230+ if err != nil {
231231+ color.Yellow("[!!] While calculating time spent on %s: %s", technologies[i].Name, err)
232232+ } else if technologies[i].TimeSpent.Seconds() > 0 {
233233+ fmt.Printf("[ ] Time spent with %s is %s, via wakatime\n", technologies[i].Name, technologies[i].TimeSpent)
234234+ }
235235+ }
236236+228237 var wg sync.WaitGroup
229238 wg.Add(len(locales))
230239