Skip to content

Instantly share code, notes, and snippets.

View nemonik's full-sized avatar
💭
Digging holes in the backyard.

Michael Joseph Walsh nemonik

💭
Digging holes in the backyard.
  • the backyard digging holes
View GitHub Profile
@nemonik
nemonik / definition.rb
Created December 8, 2011 20:59
My CentOS-5.7-x86_64 Basebox Template
Veewee::Session.declare({
:cpu_count => '1', :memory_size=> '384',
:disk_size => '10140', :disk_format => 'VDI', :hostiocache => 'off', :ioapic => 'on', :pae => 'on',
:os_type_id => 'RedHat_64',
:iso_file => "CentOS-5.7-x86_64-bin-DVD-1of2.iso",
:iso_src => "http://mirror.steadfast.net/centos/5.7/isos/x86_64/CentOS-5.7-x86_64-bin-DVD-1of2.iso",
:iso_md5 => "55eadec0a6e87c5f2883f734d43fdb58",
:iso_download_timeout => 1000,
:boot_wait => "10", :boot_cmd_sequence => [ 'linux text ks=http://%IP%:%PORT%/ks.cfg<Enter>' ],
:kickstart_port => "7122", :kickstart_timeout => 10000, :kickstart_file => "ks.cfg",
@nemonik
nemonik / Puppet_OpenStack_RVM_Install_Notes.md
Created October 10, 2012 20:01
Install Notes for OpenStack, Puppet, RVM

Installing OpenStack

:Info: My install notes for Puppet (both agent and master) from source, OpenStack from source, and RVM on Ubuntu 12.04

:Author: Michael Joseph Walsh

Initialize a VM

Create a VirtualBox VM with 3072 MBytes of memory, a 20 GB Hard drive,

@nemonik
nemonik / definition.rb
Created December 14, 2011 16:28
ks.cfg
Veewee::Session.declare({
:cpu_count => '1', :memory_size=> '384',
:disk_size => '10140', :disk_format => 'VDI', :hostiocache => 'off', :ioapic => 'on', :pae => 'on',
:os_type_id => 'RedHat_64',
:iso_file => "CentOS-5.7-x86_64-bin-DVD-1of2.iso",
:iso_src => "http://mirror.steadfast.net/centos/5.7/isos/x86_64/CentOS-5.7-x86_64-bin-DVD-1of2.iso",
:iso_md5 => "55eadec0a6e87c5f2883f734d43fdb58",
:iso_download_timeout => 1000,
:boot_wait => "10", :boot_cmd_sequence => [ 'linux text ks=http://%IP%:%PORT%/ks.cfg<Enter>' ],
:kickstart_port => "7122", :kickstart_timeout => 10000, :kickstart_file => "ks.cfg",

Keybase proof

I hereby claim:

  • I am nemonik on github.
  • I am nemonik (https://keybase.io/nemonik) on keybase.
  • I have a public key ASBHXXMuiwrbpDQnCu5O5-NofujTod93DeP-C9364mdNIwo

To claim this, I am signing this object:

## install chromedriver while on OS X living in a fish
brew install chromedriver
## get around apple's prophylactic, so the executable can be executed
bash -c 'xattr -r -d com.apple.quarantine $(which chromedriver)'
A CA file has been bootstrapped using certificates from the system
keychain. To add additional certificates, place .pem files in
@nemonik
nemonik / gist:951a0e55436e0708222b
Last active December 23, 2022 03:00
A Python script to extract data out of DISA STIG Viewer xccdf file to a CSV
###
# A Python script to extract data out of a DISA STIG Viewer xccdf file to a CSV
# @author Michael Joseph Walsh <github.com@nemonik.com>
##
import csv
import glob
import os
import sys
import xml.etree.ElementTree as ET