diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/index.html b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/index.html new file mode 100644 index 0000000..a805a27 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/index.html @@ -0,0 +1,2169 @@ + + + + + + + Reproduce and Verify Filesystems [2016 ContainerCon.jp] + + + + + + + + + + + + + +
+
+
+

Reproduce and Verify Filesystems

+
+
+

Vincent Batts  @vbatts

+
+
$> finger $(whoami)
+Login: vbatts                           Name: Vincent Batts
+Directory: /home/vbatts                 Shell: /bin/bash
+Such mail.
+Plan:
+OHMAN
+$> id -Gn
+devel opencontainers docker appc redhat golang slackware
+
+
    +
  • Packaging
  • +
  • Content Addressibility
  • +
  • Compression!
  • +
  • Reproducible Archives
  • +
  • Verify at rest filesystems
  • +
+
+
+

Agenda

+
+
+

Packaging

+
+
+

tar archives

+
+
+

Slackware packages (tar(1) archives)

+
+
+

Debian *.deb (ar(1) archive of tar(1) archives)

+
+
+

Red Hat *.rpm (custom key/value binary and cpio(1))

+
+
+

Java *.jar and *.war (zip(1) archive)

+
+
+

Ruby *.gem (tar(1) archive of tar(1) archives)

+
+
+

Container Images (tar(1) archives)

+
+
+

Content Addressibility

+
+
+

Opaque Object storage

+
+
+

changed object = new object

+
+
+

cryptographic assurance

+
+
+

compression!

+
+
+

inflate/deflate (RFC1951)

+
+
+

same objects, but variation in compression

+
+
+

Gzip (RFC1952)

+
+
+

`gzip` vs Golang `compress/gzip` vs Zlib

+
+
+

ideally compress for transfer and storage, but not for identity

+
+

compression!

+
+
#!/bin/sh
+dd if=/dev/urandom of=rando.img bs=1M count=10
+cat rando.img | gzip -n > rando.img.gz
+cat rando.img | gzip -n -9 > rando.img.9.gz
+cat rando.img | xz > rando.img.xz
+cat rando.img | xz -9 > rando.img.9.xz
+sha1sum rando.img* > SHA1
+
+cat rando.img | gzip -n > rando.img.gz
+cat rando.img | gzip -n -9 > rando.img.9.gz
+cat rando.img | xz > rando.img.xz
+cat rando.img | xz -9 > rando.img.9.xz
+sha1sum -c ./SHA1
+

compression!

+
+
#!/usr/bin/env ruby
+
+require 'zlib'
+
+input = File.open(ARGV.first)
+Zlib::GzipWriter.open(ARGV.first + '.gz') do |gz|
+  input.each {|line|
+    gz.write(line)
+  }
+end
+input.close
+

compression!

+
+
package main
+  
+import (
+        "compress/gzip"  
+        "io"
+        "os"  
+)
+
+func main() {
+        input, err := os.Open(os.Args[1])
+        if err != nil {
+                println(err.Error())
+                os.Exit(1)
+        }
+        output, err := os.Create(os.Args[1] + ".gz")
+        if err != nil {
+                println(err.Error())
+                os.Exit(1)
+        }
+        gz := gzip.NewWriter(output)
+        if _, err := io.Copy(gz, input); err != nil {
+                println(err.Error())
+                os.Exit(1)
+        }
+}
+

reproducible archive

+
+
+

reproducible-builds.org

+
+
+

processed checksum of tar archive (see deprecated Docker TarSum)

+
+
+

keep around the original *.tar?

+
+
+

re-assemble the original *.tar

+
+ +
+

reproducible archive

+
+ +
tar cf demo.tar *.sh
+sha1sum demo.tar | tee SHA1
+
+go install github.com/vbatts/tar-split/cmd/tar-split
+tar-split disasm --no-stdout ./demo.tar
+ls -lh tar-data.json.gz
+
+rm -f demo.tar
+tar-split asm --output demo.tar --path .
+sha1sum -c ./SHA1
+

Verify at rest Filesystems

+
+ +
+

