1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
d1eb3155c7
Blog: Explain commonName for nds-constrain't 2021-05-07 21:36:12 +00:00
9dbb509170
Blog: Fix various Time Rant errors 2021-05-07 21:35:24 +00:00
2 changed files with 14 additions and 8 deletions

View File

@ -52,6 +52,13 @@ I have copied them for reference.
openssl req -new -key server.key -out server.csr
openssl x509 -req -in server.csr -CA NWC.crt -CAkey NWC.key -CAcreateserial -out server.crt -days 3650 -sha1
**Update (2021-05-07):** The second command will prompt you for values to be
used in your certificate. The Common Name in this certificate should be the
domain name that it will be valid for (e.g. “flipnote.hatena.com”). Most people
will want to set it to “\*.\*.\*” (without the quotes), which will make it valid
for all subdomains. See [this paste](https://pastebin.com/WQNEQwi8) for
reference.
NGINX users need to create a file for the certificate chain as well.
cat server.crt NWC.crt > server-chain.crt

View File

@ -11,14 +11,13 @@ standard should Bob use to schedule the call? How about
should be able to use it, right?
Unfortunately, life is not so simple. If Bob scheduled a call for “05:00 UTC”,
one other person would show up on-time. The rest will try to join at 17:00
(05:00 p.m.) in whatever their local time zone is. This insanity is the reason
why [countdown timers](https://www.timeanddate.com/countdown/create)
are so common nowadays.
one other person will show up on-time. The rest will try to join at 17:00
(05:00 p.m.) in whatever their local time zone is. Frustrating situations like
these are responsible for
[countdown timers](https://www.timeanddate.com/countdown/create)
becoming so common nowadays.
This insanity has been driving people insane since the beginning of time, but
This insanity has been driving people mad since the beginning of time, but
this is not the fault of individual people who dont understand what “UTC” is.
This is a systemic issue which ought to be corrected. If everybody learns to
read analog clocks in primary school, they should learn about time zones as
@ -59,7 +58,7 @@ the time and displaying it to users.
As far as most people should be concerned, offsets are just acronyms that
represent offsets from UTC. For example, [Central European Time](https://www.timeanddate.com/time/zones/cet)
(CET) is one hours ahead of UTC. This means that it is also represented as
(CET) is one hour ahead of UTC. This means that it is also represented as
UTC+1 or UTC+0100. Some time zones need more than an hour of precision as well.
For example, [Newfoundland Standard Time](https://www.timeanddate.com/time/zones/nst)
(NST) is represented as UTC-3:30 or UTC-0330.