DFRA
That doesn't work, though.
For a recursive acronym, you want something like ADFRA Didn't Forget Recursive Acronyms.
DFRA
That doesn't work, though.
For a recursive acronym, you want something like ADFRA Didn't Forget Recursive Acronyms.
All the studies I've seen say the world is safer than ever for kids, but parents seem to live in fear.
My childhood memories were parents saying "don't come back until it's dark", and summers full of building dens, getting stung by nettles and sleeping well. "In my day" vibes, I know, but hopefully there's still a silent majority of parents that give their kids this freedom and these articles are overblown.
Is this a joke? This is surely worse than using semvar.
It's a blue screen that's shown because something has died, I think it's a perfect fit.
I was going to post this myself, but you beat me to it. Great video.
I'll be very happy to not have to use Date
any more. Pop quiz, what's in whatnum
?
const vday = new Date('14 February 2025');
const whatnum = vday.getDay() - vday.getMonth();
Err, it's 5... Ha, amazing; that's not even the gotcha I meant to demonstrate. getDay
returns the day of the week, the day of the month is returned from getDate
.
Take two:
const vday = new Date('14 February 2025');
const whatnum = vday.getDate() - vday.getMonth();
So this is 14 - 2 = 12, right? Nope! The day (from getDate) is 1-based whereas month is 0-based, so 14 - 1 = 13.
Yeah, worth a read; it’s fun.
Rating: 1.5/5
That rating doesn't seem to match the rest of the review.
TypeScript's readonly is compile-time only and has zero runtime cost
This point means that I'll probably never use the good ideas in this post: if I'm doing JS complicated enough to need Object.freeze(), I'll be doing it in Typescript.
the neater and more consistent your handwriting, the easier time the Nuwa pen will have captur[ing] it
That's me out then
Forgejo v10.0 is the last version to allow a transparent upgrade from Gitea v1.22 or lower
Seems like if you're planning on moving to Forgejo then it's simpler to do it now rather than later.
I just saw the top two thirds, and had to scroll to see the punchline and the comm - what a pleasant surprise! For me, it's the 3DO but that's to niche for most.