Comments for Code.RogerHub https://rogerhub.com/~r/code.rogerhub The programming blog at RogerHub Mon, 20 Apr 2015 10:03:00 +0000 hourly 1 http://wordpress.org/?v=4.2.2 Comment on Writing essays in VIM and Latex by Leo Nelson https://rogerhub.com/~r/code.rogerhub/infrastructure/562/writing-essays-in-vim-and-latex/#comment-51 Mon, 20 Apr 2015 10:03:00 +0000 https://rogerhub.com/~r/code.rogerhub/?p=562#comment-51 Hi, Awesome post. Thanks for great post on Writing essays in VIM and Latex . essay writing services

]]>
Comment on Exporting comments from Facebook Comments to Disqus by Tomas Pavlatka https://rogerhub.com/~r/code.rogerhub/programming/528/exporting-comments-from-facebook-comments-to-disqus/#comment-50 Wed, 21 Jan 2015 07:08:00 +0000 https://rogerhub.com/~r/code.rogerhub/?p=528#comment-50 You’re right. So basically you can import comments from FB to Disqus, but you will loose the connection to their FB accounts, right ?

Thank you for your time.

]]>
Comment on Exporting comments from Facebook Comments to Disqus by Roger Chen https://rogerhub.com/~r/code.rogerhub/programming/528/exporting-comments-from-facebook-comments-to-disqus/#comment-49 Wed, 21 Jan 2015 07:05:00 +0000 https://rogerhub.com/~r/code.rogerhub/?p=528#comment-49 Don’t think you can, or else you’d be able to impersonate people right?

]]>
Comment on Exporting comments from Facebook Comments to Disqus by Tomas Pavlatka https://rogerhub.com/~r/code.rogerhub/programming/528/exporting-comments-from-facebook-comments-to-disqus/#comment-48 Wed, 21 Jan 2015 07:04:00 +0000 https://rogerhub.com/~r/code.rogerhub/?p=528#comment-48 Hi Roger, hope you are doing well. I wanted to ask you – how to do connect imported FB comments back to FB accounts? Hope you know what I mean. So I would not loose any relations.

Thank you for your answer in advance.

]]>
Comment on Comma mode for vim by Roger Chen https://rogerhub.com/~r/code.rogerhub/vim/555/comma-mode-for-vim/#comment-47 Thu, 01 Jan 2015 00:50:00 +0000 https://rogerhub.com/~r/code.rogerhub/?p=555#comment-47 Still three characters ” Z Z” 😉

]]>
Comment on Comma mode for vim by rdpate https://rogerhub.com/~r/code.rogerhub/vim/555/comma-mode-for-vim/#comment-46 Thu, 01 Jan 2015 00:49:00 +0000 https://rogerhub.com/~r/code.rogerhub/?p=555#comment-46 ZZ is probably what you want to replace :q.

]]>
Comment on Signing your own wildcard SSL/HTTPS certificates by Chris From NJ https://rogerhub.com/~r/code.rogerhub/infrastructure/474/signing-your-own-wildcard-sslhttps-certificates/#comment-45 Mon, 24 Nov 2014 22:01:00 +0000 https://rogerhub.com/~r/code.rogerhub/?p=474#comment-45 Need to update for the SHA-1 removal to SHA-256

openssl req -x509 -new -nodes -key rootCA.key -days 9999 -out rootCA.pem

TO:

openssl req -x509 -sha256 -new -nodes -key rootCA.key -days 9999 -out rootCA.pem

Thanks for the Great Guide!! Truly helped me out!

]]>
Comment on Exporting comments from Facebook Comments to Disqus by Kathy-Lynn Ward https://rogerhub.com/~r/code.rogerhub/programming/528/exporting-comments-from-facebook-comments-to-disqus/#comment-44 Thu, 09 Oct 2014 17:34:00 +0000 https://rogerhub.com/~r/code.rogerhub/?p=528#comment-44 Hi Roger, Just wanted to say thanks for this post which was very useful for a recent Facebook Comments -> Disqus conversion I was working on.

]]>
Comment on Signing your own wildcard SSL/HTTPS certificates by Andrey Fedyashov https://rogerhub.com/~r/code.rogerhub/infrastructure/474/signing-your-own-wildcard-sslhttps-certificates/#comment-43 Sun, 29 Jun 2014 08:00:00 +0000 https://rogerhub.com/~r/code.rogerhub/?p=474#comment-43 No problem – your post really helped me. One more improvement could be what I found on http://apetec.com/support/GenerateSAN-CSR.htm – to validate that generated CSR lists alternative names as expected:
openssl.exe req -text -noout -in

]]>
Comment on Signing your own wildcard SSL/HTTPS certificates by Andrey Fedyashov https://rogerhub.com/~r/code.rogerhub/infrastructure/474/signing-your-own-wildcard-sslhttps-certificates/#comment-42 Sun, 29 Jun 2014 07:57:00 +0000 https://rogerhub.com/~r/code.rogerhub/?p=474#comment-42 Yep, confirmed on both windows and mac – config file should be based on existing openssl config (otherwise it just misses important blocks). I’d suggest rephrasing “Create a file named SITE.cnf, and put the following inside” into something like “make a copy of your openssl.cfg and make the following edits”. In fact, the only edits I had to make were:
[req]
req_extensions = v3_req # <—– make sure it is not commented

[v3_req]
subjectAltName = @alt_names # <—- add this one

[alt_names] # <—- add this whole section
DNS.1 = rogerhub.com
DNS.2 = *.rogerhub.com

]]>