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.
# source : http://code.google.com/p/natvpn/source/browse/trunk/stun_server_list | |
# A list of available STUN server. | |
stun.l.google.com:19302 | |
stun1.l.google.com:19302 | |
stun2.l.google.com:19302 | |
stun3.l.google.com:19302 | |
stun4.l.google.com:19302 | |
stun01.sipphone.com | |
stun.ekiga.net |
#!/usr/bin/env ruby | |
require 'faraday' | |
require 'json' | |
require 'gitlab' | |
module Redmine | |
Host = nil | |
APIKey = nil |
#!/bin/bash | |
# generate new personal ed25519 ssh keys | |
ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "rob thijssen <[email protected]>" | |
ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_robtn -C "rob thijssen <[email protected]>" | |
# generate new host cert authority (host_ca) ed25519 ssh key | |
# used for signing host keys and creating host certs | |
ssh-keygen -t ed25519 -f manta_host_ca -C manta.network |
# prevent the creation of .DS_Store files on network drives | |
# http://hints.macworld.com/article.php?story=2005070300463515 | |
defaults write com.apple.desktopservices DSDontWriteNetworkStores true | |
#--------------------------------------------------------------------- | |
# Disable/enable Dashboard: | |
# http://hints.macworld.com/article.php?story=20050723123302403 | |
defaults write com.apple.dashboard mcx-disabled -boolean YES |
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.
#!/usr/bin/env bash | |
#Setup as a root cronjob | |
for f in /var/aegir/platforms/*/sites/*; | |
do | |
if [ -d "$f" ]; then | |
if [ -d "$f/files" ]; then | |
chown aegir:aegir "$f/files" -R | |
fi; | |
if [ -d "$f/privates" ]; then | |
chown aegir:aegir "$f/privates" -R |
require "grid" | |
ext.grid.MARGINX = 0 | |
ext.grid.MARGINY = 0 | |
hydra.alert "Hail hydra!" | |
pathwatcher.new(os.getenv("HOME") .. "/.hydra/", hydra.reload):start() | |
autolaunch.set(true) | |
menu.show(function() |
//* | |
//* See the JS Fiddle: http://jsfiddle.net/sxcjmoj5/3/ | |
//* | |
//* | |
// make sure ngSanitize module is installed: | |
// https://docs.angularjs.org/api/ngSanitize | |
// | |
// To convert links from plaintext, you must use the linky filter which is included with ngSanitize | |
// https://docs.angularjs.org/api/ngSanitize/filter/linky | |
// |
// ==UserScript== | |
// @name www.drupal.org | |
// @namespace tagAmsterdam2014 | |
// @match https://www.drupal.org/node/* | |
// @run-at document-end | |
// @grant none | |
// ==/UserScript== | |
// SAVE as tagAmsterdam2014.user.js | |
// Inspired by https://github.com/webflo/drupalsprint-bookmarklet/blob/gh-pages/index.html |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
require "./source.rb" | |
ROOT_PATH = File.dirname(__FILE__) | |
VAGRANTFILE_API_VERSION = "2" | |