HackerTrans
TopNewTrendsCommentsPastAskShowJobs

monadmoproblems

no profile record

comments

monadmoproblems
·4 jaar geleden·discuss
Just on your point on Testability, I don’t believe this is the issue you make it out to be: my standard approach is to make all the types/methods I need to test ‘internal’ and then expose them to my unit test assembly using this assembly level attribute, https://docs.microsoft.com/en-us/dotnet/api/system.runtime.c...
monadmoproblems
·4 jaar geleden·discuss
Presumably, you choose whether to ride that airplane or take those drugs. You probably don't get to choose when someone else's driverless car runs you over.
monadmoproblems
·4 jaar geleden·discuss
FWIW, as a lifetime Windows users, Windows 11 has finally made me switch to using Linux (Zorin OS) as my main system. I retain Windows 10 on a dual boot hard drive for some games but otherwise the switch has been much easier than I expected. Despite being a .Net developer, Microsoft has lost me as a customer for good.
monadmoproblems
·4 jaar geleden·discuss
I don't know how I'd feel if I was the guy who 96% of people thought wasn't real.
monadmoproblems
·4 jaar geleden·discuss
You absolute hero!
monadmoproblems
·4 jaar geleden·discuss
I've long wanted a more succinct way of writing implicitly typed arrays. Whenever you work with data directly in the code, for example when hacking on leetcode, you end you with lots of horrible nested arrays:

new [] {new [] {1, 2}, new [] {3, 4}};

Something like:

@[ @[1, 2], @[3, 4] ]