Skip to content

Instantly share code, notes, and snippets.

View apsamuel's full-sized avatar
🖖
Focusing

A. Samuel apsamuel

🖖
Focusing
View GitHub Profile
@apsamuel
apsamuel / precisely_broken.sh
Created December 6, 2012 21:39 — forked from hh/precisely_broken.sh
Try to create a simple precise iso using live-build
LB_DIR=$(mktemp -d -p /run/shm precisely.XXXX)
cd $LB_DIR
apt-get install -y livecd-rootfs
lb config \
--mode ubuntu \
--architecture amd64 \
--distribution precise \
Discussed with Kiel using tinycore for initram (re-usable code)
===============================================================
tinycore -
#extended with tar.overlays for mountpoints
overlayed into a ramdisk
puppy linux -
#built a distro thats compatible with precise
uses precises package archives
123/M
Discussed with Kiel using tinycore for initram (re-usable code)
===============================================================
tinycore -
#extended with tar.overlays for mountpoints
overlayed into a ramdisk
puppy linux -
#built a distro thats compatible with precise
uses precises package archives
123/M
require 'optparse'
require 'pp'
require 'watir-webdriver'
def main()
@b = Watir::Browser.new :chrome
@hangout_url = "https://hangoutsapi.talkgadget.google.com/hangouts/_/"
options = {}
optparse = OptionParser.new do|opts|