I always start my files with iso8601, except on s3 it doesn’t like the colon. Gotta replace the colons lol
I always start my files with iso8601, except on s3 it doesn’t like the colon. Gotta replace the colons lol
The date format isn’t even human readable (at least in American). It should be Sun, Jan 14th
This person gets it
A form of “self documentation” I like to do is create variables for conditions before using it in an if statement. If you break down a funky conditional into easy to read variables it becomes a lot more clear what it’s trying to do.
Idk how to write code on sync:
const isHumid = xxxx;
const isHot = yyyy;
const isSunny = zzzzz;
If (isHot && isHumid && isSunny) {
...
}
Wondering if mozzilla can get around this by enabling some start up arg to disable it lol
Namesilo