Skip to content

Instantly share code, notes, and snippets.

@torstenek
torstenek / mini
Created March 8, 2014 12:33
Just the bare minimum
#!ipxe
kernel http://storage.core-os.net/coreos/amd64-generic/dev-channel/coreos_production_pxe.vmlinuz
initrd http://storage.core-os.net/coreos/amd64-generic/dev-channel/coreos_production_pxe_image.cpio.gz
boot
#!ipxe
kernel http://storage.core-os.net/coreos/amd64-generic/dev-channel/coreos_production_pxe.vmlinuz root=squashfs: state=tmpfs: sshkey="ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDK8g2YZv5krwHUm3cnrx/9LjTg8p7sd6d7VPewBItHzYpAYCU5dqJ+uNGlMAFvAsu5mkQ/JbIZSDX+F2eWbtdqO6fqe9Zu31blIs5vcjnKlJQSU2BvschzicowHs3LEXbqx5+PyOATAxuAWH7fjNioT4mPRAUp2xk4mpmUO3wed35RWZGuG36arVNLMTkwoUyrYdeAGPMv9gI1y3fnXZ6eSthAc9+kGDUaAF/3ft7GMIT40x/yOE9zOpmqKMdndlj2tQJvVbUPD8YFgArGQI+JzX6gJdRnvuMmnq0tYkYTbx4MyML76k9cIFyAWu6550MpSbu6y66KJif8mt32p0QB torsten@torstenek.com"
initrd http://storage.core-os.net/coreos/amd64-generic/dev-channel/coreos_production_pxe_image.cpio.gz
boot
#!ipxe
set coreos-version dev-channel
set base-url http://storage.core-os.net/coreos/amd64-generic/${coreos-version}
kernel ${base-url}/coreos_production_pxe.vmlinuz root=squashfs: state=tmpfs: sshkey="ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAYQC2PxAKTLdczK9+RNsGGPsz0eC2pBlydBEcrbI7LSfiN7Bo5hQQVjki+Xpnp8EEYKpzu6eakL8MJj3E28wT/vNklT1KyMZrXnVhtsmOtBKKG/++odpaavdW2/AU0l7RZiE= coreos pxe demo"
initrd ${base-url}/coreos_production_pxe_image.cpio.gz
boot
@torstenek
torstenek / gist:9411463
Last active August 29, 2015 13:57
ipxe
#!ipxe
set coreos-version dev-channel
set base-url http://storage.core-os.net/coreos/amd64-generic/${coreos-version}
kernel ${base-url}/coreos_production_pxe.vmlinuz root=squashfs: state=tmpfs: sshkey="ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDK8g2YZv5krwHUm3cnrx/9LjTg8p7sd6d7VPewBItHzYpAYCU5dqJ+uNGlMAFvAsu5mkQ/JbIZSDX+F2eWbtdqO6fqe9Zu31blIs5vcjnKlJQSU2BvschzicowHs3LEXbqx5+PyOATAxuAWH7fjNioT4mPRAUp2xk4mpmUO3wed35RWZGuG36arVNLMTkwoUyrYdeAGPMv9gI1y3fnXZ6eSthAc9+kGDUaAF/3ft7GMIT40x/yOE9zOpmqKMdndlj2tQJvVbUPD8YFgArGQI+JzX6gJdRnvuMmnq0tYkYTbx4MyML76k9cIFyAWu6550MpSbu6y66KJif8mt32p0QB torsten@torstenek.com"
initrd ${base-url}/coreos_production_pxe_image.cpio.gz
boot
@torstenek
torstenek / README.markdown
Created August 4, 2012 10:59 — forked from gudbergur/README.markdown
Bootstrap's Typeahead plugin extended (allowing for AJAX functionality) among other things

This is a fork of Bootstrap Typeahead that adds minimal but powerful extensions.

For example, process typeahead list asynchronously and return objects

  # This example does an AJAX lookup and is in CoffeeScript
  $('.typeahead').typeahead(
    # source can be a function
    source: (typeahead, query) ->
 # this function receives the typeahead object and the query string