Skip to content

Instantly share code, notes, and snippets.

View fcuny's full-sized avatar
💭
I may be slow to respond.

Franck Cuny fcuny

💭
I may be slow to respond.
View GitHub Profile
@igrigorik
igrigorik / links.md
Created August 28, 2012 16:53
HAR Show links & resources
@catwell
catwell / active.md
Last active December 21, 2023 09:47
Speakerdecks
@felixfyi
felixfyi / ideal ops.md
Created June 26, 2012 14:55 — forked from bhenerey/ideal ops.md
ideal ops checklist

In a perfect world, where things are done well, not just quickly, I would expect to find the following when joining the company:

Documentation

  • Accurate / up-to-date systems architecture diagram

  • Accurate / up-to-date network diagram

  • Out-of-hours support plan

  • Incident management plan

@melo
melo / ssh.pl
Created May 29, 2012 16:19
A sample Net::SSH2 command line talking to a inline remote perl script
#!/usr/bin/env perl
use v5.14;
use strict;
use Net::SSH2;
my $user = shift(@ARGV) || usage('Missing user');
my $host = shift(@ARGV) || usage('Missing host');
my $port = shift(@ARGV) || 22;
@mbbx6spp
mbbx6spp / Vagrantfile.rb
Created February 5, 2011 05:36
Riak cluster Vagrantfile to offer an alternative to Basho Chef+Vagrant blog post suggestion and receive feedback at http://blog.basho.com/2011/02/04/creating-a-local-riak-cluster-with-vagrant-and-chef/
# Offering alternative Chef + Vagrant Riak cluster setup to the following blog post at basho:
# http://blog.basho.com/2011/02/04/creating-a-local-riak-cluster-with-vagrant-and-chef/
# Assumes Vagrant 0.7.0+ and VirtualBox 4.0+
# Now you should be able to launch your X (where X=4 in this case) vagrant VMs with the following:
# % vagrant up db1
# % vagrant up db2
# % vagrant up db3
# % vagrant up db4
require 'Spore'
local github = Spore.new_from_spec 'github.json'
github:enable 'Format.JSON'
github:enable 'Runtime'
local r = github:user_information{format = 'json', username = 'schacon'}
print(r.status) --> 200