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.
| #!/bin/bash | |
| # | |
| # Check a "few" things to help write more maintainable Go code. | |
| # | |
| # OK, it's fairly comprehensive. So simply remove or comment out | |
| # anything you don't want. | |
| # | |
| # Don't forget to install (go get) each of these tools. | |
| # More info at the URLs provided. | |
| # |
| request({url: opts.url, method: 'GET', headers: { 'user-agent': opts.userAgent}, encoding: null}, function (error, response, body) { | |
| if(!error && response.statusCode == 200) { | |
| var img = new Image | |
| , canvas = new Canvas | |
| , ctx = canvas.getContext('2d'); | |
| img.onload = function() { | |
| canvas.width = img.width; | |
| canvas.height = img.height; | |
| ctx.fillStyle = 'white'; |
| module.exports = function(grunt) { | |
| require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks); | |
| grunt.initConfig({ | |
| shell: { | |
| options: { | |
| stdout: true | |
| }, | |
| server: { |
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.
| // $base-font-size: 16px; // not sure this ever did anything | |
| $base-line-height: 1.5; | |
| // this value may vary for each font | |
| // unitless value relative to 1em | |
| $cap-height: 0.68; | |
| @mixin baseline($font-size, $scale: 2) { |
| 4r5e | |
| 5h1t | |
| 5hit | |
| a55 | |
| anal | |
| anus | |
| ar5e | |
| arrse | |
| arse | |
| ass |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| // See: https://groups.google.com/forum/#!topic/golang-nuts/Il2DX4xpW3w | |
| // A slightly faster lowercase function. | |
| func toLower(s string) string { | |
| b := make([]byte, len(s)) | |
| for i := range b { | |
| c := s[i] | |
| if c >= 'A' && c <= 'Z' { | |
| c += 'a' - 'A' | |
| } |
| // A handy map of US state codes to full names | |
| var usc = map[string]string{ | |
| "AL": "Alabama", | |
| "AK": "Alaska", | |
| "AZ": "Arizona", | |
| "AR": "Arkansas", | |
| "CA": "California", | |
| "CO": "Colorado", | |
| "CT": "Connecticut", |
I hereby claim:
To claim this, I am signing this object: