mruby advent calendar 2013 ネタです。
コードは github においてあります。
はじめまして、mruby にコミットしてたり(最近はできてない)、
mruby gem を作っていたりする kaishuu0123 です。
なにげに Advent calendar 初参加。ヽ|・ω・|ゞ
# Backup a data volume container for Jenkins | |
jenkins-backup: | |
image: busybox | |
command: tar cvf /backup/jenkins-backup.tar /var/jenkins_home | |
volumes: | |
- .:/backup |
module MiddlewareExampleGroup | |
def self.included(base) | |
base.class_eval do | |
let(:app) { | |
Rack::Builder.new do | |
eval File.read(Rails.root.join('config.ru')) | |
end | |
} | |
end | |
end |
$(document).ready(function() { | |
$("#graph_button").click(function () { | |
var img = document.getElementById("graph_img"); | |
g = graph_data[999] | |
Dygraph.Export.asPNG(g, img); | |
console.log(img); | |
window.location.href = img.src; //.replace('image/png','image/octet-stream'); | |
}); | |
}); |
mruby advent calendar 2013 ネタです。
コードは github においてあります。
はじめまして、mruby にコミットしてたり(最近はできてない)、
mruby gem を作っていたりする kaishuu0123 です。
なにげに Advent calendar 初参加。ヽ|・ω・|ゞ
median |
$ make allnoconfig | |
$ make menuconfig | |
enable 8250 serial driver | |
enable ELF format | |
enable initrd | |
$ make | |
$ qemu -nographic -kernel ~/work/linux-3.11/arch/x86/boot/bzImage -initrd ~/work/helloworld.initramfs -append "initcall_debug console=ttyS0 earlyprintk=serial,keep debug" |
set nocompatible | |
filetype off | |
" init Vundle | |
set rtp+=~/.vim/vundle.git/ | |
call vundle#rc() | |
Bundle 'gmarik/vundle' | |
Bundle 'thinca/vim-quickrun' |
xv6を学ぶ上での準備
起動処理を読む(main.c の main() が呼ばれるまで)
main() からmpmain()が呼ばれるまで