A Pen by Damien Nozay on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[0] http://marc.info/?a=97993518700001&r=1&w=2 | |
[1] http://lists.linux-ha.org/pipermail/linux-ha/2001-January/002608.html | |
[2] http://osdir.com/ml/linux.drbd/2001-08/msg00017.html | |
[3] http://www.cs.technion.ac.il/Labs/csl/projects/Ensemble/ | |
[4] http://hpux.connect.org.uk/hppd/hpux/Distributed/censemble-0.10/ | |
[5] http://censemble.com/ | |
[6] https://github.com/dnozay/CEnsemble | |
Link [0] is just a bunch of posts that were posted by 'Mark Hayden <mark () northforknet ! com>' | |
Link [1] explains what DBD (DISTRIBUTED BLOCK DEVICE) is; not to be confused with DRBD. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# some of the steps were described here: | |
# https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins+on+Red+Hat+distributions | |
# install LTS package | |
wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat-stable/jenkins.repo | |
rpm --import http://pkg.jenkins-ci.org/redhat-stable/jenkins-ci.org.key | |
yum install jenkins java-1.6.0-openjdk nginx | |
# check version |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# some servers do not send "401 retry" responses when authentication is needed | |
# and return "403 forbidden" instead; e.g. jenkins does that. | |
import urllib2 | |
import logging | |
# configure logging for library | |
class NullHandler(logging.Handler): | |
def emit(self, record): | |
pass |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Gist to test if your XMLRPC server is susceptible to the "billion laughs" attack. | |
See https://docs.python.org/2/library/xml.html#xml-vulnerabilities. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /tmp | |
sudo yum install -y openssl-devel zlib-devel bzip2-devel wget | |
VERSION=2.7.8 | |
wget https://www.python.org/ftp/python/${VERSION}/Python-${VERSION}.tgz | |
tar -xvzf Python-${VERSION}.tgz | |
cd Python-${VERSION} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ftp + recursive copy | |
# License: MIT - http://opensource.org/licenses/MIT | |
import ftplib | |
import os | |
import getpass | |
import ssl | |
class RecursiveCopyMixin(object): | |
def rput(self, sourcedir, remotedir): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From dec16d764a5bb0a45b16fbb445dce9a8858fc80d Mon Sep 17 00:00:00 2001 | |
From: damien <damien@localhost> | |
Date: Tue, 5 Aug 2014 15:54:14 -0700 | |
Subject: [PATCH] [trivial] massage for centos | |
--- | |
zfs-backup.sh | 4 ++-- | |
1 files changed, 2 insertions(+), 2 deletions(-) | |
diff --git a/zfs-backup.sh b/zfs-backup.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# apxs may fail with .../usr/bin/cc: not a directory | |
# solution: use your own apxs script. | |
# fix based on the configure.ac from mod_wsgi | |
# https://github.com/GrahamDumpleton/mod_wsgi | |
XCODE_PREFIX="/Applications/Xcode.app/Contents/Developer/Toolchains/" | |
XCODE_CC="${XCODE_PREFIX}XcodeDefault.xctoolchain/usr/bin/cc" |
This gist is intended to help me recompile bash on OSX 10.6.