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.
| worker: QUEUE=* bundle exec rake environment resque:work | |
| scheduler: bundle exec rake environment resque:scheduler |
| require "rvm/capistrano" | |
| ... | |
| namespace :bootstrap do | |
| task :default do | |
| # Specific RVM string for managing Puppet; may or may not match the RVM string for the application | |
| set :user, "ubuntu" | |
| # Set the default_shell to "bash" so that we don't use the RVM shell which isn't installed yet... | |
| set :default_shell, "bash" |
| #!/usr/bin/env ruby | |
| # encoding: utf-8 | |
| CHARS = %w{ } | |
| def encode(string) | |
| string.chars.map{|c|"#{CHARS[c[0]/16]}#{CHARS[c[0]%16]}"}.join | |
| end | |
| program = <<-EOF |
| # DOCKER-VERSION 0.4.8 | |
| # am facing issue | |
| # https://github.com/dotcloud/docker/issues/1123 | |
| FROM ubuntu:12.04 | |
| MAINTAINER Deepak Kannan "deepak@codemancers.com" | |
| RUN apt-get -y install python-software-properties |
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.
| /** @jsx React.DOM */ | |
| /** | |
| * Our component structure will look like the following: | |
| * - WikiBox | |
| * -- AutoCompleteBox | |
| * --- AutoComplete | |
| */ | |
| // this component renders a single entity coming from wikipedia |
Let's use Terraform to easily get a CoreOS cluster up on Digital Ocean. In this example we will get a 5 node CoreOS cluster up and running on the Digital Ocean 8GB size.
Grab a copy of Terraform for your platform from http://www.terraform.io/downloads.html. Follow the instructions at http://www.terraform.io/intro/getting-started/install.html by getting Terraform in your PATH and testing that it works.
| const dgram = require('dgram'); | |
| const client = dgram.createSocket({ type: 'udp4', reuseAddr: true }); | |
| const sdp = require('./sdp'); | |
| //config | |
| const addr = '10.10.1.100'; | |
| const danteMulticast = '239.255.220.221'; | |
| const aes67Multicast = '239.69.1.122'; | |
| const samplerate = 48000; | |
| const channels = 2; |