en.osm.town is one of the many independent Mastodon servers you can use to participate in the fediverse.
An independent, community of OpenStreetMap people on the Fediverse/Mastodon. Funding graciously provided by the OpenStreetMap Foundation.

Server stats:

267
active users

#go

6 posts6 participants0 posts today

I’m a wordy bastard. I really struggle with 500 characters. I’d struggle with 500 words sometimes. It's been hard to find a flow here (despite Mona's fantastic thread generator.)

I’m creating a #blog to house longer writings and share thoughts here without requiring anyone to visit platforms so many gathered here to avoid.

I'm using #Hugo instead of my usual #WordPress and dipping my toes into #Go and #TailwindCSS. I've only created the local structures, but so far, I dig it! It's #FOSS too!

I'm really surprised that log/syslog, the official go library implementing syslog, is:

  1. Using the old RFC 3164 instead of the newer RFC 5424. I understand the need to support legacy stuff, but having a recent language support legacy as only option is surprising.

  2. Not even fully compliant with RFC 3164, as stated by this issue. This sucks because stuff like @grafana Alloy isn't parsing it.

Go version go version go1.22.1 linux/amd64 Output of go env in your module/workspace: GO111MODULE='' GOARCH='amd64' GOBIN='' GOEXE='' GOEXPERIMENT='' GOFLAGS='' GOHOSTARCH='amd64' GOHOSTOS='linux' ...
GitHublog/syslog: generated syslog format is not RFC-compliant · Issue #66666 · golang/goBy svent
#go#golang#syslog

When I first learned #GoLang #Go I remember not being happy about the lack of exceptions and always checking the error returns. I never got over it. I’m not a Go user and don’t really know it currently. But now I am a #RustLang #Rust user and learner. Rust works in a very similar way. Yes, I was skeptical at first (and said so here) but now I’m okay with it. Options and Results make sense.

Maybe I just didn’t give Go a fair shake?

> Modern languages are not using the zero-character to terminate strings, but C does it a lot.

This is NOT true. Why is everybody confusing C (the language) with the C Standard Library? The C language doesn't know anything about terminating strings with a zero character (0x00) byte. What you referring to is the C Standard Library, not C the language.

youtu.be/5_oqWE9otaE?si=Su31eQ

#C#Rust#Zig

Share of programming languages used by #GTK3 / #GTK4 applications (2025-03-16):

28% #Python
21% #Vala
20% #Rust
17% #C
06% #C++ #Cplusplus
06% #gjs #Javascript
04% Other: #Csharp #Go #Lua #Haskell #Swift #Typescript #Crystal #Swift #D #Perl

63% use GTK4 (90% of them use #libadwaita), while still 37% use GTK3

Method: Source [1] lists 543 awesome #gtk (3/4) #opensource applications and their #programminglanguage

[1] github.com/valpackett/awesome-

#GTK #FLOSS #Linux #Programming #Gnome

@GTK @gnome

I found myself agreeing with everything in this post from Steve:

steveklabnik.com/writing/choos

I don't think that the brigade of "Rewrite it in Rust" people is nearly as common or big as all too often claimed, but for if you ever appreciated what either Steve or I ever had to say, and have an impulse to brigade a project on GutHub or social media (even accidentally! If you arrive early you might not realize 2000 people are coming right after you), please don't. It's pointless. It's draining. It can be abusive. And it's counter productive.

steveklabnik.comChoosing Languages

»TypeScript zehnmal schneller – Microsofts Pläne für die Programmiersprache:
Microsoft hat die ersten Schritte unternommen, um TypeScript durch eine native Compiler-Implementierung in Go stark zu beschleunigen.«

Da bin ich mal gespannt, ob nun @TypeScript von Microsoft das Frontend WebDev nun auch wirklich effizienter macht ;)

🧑‍💻 heise.de/news/Microsoft-Native

heise online · Microsoft: Native Portierung nach Go soll TypeScript zehnmal schneller machenBy Maika Möbus

Kudos to the #TypeScript team for doing the port to a native language! Truly amazing! 🎉

devblogs.microsoft.com/typescr

Altogether, their choice of using #Go makes perfect sense!

However, there are always trade-offs. One of the biggest trade-offs, IMHO, is:
Not being able to use a _common representation of the AST_ in all language tools - this is an explicit goal for the team behind void(0):

voidzero.dev/

Parse once, use anywhere!

1/2

TypeScript · A 10x Faster TypeScript - TypeScriptEmbarking on a native port of the existing TypeScript compiler and toolset to achieve a 10x performance speed-up.

That's a great explanation, why #Microsoft #TypeScript is going to use #Go, and not #Rust, for porting:

* w/ garbage collection
* w/o borrow checker
* w/ cyclic dependencies
* w/ inline memory objects
* w/ shared memory concurrency

In short, their code base is so convoluted that it's easier to port it's flaws to another C-like language than actually fixing the issues.

youtube.com/watch?v=10qowKUW82

I think it’s fun to see all the support and rant reactions about Microsoft rewriting #TypeScript tooling in #Go instead of C# or Rust.

Notice that I said "fun", not "interesting". It’s fun because this is just the latest version of "vim vs. emacs" or "tabs vs. spaces". Everyone has opinions, everyone has their favorite programming language, but at the end of the day, 0% (or a very close number) of the people ranting about it are actually working on the project. It’s always easy to criticize someone else’s work when you have nothing at stake.