mastodon.ie is one of the many independent Mastodon servers you can use to participate in the fediverse.
Irish Mastodon - run from Ireland, we welcome all who respect the community rules and members.

Administered by:

Server stats:

1.7K
active users

#go

5 posts5 participants0 posts today

Oooo... that's neat. Pulls your stats from OGS. avavt.github.io/gotstats/#/use #go #igo #baduk #weiqi

Over 8 years I've played 347 different people! The future is amazing! Yay Internet!

  • Member since: 18 Mar, 2017.
  • Plays 0.226 games per day on average.
  • Most active day: 30 Jun, 2018 with 14 finished games.
  • Played in 1 tournaments.
  • Longest win streak: 14 wins in a row, from Aug 26, 2023 to Sep 11, 2023.
  • Biggest win: 183.5 points victory against rabbiliu0412 (17k) on Aug 8, 2020.
  • Longest game: Aug 2, 2017 lasting 3 months 26 days 21 minutes 27 seconds
  • Congratulations, you have lost your first 50 games!
avavt.github.ioGot Stats?

“…there was an underground urgency…” #1952Club #Go #JohnClellonHolmes

As I've no doubt mentioned on numerous occasions, one of the delights of any reading event is digging around on your shelves to see what books you have unread which would fit in with the requirements! I usually try to pick titles for our Club Reading weeks which are already on the TBR, and today's book is a fine example. In fact, this is a subject I ruminated on a bit in…

kaggsysbookishramblings.wordpr

Kaggsy's Bookish Ramblings · “…there was an underground urgency…” #1952Club #Go #JohnClellonHolmesAs I’ve no doubt mentioned on numerous occasions, one of the delights of any reading event is digging around on your shelves to see what books you have unread which would fit in with the requ…

Spent some time this evening debugging a deadlock issue in a personal tool written in Go. It's simple with just enough complexity that it might be useful to an advanced beginner. I used delve to inspect my goroutines and figure out what was causing the application to hang. Check it out and let me know what you think. #go #delve #deadlock #debugging

blue42.net/code/go-deadlock-de

blue42.netDebugging a Go Deadlock With Delve · blue42A simple real world example of debugging a Go application deadlock using delve from the command line. The application is a personal troubleshooting tool I use at work. Everything works as expected after application startup, but hangs after running overnight. Join me as I find out why.

"It’s not that hard to build a fully functioning, code-editing agent.

It seems like it would be. When you look at an agent editing files, running commands, wriggling itself out of errors, retrying different strategies - it seems like there has to be a secret behind it.

There isn’t. It’s an LLM, a loop, and enough tokens. It’s what we’ve been saying on the podcast from the start. The rest, the stuff that makes Amp so addictive and impressive? Elbow grease.

But building a small and yet highly impressive agent doesn’t even require that. You can do it in less than 400 lines of code, most of which is boilerplate.

I’m going to show you how, right now. We’re going to write some code together and go from zero lines of code to “oh wow, this is… a game changer.”

I urge you to follow along. No, really. You might think you can just read this and that you don’t have to type out the code, but it’s less than 400 lines of code. I need you to feel how little code it is and I want you to see this with your own eyes in your own terminal in your own folders.

Here’s what we need:

- Go
- Anthropic API key that you set as an environment variable, ANTHROPIC_API_KEY"

ampcode.com/how-to-build-an-ag

ampcode.comHow To Build An Agent | AmpBuilding a fully functional, code-editing agent in less than 400 lines.

[[g0v]] looks great:

en.wikipedia.org/wiki/G0v_move

#go g0v.tw

Gemini:

> This decentralized, non-hierarchical community of hackers, activists, and citizens develops open-source tools and platforms to promote government transparency, citizen participation, and collaborative problem-solving. They use the internet to "fork" the government – creating alternative, open versions of government services and data.

en.wikipedia.orgg0v movement - Wikipedia

Got localization and a planned pipeline working on apply.coop for @limeleaf last evening. Shout out to Alex Edward's post alexedwards.net/blog/i18n-mana and code from the folks working on @Codeberg for pointing me in the right direction to find a solution that doesn't involve external dependencies in Go (aside from golang.org/x packages)

Also, if you've never heard of @weblate you should absolutely check it out. Super awesome project!

www.alexedwards.netI18n in Go: Managing Translations - Alex Edwards

alojapan.com/1248761/japan-go- Japan Go IPO Summit Announces Roster of Expert Speakers for Event June 5th in Tokyo #5th #Announces #event #expert #for #go #in #IPO #Japan #june #of #roster #Speakers #summit #Tokyo #TokyoTopics #東京 #東京都 Kura Sushi Executive to Deliver Keynote Address on Elements of Success for Cross-Border Listings TOKYO and NEW YORK, April 16, 2025 /PRNewswire/ — The Japan Go IPO Summit, co-hosted by Nasdaq and MarcumAsia, is proud to announce an exception…

TIL in #Go, if you create an HTTP cookie with MaxAge being -1, a perfectly valid value, net/http will encode it as MaxAge=0. Really annoying if you need very specific tests. Yet another entry in the long list of "we know better than you" for the standard library.