101010.pl is one of the many independent Mastodon servers you can use to participate in the fediverse.
101010.pl czyli najstarszy polski serwer Mastodon. Posiadamy wpisy do 2048 znaków.

Server stats:

485
active users

#vlang

0 posts0 participants0 posts today

I updated my personal website fholio.de. I didn't like that I had a linktr.ee account even though that's the simplest homepage anybody can make, and also I wanted to get rid of the Google Docs based dev log. So I programmed a static website generator in #vlang (@vlang), and I enjoyed that a lot.
The new fholio.de is purely HTML and CSS. It might look a bit frumpy, but I really don't care for most modern web design things.

Friedrich Hanisch's PortfolioFriedrich HanischFriedrich Hanisch's Portfolio - games I programmed and designed during game jams, or for Rat King Entertainment.

#golang devs are used to calling `type` fields `typ` since `type` is a reserved keyword. It used to be like that in #vlang too, until today. Now we can use keywords in enums, fields, and function names.

No more `product.typ`, `mutex.@lock`, `@select()` !

product.type
mutex.lock
select()

Been trying to make a hello world program to compile with build.zig.. but turns out their api docs have no usage examples (something i love to see in #vlang one) and also they change the api on every new release, so i can't find any single example online to start with. Took me a while to get it working, but the feeling is that i'll need to change things every now and then after each release