Skip to content

Instantly share code, notes, and snippets.

# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@shepherdwind
shepherdwind / function.coffee
Created June 19, 2012 16:21 — forked from sankage/function.coffee
CoffeeScript: self executing anonymous functions
# Is there a coffeescript way of doing this?
(function($, exports){
# doing random stuff here
})(jQuery, window);
# Other than this:
( ($, exports) ->
# doing random stuff here