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.
| # SnipMate is required to use snippets | |
| # Download SnipMate: http://www.vim.org/scripts/script.php?script_id=2540 | |
| # Put this file in ~/.vim/snippets/ then restart vim | |
| # This snippet file includes many useful snippets for CodeIgniter. Please feel free to fork and contribute! | |
| snippet php | |
| <?php | |
| ${1} | |
| ?> | |
| snippet ec | |
| echo "${1:string}"${2}; |
| require "rubygems" | |
| require "pivotal-tracker" | |
| namespace :pt do | |
| desc "list avail pivotal tracker tix from which to create a git fea branch" | |
| task :list do | |
| def truncate_words(text, length = 5) | |
| return if text == nil | |
| words = text.split() | |
| words = words - %w(feature scenario for in on a an the of so that they be able to are it its with) #remove non critical words (experiment with this) |
| This playbook has been removed as it is now very outdated. |
| <?php | |
| /* | |
| Plugin Name: Pug Bomb API Endpoint | |
| Description: Adds an API endpoint at /api/pugs/$n_pugs | |
| Version: 0.1 | |
| Author: Brian Fegter | |
| Author URL: http://coderrr.com | |
| */ | |
| class Pugs_API_Endpoint{ |
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.
| <snippet> | |
| <content><![CDATA[ | |
| describe('${1:SuiteName}', function() { | |
| var scope, \$httpBackend, initController; | |
| beforeEach(function() { | |
| module('${2:ModuleName}', function(\$provide){ | |
| }); |
| import { Component } from "React"; | |
| export var Enhance = ComposedComponent => class extends Component { | |
| constructor() { | |
| this.state = { data: null }; | |
| } | |
| componentDidMount() { | |
| this.setState({ data: 'Hello' }); | |
| } | |
| render() { |