Fun post on building IDE features into Excel: https://blog.querystorm.com/index.php/2018/04/04/whynow/
miniblog.
Related Posts
I've written a website that archives all my posts/tweets/toots/skeets across different microblogging platforms!
It's fun to be able to see similar posts that I wrote at completely different times. It also lets me edit links that have bitrotted.
Do any tech streamers try new software live? It'd be a really fun way of doing UX testing.
I'm changing method definition syntax in my language:
// old
fun (this: Int) inc(): Int { this + 1 }
// new
method inc(this: Int): Int { this + 1 }
The original syntax was inspired by Go, but the new syntax is more grep-friendly and perhaps more readable. Not sure about the verbosity though. Thoughts?