Lucas Meijer (@lucasmeijer) 's Twitter Profile
Lucas Meijer

@lucasmeijer

Making things. ex-Unity

ID: 14912780

linkhttp://lucasmeijer.com calendar_today26-05-2008 20:15:18

16,16K Tweet

6,6K Followers

1,1K Following

Lucas Meijer (@lucasmeijer) 's Twitter Profile Photo

I need to get a c# async/await based program to get much faster. Profiling this code feels undoable. The callstacks are super deep with previous async sections on the callstack. How do people profile their async/await?

Lucas Meijer (@lucasmeijer) 's Twitter Profile Photo

Some good examples of recent c# async/await drama: blog.s-schoener.com/2025-09-22-asy… Do all async/await people just live like this?

Some good examples of recent c# async/await drama:  blog.s-schoener.com/2025-09-22-asy…

Do all async/await people just live like this?
Lucas Meijer (@lucasmeijer) 's Twitter Profile Photo

whoa so much ai news. so much stuff is launching, the hardest part is choosing which if any to give a shot. takes so long to actually evaluate/learn a new model/product/tool.

Lucas Meijer (@lucasmeijer) 's Twitter Profile Photo

I was tired of AI coding for a while, but the new claudecode has me back. it feels a big step up. Using it a lot to find bugs and do investigations in addition to coding. it's finding a lot!

Lucas Meijer (@lucasmeijer) 's Twitter Profile Photo

Not being allowed to have >1 Span<T> to operate on drives me crazy. I want to take N input spans, do some operation on them an output a single span.

Lucas Meijer (@lucasmeijer) 's Twitter Profile Photo

TIL JetBrains.Annotations has [InstantHandle]. You put it on a method parameter that's a delegate to promise you'll invoke it immediately, and not later. helps squashing annoying warnings at the callsites! where have you been all my life.