

3·
8 days agoAnswer is probably the same as before AI: build a portfolio on GitHub
You really think that using GitHub falls in the usual vibecoding toolbox? As in: would they even know where/how to look?
Answer is probably the same as before AI: build a portfolio on GitHub
You really think that using GitHub falls in the usual vibecoding toolbox? As in: would they even know where/how to look?
My God… All the “pro life” movements make so much more sense now! They actually don’t care about the women, they only want the children around. And worse off the children, the better for them!
Wouldn’t that be nano-retiring? I’m nano-retiring a couple of times a day when going to the toilet!
And then micro-retire for the weekend?
Effectively it was a failed kamikaze.
deleted by creator
This is exactly why I love PowerShell.
Need the [DateTime] object from 10 years ago? No biggie, just chuck
(Get-Date).AddYears(-10)
down your console.Need it in a specific timezone? That one’s trickier, but since PowerShell can do .Net, run this:
And you get a DateTimeOffset object, which is this beauty:
DateTime
is the time in your target timezone,UtcDateTime
is, well, the UTC time, andLocalDateTime
is the time on host you ran the commands on.