HackerTrans
TopNewTrendsCommentsPastAskShowJobs

nanodeath

no profile record

comments

nanodeath
·há 9 meses·discuss
Including this one, 34 times :')
nanodeath
·ano passado·discuss
To add to the anecdata here, I had covid for a week (bedridden but otherwise not that bad), then had a single day in which I tested negative, and then it rebounded for a week, due to Paxlovid. Sounded like it was pretty common. So that was a waste of 15 days. On the plus side, my second week was much the same as the first week as far as symptoms go.
nanodeath
·há 2 anos·discuss
I was amused they don't commit to either "full-stack" or "fullstack" spellings :)
nanodeath
·há 2 anos·discuss
The HTML source is pretty good too. A doctype that's half HTML5, half XHTML. A pre-IE7 script tag thing. A meta-keywords tag. Lists that don't actually use any list tags. Raw PHP tags being dumped into the HTML output. No closing body or html tags. This joke has _layers_, man.
nanodeath
·há 3 anos·discuss
I _think_ what they're saying is a specialized/curried function that takes a single argument is better than the method it's replacing that takes three strings or whatever. That is, `foo.a("a").b("b").c("c")` is better than `foo.a("a", "b", "c")`. Which...sure, but 1. if you're really passing 2-3 parameters in with identical types, maybe use inline value classes instead? Or at least type aliases?, and 2. if you can't or don't want to do that, named arguments help.