Skip to content

Instantly share code, notes, and snippets.

View mixxen's full-sized avatar

Alex Cabello mixxen

  • e-o.solutions
  • Maui, Hawaii
View GitHub Profile
@gdlmx
gdlmx / HTTP_client_UNIX_socket.md
Last active January 20, 2024 13:24
HTTP over UNIX domain sockets
@venil7
venil7 / required.js
Last active August 29, 2015 13:59
require.js meets ES6 Promises
var required = function(name) {
name = name.toString();
return new Promise(function(resolve, reject) {
require([name], function(module) {
resolve(module);
},
function(err){
reject(err);
});
});
@bradmontgomery
bradmontgomery / install-comodo-ssl-cert-for-nginx.rst
Last active June 10, 2024 15:37
Steps to install a Comodo PositiveSSL certificate with Nginx.

Setting up a SSL Cert from Comodo

I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.

These are the steps I went through to set up an SSL cert.

Purchase the cert

@dypsilon
dypsilon / frontendDevlopmentBookmarks.md
Last active July 7, 2024 19:32
A badass list of frontend development resources I collected over time.