133 Followers
103 Following
391 Posts
Builder of Software with head in AWS 🌩️, hardware hacker
Twitterhttps://twitter.com/wolfeidau
Githubhttps://github.com/wolfeidau
Bloghttps://www.wolfe.id.au
This interactive tour is fantastic way to learn about the new features in Go 1.24 https://antonz.org/go-1-24/ #golang
Go 1.24 interactive tour

Weak pointers, faster maps, directory-scoped access, and more.

Merry freaking Christmas
Baked up some banana bread 🍌🍞 to have with coffee. #baking

Quick Go Tip: Always create a custom HTTP client

Go's net/http package provides convenient Get, Post, and other HTTP method as top-level package functions:

resp, err := http.Get("http://example•com/")

While these are great for prototyping and quick throwaway scripts, don't use them in production.

Reason: They don't time out.

Instead, create an http.Client and set its Timeout field. It's almost as easy as using top-level HTTP calls:

client := &http.Client{
Timeout: 10* time.Second,
}

resp, err := client.Get("http://example•com")

#golang

Many years later I still have a `~/Code/notgopath` which I use for go projects. Kinda just stuck with it after the transition away from $GOPATH. #golang #softwaredevelopment

Thanks to a couple contributors, Ghostty has built-in VCS branching characters. Kitty introduced this[1] and I think Ghostty is the second terminal to implement it. The cool detail in this one: for the end markers they're drawn with a true fade (see line 13).

[1]: https://github.com/kovidgoyal/kitty/pull/7681

Add branch drawing symbols to box characters by rbong · Pull Request #7681 · kovidgoyal/kitty

This symbols are for drawing git-like directed acyclic graphs in the terminal. Similar to box drawing characters, it is difficult to align these symbols perfectly when they're implemented only ...

GitHub
Finished product 😂🧁
Recipe I am following is https://youtu.be/D82vniVTqe0 made it a few times, just gotta remember bicarb soda (australian name) is actually baking soda...
Starbucks Banana Bread Copycat Recipe

YouTube
They may look tired, but they are going to make a great banana cake. Been out bike riding today so I need some energy 😅🚴‍♀️🧁 #baking #publicholiday
Stolen from a Kei car group #WeirdCarMastodon