2017 Jan 13, 12:54
Free startup idea: Legally binding "but you have to survive a night in a haunted house" clauses and infrastructure for hillarious wills.
2016 Dec 10, 10:07
Seems like
@pushalotapp isn't on the Microsoft Store anymore? Will it come back?
2016 Dec 7, 10:04
@ericlaw that is a solid lock. Not getting through that lock!
2016 Dec 7, 5:30 2016 Dec 7, 2:19 2016 Dec 6, 8:45 2016 Dec 6, 2:30 2016 Dec 5, 5:52
@davatron5000 I have a C:\users\dave\bin path I've added to my PATHS
2016 Dec 4, 2:26
Oh just realized Trevor, Simon, and Rebus are all the same person. Awesome. Assuming
@StevenOgg isn't a robot
2016 Dec 4, 9:30
@AGoldmund Its my morning two minute hate. And then again around lunch time. And also just whenever.
2016 Dec 2, 2:07 2016 Nov 30, 1:51
Dear gym shower user, Your shower curtain is not just about you. Please close it while showering. Thanks. Sincerely, Everyone else
2016 Nov 28, 10:07 2016 Nov 28, 6:19 2016 Nov 20, 10:41 2016 Nov 20, 2:47 2016 Nov 18, 4:11
@PA_Megacorp I read the title as Couchomancy and imagined a necromancer that summons couches. No one steal my new YA fantasy
novel idea pls
2016 Nov 17, 3:14 2016 Nov 6, 1:17
@ericlaw Very fitting for the show but... those serifs. Aspects of 80s aesthetic I can do without include: wood paneling on
cars, that font.
2016 Nov 5, 8:59
Since I had last posted about using Let's Encrypt with NearlyFreeSpeech, NFS has changed their process
for setting TLS info. Instead of putting the various files in /home/protected/ssl and submitting an assistance request, now there is a command to submit the certificate info and a webpage for
submitting the certificate info.
The webpage is https://members.nearlyfreespeech.net/{username}/sites/{sitename}/add_tls
and has a textbox for you to paste in all the cert info in PEM form into the textbox. The
domain key, the domain certificate, and the Let's Encrypt intermediate cert must be pasted into the textbox and submitted.
Alternatively, that same info may be provided as standard input to nfsn -i set-tls
To renew my certificate with the updated NFS process I followed the commands from Andrei Damian-Fekete's script which depends on acme_tiny.py:
python acme_tiny.py --account-key account.key --csr domain.csr --acme-dir /home/public/.well-known/acme-challenge/ > signed.crt
wget -O - https://letsencrypt.org/certs/lets-encrypt-x3-cross-signed.pem > intermediate.pem
cat domain.key signed.crt intermediate.pem > chained.pem
nfsn -i set-tls < chained.pem
Because
my certificate had already expired I needed to comment out the section in acme_tiny.py that validates the challenge file. The filenames in the above map to the following:
- signed.crt is the Let's Encrypt provided certificate
- account.key is the user private key registered with LE
- domain.csr is the cert request
- domain.key is the key for the domain cert
certificate lets-encrypt nearlyfreespeech.net