Joined May 2011
·
Posted to
nginx ssl config with forward secrecy enabled
over 1 year
ago
Re. @rtaprh's comment, with the current stable nginx versions it's no longer necessary to do the dhparam
trick, and in fact it's downright discouraged.
Posted to
nginx ssl config with forward secrecy enabled
over 1 year
ago
For the benefit of future readers: using the explicit list of ciphers from the referenced SSL Labs article only got my site an overall "C" rating in SSL Labs' own tests, whereas the following much simpler alternative gets an "A":
ssl_ciphers "HIGH:!aNULL:!MD5 or HIGH:!aNULL:!MD5:!3DES";
Posted to
Resizing OSX windows like a boss
over 1 year
ago
Another thing you really want is Slate: https://github.com/jigish/slate
Posted to
Clojurescript repl in emacs
over 1 year
ago
If you're using leiningen
and lein-cljsbuild
, you could probably also just set your inferior-lisp-program
to "lein cljsbuild repl-rhino".
Posted to
Saving github auth info in Mac OS X keychain
over 1 year
ago
Or, if you're already using keychain to save your browser password for github, you can reuse it here by substituting the following command:
security find-internet-password -wgs github.com
Achievements
216 Karma
8,252 Total ProTip Views
Kilo of Lemmings
Establish a space in the open source hall of fame by getting at least 1000 devs to watch a project
Philanthropist
Truly improve developer quality of life by sharing at least 50 individual open source projects
Forked 100
Have a seriously badass project that's been forked at least 100 times
Forked 50
Have a project with a thriving community of users that's been forked at least 50 times
Octopussy
Have a repo followed by a member of the GitHub team
Forked 20
Have an established project that's been forked at least 20 times
Ashcat
Make Ruby on Rails better for everyone by getting a commit accepted
Lemmings 100
Write something great enough to have at least 100 watchers of the project
Cub
Have at least one original jQuery or Prototype open source repo
Komodo Dragon
Have at least one original repo where Java is the dominant language
Altruist
Increase developer well-being by sharing at least 20 open source projects
Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos
Forked
Have a project valued enough to be forked by someone else
Charity
Fork and commit to someone's open source project in need
Python
Would you expect anything less? Have at least one original repo where Python is the dominant language
Mongoose 3
Have at least three original repos where Ruby is the dominant language
Mongoose
Have at least one original repo where Ruby is the dominant language
@silpol Well, yes, that can be an issue. But if the remote server isn't providing enough information for the client to logically connect the server's certificate to the client's root certificate, that's still a problem that can generally be reduced by configuring the server differently.