HackerTrans
TopNewTrendsCommentsPastAskShowJobs

sumibi

no profile record

comments

sumibi
·5 ay önce·discuss
This article doesn’t mention my absolute favorite split keyboard : the Keyboardio Model 100. The killer feature for me is the palm keys that are very ergonomic, in my opinion, and I’ve never found another keyboard that offers them. The sculpted keycaps are also nice.
sumibi
·6 ay önce·discuss
I made a multiplayer 3D pong in a cube years ago: https://cubeball.araxor.com/

It was a VR game for google cardboard. It worked pretty well at the time.

Sadly, it's not available anymore in the google play store. Maybe one day I'll port it to the web and open source it if I can find the time...
sumibi
·8 ay önce·discuss
This is inspired by the first responder kit from Brent Ozar for SQL Server, which is an amazing tool for accidental DBAs that do not know where to start optimizing.

I'm looking forward to trying this out on my postgres databases.
sumibi
·geçen yıl·discuss
I tend to use the query syntax a lot for this exact reason.

It would be even better if it supported exposing pattern matching variables and null safety annotations from where clauses to the following operations but I guess it's hard to translate it to methods.

Something like this:

  from x in xs
  where x is { Y: { } y }
  select y.z
Another feature I'd like to see is standalone `where` without needing to add `select` after it like in VB.net.