Regardless of transport, ensure resulting filesystem

+
+
+

(*.tar archive, rsync, bittorrent, IPFS, etc)

+
+
+

`rpm -qV <package>` functionality

+
+
+

Future hopes could be IMA/EVM

+
+
+

Passive validation of directory hierarchies

+
+
+

BSD mtree(8)

+
+

Verify at rest Filesystems

+
+ + + + +
+

Verify at rest Filesystems

+
+ +
mtree -c -p ./ -K sha256digest | tee /tmp/demo.mtree
+
+mtree -f /tmp/demo.mtree -p ./
+echo $?
+
+read
+
+touch $0
+mtree -f /tmp/demo.mtree -p ./
+

Verify at rest Filesystems

+
+ +
go get -u github.com/vbatts/go-mtree/cmd/gomtree
+gomtree -c -p ./ -K sha256digest | tee /tmp/demo.mtree
+
+gomtree -f /tmp/demo.mtree -p ./
+echo $?
+
+read
+
+touch $0
+gomtree -f /tmp/demo.mtree -p ./
+

Verify at rest Filesystems

+
+ +
#!/usr/bin/env python
+
+import libarchive
+
+with libarchive.file_writer('../demo.mtree', 'mtree') as a:
+    a.add_files('./')
+
+
+
+

with packages: libarchive and python-libarchive-c

+
+

Call to Action

+
+ +
+

You have the need to store archives, whole and extracted,

+ +

check out github.com/vbatts/tar-split

+
+
+

You have the need to verify, or restore, a filesystem regardless of how it was distributed, check out github.com/vbatts/go-mtree or other mtree projects

+
+

Thank You!

+
+
+

VINCENT BATTS

+ +

@VBATTS| VBATTS@REDHAT.COM

+
+
+
+ + + + + + + + + + + + + + + diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/asul/asul-bold.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/asul/asul-bold.ttf new file mode 120000 index 0000000..eee7dcc --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/asul/asul-bold.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/asul/asul-bold.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/asul/asul-bold.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/asul/asul-bold.woff new file mode 120000 index 0000000..8ab8066 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/asul/asul-bold.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/asul/asul-bold.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/asul/asul-regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/asul/asul-regular.ttf new file mode 120000 index 0000000..38393c3 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/asul/asul-regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/asul/asul-regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/asul/asul-regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/asul/asul-regular.woff new file mode 120000 index 0000000..27bedcb --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/asul/asul-regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/asul/asul-regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/asul/asul.css b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/asul/asul.css new file mode 120000 index 0000000..4b9bdb6 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/asul/asul.css @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/asul/asul.css \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/cabinsketch/cabinsketch-bold.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/cabinsketch/cabinsketch-bold.ttf new file mode 120000 index 0000000..8aa6fc1 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/cabinsketch/cabinsketch-bold.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/cabinsketch/cabinsketch-bold.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/cabinsketch/cabinsketch-bold.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/cabinsketch/cabinsketch-bold.woff new file mode 120000 index 0000000..e8cc489 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/cabinsketch/cabinsketch-bold.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/cabinsketch/cabinsketch-bold.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/cabinsketch/cabinsketch-regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/cabinsketch/cabinsketch-regular.ttf new file mode 120000 index 0000000..fb6a330 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/cabinsketch/cabinsketch-regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/cabinsketch/cabinsketch-regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/cabinsketch/cabinsketch-regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/cabinsketch/cabinsketch-regular.woff new file mode 120000 index 0000000..8d59bd8 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/cabinsketch/cabinsketch-regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/cabinsketch/cabinsketch-regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/cabinsketch/cabinsketch.css b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/cabinsketch/cabinsketch.css new file mode 120000 index 0000000..d7bee3d --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/cabinsketch/cabinsketch.css @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/cabinsketch/cabinsketch.css \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-bold.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-bold.ttf new file mode 120000 index 0000000..e0715c3 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-bold.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/josefinsans/josefinsans-bold.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-bold.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-bold.woff new file mode 120000 index 0000000..9892ad5 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-bold.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/josefinsans/josefinsans-bold.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-bolditalic.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-bolditalic.ttf new file mode 120000 index 0000000..47a6cd2 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-bolditalic.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/josefinsans/josefinsans-bolditalic.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-bolditalic.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-bolditalic.woff new file mode 120000 index 0000000..62a0165 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-bolditalic.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/josefinsans/josefinsans-bolditalic.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-italic.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-italic.ttf new file mode 120000 index 0000000..187baab --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-italic.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/josefinsans/josefinsans-italic.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-italic.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-italic.woff new file mode 120000 index 0000000..c0ff8dd --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-italic.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/josefinsans/josefinsans-italic.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-regular.ttf new file mode 120000 index 0000000..3a6262d --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/josefinsans/josefinsans-regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-regular.woff new file mode 120000 index 0000000..75bb88a --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans-regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/josefinsans/josefinsans-regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans.css b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans.css new file mode 120000 index 0000000..bdf6220 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/josefinsans/josefinsans.css @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/josefinsans/josefinsans.css \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_AMS-Regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_AMS-Regular.ttf new file mode 120000 index 0000000..a93d59d --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_AMS-Regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_AMS-Regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_AMS-Regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_AMS-Regular.woff new file mode 120000 index 0000000..d4b4a2d --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_AMS-Regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_AMS-Regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Caligraphic-Bold.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Caligraphic-Bold.ttf new file mode 120000 index 0000000..0b34c2a --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Caligraphic-Bold.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Caligraphic-Bold.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Caligraphic-Bold.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Caligraphic-Bold.woff new file mode 120000 index 0000000..65afe0a --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Caligraphic-Bold.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Caligraphic-Bold.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Caligraphic-Regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Caligraphic-Regular.ttf new file mode 120000 index 0000000..d941d88 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Caligraphic-Regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Caligraphic-Regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Caligraphic-Regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Caligraphic-Regular.woff new file mode 120000 index 0000000..caed4b1 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Caligraphic-Regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Caligraphic-Regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Fraktur-Bold.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Fraktur-Bold.ttf new file mode 120000 index 0000000..582d487 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Fraktur-Bold.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Fraktur-Bold.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Fraktur-Bold.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Fraktur-Bold.woff new file mode 120000 index 0000000..038f8fa --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Fraktur-Bold.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Fraktur-Bold.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Fraktur-Regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Fraktur-Regular.ttf new file mode 120000 index 0000000..96b288a --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Fraktur-Regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Fraktur-Regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Fraktur-Regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Fraktur-Regular.woff new file mode 120000 index 0000000..fc141cd --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Fraktur-Regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Fraktur-Regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Main-Bold.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Main-Bold.ttf new file mode 120000 index 0000000..e1f1cb2 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Main-Bold.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Main-Bold.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Main-Bold.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Main-Bold.woff new file mode 120000 index 0000000..61d77bb --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Main-Bold.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Main-Bold.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Main-Italic.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Main-Italic.ttf new file mode 120000 index 0000000..d08ebf2 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Main-Italic.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Main-Italic.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Main-Italic.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Main-Italic.woff new file mode 120000 index 0000000..b36cb2e --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Main-Italic.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Main-Italic.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Main-Regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Main-Regular.ttf new file mode 120000 index 0000000..323d450 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Main-Regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Main-Regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Main-Regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Main-Regular.woff new file mode 120000 index 0000000..c675713 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Main-Regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Main-Regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Math-BoldItalic.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Math-BoldItalic.ttf new file mode 120000 index 0000000..d7fa9d3 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Math-BoldItalic.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Math-BoldItalic.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Math-BoldItalic.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Math-BoldItalic.woff new file mode 120000 index 0000000..07772dc --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Math-BoldItalic.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Math-BoldItalic.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Math-Italic.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Math-Italic.ttf new file mode 120000 index 0000000..1660738 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Math-Italic.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Math-Italic.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Math-Italic.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Math-Italic.woff new file mode 120000 index 0000000..00e87c9 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Math-Italic.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Math-Italic.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Math-Regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Math-Regular.ttf new file mode 120000 index 0000000..87121bf --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Math-Regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Math-Regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Math-Regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Math-Regular.woff new file mode 120000 index 0000000..68134c3 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Math-Regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Math-Regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_SansSerif-Bold.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_SansSerif-Bold.ttf new file mode 120000 index 0000000..e4c02c0 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_SansSerif-Bold.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_SansSerif-Bold.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_SansSerif-Bold.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_SansSerif-Bold.woff new file mode 120000 index 0000000..04854a1 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_SansSerif-Bold.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_SansSerif-Bold.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_SansSerif-Italic.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_SansSerif-Italic.ttf new file mode 120000 index 0000000..e52fa6b --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_SansSerif-Italic.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_SansSerif-Italic.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_SansSerif-Italic.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_SansSerif-Italic.woff new file mode 120000 index 0000000..d76cdd2 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_SansSerif-Italic.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_SansSerif-Italic.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_SansSerif-Regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_SansSerif-Regular.ttf new file mode 120000 index 0000000..4c1da3c --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_SansSerif-Regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_SansSerif-Regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_SansSerif-Regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_SansSerif-Regular.woff new file mode 120000 index 0000000..cd570df --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_SansSerif-Regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_SansSerif-Regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Script-Regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Script-Regular.ttf new file mode 120000 index 0000000..857f93f --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Script-Regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Script-Regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Script-Regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Script-Regular.woff new file mode 120000 index 0000000..906e9bb --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Script-Regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Script-Regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size1-Regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size1-Regular.ttf new file mode 120000 index 0000000..e68db03 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size1-Regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Size1-Regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size1-Regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size1-Regular.woff new file mode 120000 index 0000000..c91a7ce --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size1-Regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Size1-Regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size2-Regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size2-Regular.ttf new file mode 120000 index 0000000..8273da6 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size2-Regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Size2-Regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size2-Regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size2-Regular.woff new file mode 120000 index 0000000..054bd47 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size2-Regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Size2-Regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size3-Regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size3-Regular.ttf new file mode 120000 index 0000000..d3d3d6d --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size3-Regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Size3-Regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size3-Regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size3-Regular.woff new file mode 120000 index 0000000..f53f57c --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size3-Regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Size3-Regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size4-Regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size4-Regular.ttf new file mode 120000 index 0000000..b96ab5a --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size4-Regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Size4-Regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size4-Regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size4-Regular.woff new file mode 120000 index 0000000..e9dd6ac --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Size4-Regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Size4-Regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Typewriter-Regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Typewriter-Regular.ttf new file mode 120000 index 0000000..fd955ad --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Typewriter-Regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Typewriter-Regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Typewriter-Regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Typewriter-Regular.woff new file mode 120000 index 0000000..051e979 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/katex/KaTeX_Typewriter-Regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/katex/KaTeX_Typewriter-Regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-bold.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-bold.ttf new file mode 120000 index 0000000..983ae2b --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-bold.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/lato/lato-bold.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-bold.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-bold.woff new file mode 120000 index 0000000..e99124d --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-bold.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/lato/lato-bold.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-bolditalic.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-bolditalic.ttf new file mode 120000 index 0000000..5bdeee9 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-bolditalic.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/lato/lato-bolditalic.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-bolditalic.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-bolditalic.woff new file mode 120000 index 0000000..b778267 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-bolditalic.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/lato/lato-bolditalic.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-italic.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-italic.ttf new file mode 120000 index 0000000..aba5931 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-italic.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/lato/lato-italic.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-italic.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-italic.woff new file mode 120000 index 0000000..a1c61c9 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-italic.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/lato/lato-italic.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-regular.ttf new file mode 120000 index 0000000..02df5f5 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/lato/lato-regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-regular.woff new file mode 120000 index 0000000..490bf22 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato-regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/lato/lato-regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato.css b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato.css new file mode 120000 index 0000000..ff2f0c3 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/lato/lato.css @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/lato/lato.css \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/league/league_gothic.css b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/league/league_gothic.css new file mode 120000 index 0000000..b24526f --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/league/league_gothic.css @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/league/league_gothic.css \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/league/league_gothic.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/league/league_gothic.ttf new file mode 120000 index 0000000..b6e7b84 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/league/league_gothic.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/league/league_gothic.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/league/league_gothic.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/league/league_gothic.woff new file mode 120000 index 0000000..87f98a0 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/league/league_gothic.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/league/league_gothic.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/league/league_gothic_license b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/league/league_gothic_license new file mode 120000 index 0000000..61a4455 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/league/league_gothic_license @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/league/league_gothic_license \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/merriweathersans/merriweathersans-bold.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/merriweathersans/merriweathersans-bold.ttf new file mode 120000 index 0000000..a8d7fd3 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/merriweathersans/merriweathersans-bold.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/merriweathersans/merriweathersans-bold.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/merriweathersans/merriweathersans-bold.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/merriweathersans/merriweathersans-bold.woff new file mode 120000 index 0000000..ece5ee6 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/merriweathersans/merriweathersans-bold.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/merriweathersans/merriweathersans-bold.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/merriweathersans/merriweathersans-regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/merriweathersans/merriweathersans-regular.ttf new file mode 120000 index 0000000..4b8639d --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/merriweathersans/merriweathersans-regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/merriweathersans/merriweathersans-regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/merriweathersans/merriweathersans-regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/merriweathersans/merriweathersans-regular.woff new file mode 120000 index 0000000..a9a647c --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/merriweathersans/merriweathersans-regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/merriweathersans/merriweathersans-regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/merriweathersans/merriweathersans.css b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/merriweathersans/merriweathersans.css new file mode 120000 index 0000000..457447f --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/merriweathersans/merriweathersans.css @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/merriweathersans/merriweathersans.css \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/montserrat/montserrat-bold.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/montserrat/montserrat-bold.ttf new file mode 120000 index 0000000..b37acd5 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/montserrat/montserrat-bold.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/montserrat/montserrat-bold.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/montserrat/montserrat-bold.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/montserrat/montserrat-bold.woff new file mode 120000 index 0000000..bef226f --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/montserrat/montserrat-bold.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/montserrat/montserrat-bold.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/montserrat/montserrat-regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/montserrat/montserrat-regular.ttf new file mode 120000 index 0000000..2895b49 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/montserrat/montserrat-regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/montserrat/montserrat-regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/montserrat/montserrat-regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/montserrat/montserrat-regular.woff new file mode 120000 index 0000000..878f688 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/montserrat/montserrat-regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/montserrat/montserrat-regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/montserrat/montserrat.css b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/montserrat/montserrat.css new file mode 120000 index 0000000..146b5cc --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/montserrat/montserrat.css @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/montserrat/montserrat.css \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/newscycle/newscycle-bold.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/newscycle/newscycle-bold.ttf new file mode 120000 index 0000000..1b724cf --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/newscycle/newscycle-bold.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/newscycle/newscycle-bold.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/newscycle/newscycle-bold.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/newscycle/newscycle-bold.woff new file mode 120000 index 0000000..6555165 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/newscycle/newscycle-bold.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/newscycle/newscycle-bold.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/newscycle/newscycle-regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/newscycle/newscycle-regular.ttf new file mode 120000 index 0000000..d84ef5d --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/newscycle/newscycle-regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/newscycle/newscycle-regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/newscycle/newscycle-regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/newscycle/newscycle-regular.woff new file mode 120000 index 0000000..fef80d0 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/newscycle/newscycle-regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/newscycle/newscycle-regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/newscycle/newscycle.css b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/newscycle/newscycle.css new file mode 120000 index 0000000..1e946ae --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/newscycle/newscycle.css @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/newscycle/newscycle.css \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-bold.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-bold.ttf new file mode 120000 index 0000000..eea6826 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-bold.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/opensans/opensans-bold.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-bold.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-bold.woff new file mode 120000 index 0000000..a986686 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-bold.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/opensans/opensans-bold.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-bolditalic.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-bolditalic.ttf new file mode 120000 index 0000000..ae99980 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-bolditalic.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/opensans/opensans-bolditalic.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-bolditalic.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-bolditalic.woff new file mode 120000 index 0000000..18e7466 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-bolditalic.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/opensans/opensans-bolditalic.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-italic.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-italic.ttf new file mode 120000 index 0000000..db3b89c --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-italic.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/opensans/opensans-italic.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-italic.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-italic.woff new file mode 120000 index 0000000..4f6ffb7 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-italic.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/opensans/opensans-italic.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-regular.ttf new file mode 120000 index 0000000..3f33d38 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/opensans/opensans-regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-regular.woff new file mode 120000 index 0000000..46c53c2 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans-regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/opensans/opensans-regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans.css b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans.css new file mode 120000 index 0000000..2816061 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/opensans/opensans.css @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/opensans/opensans.css \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass-bold.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass-bold.ttf new file mode 120000 index 0000000..b7a6f23 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass-bold.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass/overpass-bold.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass-bold.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass-bold.woff new file mode 120000 index 0000000..1e1aa1c --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass-bold.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass/overpass-bold.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass-light.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass-light.ttf new file mode 120000 index 0000000..1f8d6c7 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass-light.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass/overpass-light.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass-light.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass-light.woff new file mode 120000 index 0000000..dbfe00a --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass-light.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass/overpass-light.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass-regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass-regular.ttf new file mode 120000 index 0000000..6777b11 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass-regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass/overpass-regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass-regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass-regular.woff new file mode 120000 index 0000000..ab49e5a --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass-regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass/overpass-regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass.css b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass.css new file mode 120000 index 0000000..ca30d32 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass/overpass.css @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass/overpass.css \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-bold.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-bold.ttf new file mode 120000 index 0000000..896f98e --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-bold.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass2/overpass2-bold.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-bold.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-bold.woff new file mode 120000 index 0000000..89357b1 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-bold.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass2/overpass2-bold.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-bolditalic.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-bolditalic.ttf new file mode 120000 index 0000000..0ddb657 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-bolditalic.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass2/overpass2-bolditalic.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-bolditalic.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-bolditalic.woff new file mode 120000 index 0000000..9d1065e --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-bolditalic.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass2/overpass2-bolditalic.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-extralight.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-extralight.ttf new file mode 120000 index 0000000..5341eac --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-extralight.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass2/overpass2-extralight.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-extralight.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-extralight.woff new file mode 120000 index 0000000..bd2a79d --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-extralight.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass2/overpass2-extralight.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-extralightitalic.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-extralightitalic.ttf new file mode 120000 index 0000000..adab027 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-extralightitalic.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass2/overpass2-extralightitalic.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-extralightitalic.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-extralightitalic.woff new file mode 120000 index 0000000..6ade939 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-extralightitalic.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass2/overpass2-extralightitalic.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-italic.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-italic.ttf new file mode 120000 index 0000000..b72e8f0 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-italic.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass2/overpass2-italic.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-italic.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-italic.woff new file mode 120000 index 0000000..0aed675 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-italic.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass2/overpass2-italic.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-light.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-light.ttf new file mode 120000 index 0000000..8a065ee --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-light.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass2/overpass2-light.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-light.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-light.woff new file mode 120000 index 0000000..0fa823c --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-light.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass2/overpass2-light.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-lightitalic.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-lightitalic.ttf new file mode 120000 index 0000000..dfb0011 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-lightitalic.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass2/overpass2-lightitalic.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-lightitalic.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-lightitalic.woff new file mode 120000 index 0000000..5daeedc --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-lightitalic.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass2/overpass2-lightitalic.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-regular.ttf new file mode 120000 index 0000000..6037527 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass2/overpass2-regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-regular.woff new file mode 120000 index 0000000..bc66177 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2-regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass2/overpass2-regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2.css b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2.css new file mode 120000 index 0000000..df24760 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/overpass2/overpass2.css @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/overpass2/overpass2.css \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/oxygen/oxygen-bold.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/oxygen/oxygen-bold.ttf new file mode 120000 index 0000000..d2b74ff --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/oxygen/oxygen-bold.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/oxygen/oxygen-bold.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/oxygen/oxygen-bold.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/oxygen/oxygen-bold.woff new file mode 120000 index 0000000..350bb84 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/oxygen/oxygen-bold.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/oxygen/oxygen-bold.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/oxygen/oxygen-regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/oxygen/oxygen-regular.ttf new file mode 120000 index 0000000..24df28b --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/oxygen/oxygen-regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/oxygen/oxygen-regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/oxygen/oxygen-regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/oxygen/oxygen-regular.woff new file mode 120000 index 0000000..224950e --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/oxygen/oxygen-regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/oxygen/oxygen-regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/oxygen/oxygen.css b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/oxygen/oxygen.css new file mode 120000 index 0000000..65c4a10 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/oxygen/oxygen.css @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/oxygen/oxygen.css \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/quicksand/quicksand-bold.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/quicksand/quicksand-bold.ttf new file mode 120000 index 0000000..5ff22b2 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/quicksand/quicksand-bold.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/quicksand/quicksand-bold.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/quicksand/quicksand-bold.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/quicksand/quicksand-bold.woff new file mode 120000 index 0000000..255af87 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/quicksand/quicksand-bold.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/quicksand/quicksand-bold.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/quicksand/quicksand-regular.ttf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/quicksand/quicksand-regular.ttf new file mode 120000 index 0000000..27e8efd --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/quicksand/quicksand-regular.ttf @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/quicksand/quicksand-regular.ttf \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/quicksand/quicksand-regular.woff b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/quicksand/quicksand-regular.woff new file mode 120000 index 0000000..f68e0e9 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/quicksand/quicksand-regular.woff @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/quicksand/quicksand-regular.woff \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/quicksand/quicksand.css b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/quicksand/quicksand.css new file mode 120000 index 0000000..3bfdcdd --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/fonts/quicksand/quicksand.css @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/fonts/quicksand/quicksand.css \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/head.min.js b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/head.min.js new file mode 120000 index 0000000..b9eb314 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/head.min.js @@ -0,0 +1 @@ +../../05-Container_past_present_future-coreosfest-de/lib/head.min.js \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/offline-v1.css b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/offline-v1.css new file mode 120000 index 0000000..21a177a --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/offline-v1.css @@ -0,0 +1 @@ +../../05-Container_past_present_future-coreosfest-de/lib/offline-v1.css \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/offline-v2.css b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/offline-v2.css new file mode 120000 index 0000000..e49fc35 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/offline-v2.css @@ -0,0 +1 @@ +../../05-Container_past_present_future-coreosfest-de/lib/offline-v2.css \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/offline.js b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/offline.js new file mode 120000 index 0000000..130cb7a --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/offline.js @@ -0,0 +1 @@ +../../05-Container_past_present_future-coreosfest-de/lib/offline.js \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal-plugins/highlight/highlight.js b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal-plugins/highlight/highlight.js new file mode 120000 index 0000000..58ad953 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal-plugins/highlight/highlight.js @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/reveal-plugins/highlight/highlight.js \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal-plugins/markdown/markdown.js b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal-plugins/markdown/markdown.js new file mode 120000 index 0000000..37a2490 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal-plugins/markdown/markdown.js @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/reveal-plugins/markdown/markdown.js \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal-plugins/markdown/marked.js b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal-plugins/markdown/marked.js new file mode 120000 index 0000000..6f5cbc2 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal-plugins/markdown/marked.js @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/reveal-plugins/markdown/marked.js \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal-plugins/notes/notes.html b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal-plugins/notes/notes.html new file mode 120000 index 0000000..216a755 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal-plugins/notes/notes.html @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/reveal-plugins/notes/notes.html \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal-plugins/notes/notes.js b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal-plugins/notes/notes.js new file mode 120000 index 0000000..6e02412 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal-plugins/notes/notes.js @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/reveal-plugins/notes/notes.js \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal-plugins/zoom/zoom.js b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal-plugins/zoom/zoom.js new file mode 120000 index 0000000..6ea80f2 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal-plugins/zoom/zoom.js @@ -0,0 +1 @@ +../../../../05-Container_past_present_future-coreosfest-de/lib/reveal-plugins/zoom/zoom.js \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal.css b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal.css new file mode 120000 index 0000000..d50197d --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal.css @@ -0,0 +1 @@ +../../05-Container_past_present_future-coreosfest-de/lib/reveal.css \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal.min.js b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal.min.js new file mode 120000 index 0000000..af25ca4 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/lib/reveal.min.js @@ -0,0 +1 @@ +../../05-Container_past_present_future-coreosfest-de/lib/reveal.min.js \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems.pdf b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems.pdf new file mode 100644 index 0000000..794acc7 Binary files /dev/null and b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems.pdf differ diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/0ff1b7eb9667528cb8cde60f7a5a2d5c.gif b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/0ff1b7eb9667528cb8cde60f7a5a2d5c.gif new file mode 120000 index 0000000..8bd9f33 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/0ff1b7eb9667528cb8cde60f7a5a2d5c.gif @@ -0,0 +1 @@ +../../05-Container_past_present_future-coreosfest-de/containers-past-present-and-future/0ff1b7eb9667528cb8cde60f7a5a2d5c.gif \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/29583aa0f6502646cc4a405a00d175f1.jpg b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/29583aa0f6502646cc4a405a00d175f1.jpg new file mode 120000 index 0000000..4ae6f93 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/29583aa0f6502646cc4a405a00d175f1.jpg @@ -0,0 +1 @@ +../../05-Container_past_present_future-coreosfest-de/containers-past-present-and-future/29583aa0f6502646cc4a405a00d175f1.jpg \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/339e84e5deca8af62480a1dc3fb7af96.gif b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/339e84e5deca8af62480a1dc3fb7af96.gif new file mode 120000 index 0000000..be603c4 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/339e84e5deca8af62480a1dc3fb7af96.gif @@ -0,0 +1 @@ +../../05-Container_past_present_future-coreosfest-de/containers-past-present-and-future/339e84e5deca8af62480a1dc3fb7af96.gif \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/52bae18fc307ddf4e5bfe956296b0c0b.gif b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/52bae18fc307ddf4e5bfe956296b0c0b.gif new file mode 100644 index 0000000..e34bbda Binary files /dev/null and b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/52bae18fc307ddf4e5bfe956296b0c0b.gif differ diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/60672f0849c5b758b11dc0905dc42c02.svg b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/60672f0849c5b758b11dc0905dc42c02.svg new file mode 120000 index 0000000..84a4bb7 --- /dev/null +++ b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/60672f0849c5b758b11dc0905dc42c02.svg @@ -0,0 +1 @@ +../../05-Container_past_present_future-coreosfest-de/containers-past-present-and-future/60672f0849c5b758b11dc0905dc42c02.svg \ No newline at end of file diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/d1512c362a98d9ec4ccf4c33bb2064a7.gif b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/d1512c362a98d9ec4ccf4c33bb2064a7.gif new file mode 100644 index 0000000..2beaf03 Binary files /dev/null and b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/d1512c362a98d9ec4ccf4c33bb2064a7.gif differ diff --git a/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/de26049e2540667b94b3ebaac424f755.jpg b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/de26049e2540667b94b3ebaac424f755.jpg new file mode 100644 index 0000000..f7e4044 Binary files /dev/null and b/2016/06-Reproduce_and_verify_filesystems-ContainerCon.jp/reproduce-and-verify-filesystems/de26049e2540667b94b3ebaac424f755.jpg differ