├── .DS_Store ├── README.md ├── _config.yml └── doc ├── pub ├── Afternoon1 │ ├── html │ │ ├── lecture2-bs.html │ │ ├── lecture2-reveal.html │ │ ├── lecture2-solarized.html │ │ ├── lecture2.html │ │ └── reveal.js │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ ├── images │ │ │ │ ├── cbc_footer.png │ │ │ │ ├── cbc_symbol.png │ │ │ │ ├── simula_footer.png │ │ │ │ ├── simula_logo.png │ │ │ │ ├── simula_symbol.png │ │ │ │ ├── uio_footer.png │ │ │ │ └── uio_symbol.png │ │ │ ├── print │ │ │ │ ├── paper.css │ │ │ │ └── pdf.css │ │ │ ├── reveal.css │ │ │ ├── reveal.scss │ │ │ └── theme │ │ │ │ ├── README.md │ │ │ │ ├── beige.css │ │ │ │ ├── beigesmall.css │ │ │ │ ├── black.css │ │ │ │ ├── blood.css │ │ │ │ ├── cbc.css │ │ │ │ ├── darkgray.css │ │ │ │ ├── default.css │ │ │ │ ├── league.css │ │ │ │ ├── moon.css │ │ │ │ ├── night.css │ │ │ │ ├── serif.css │ │ │ │ ├── simple.css │ │ │ │ ├── simula.css │ │ │ │ ├── sky.css │ │ │ │ ├── solarized.css │ │ │ │ ├── source │ │ │ │ ├── beige.scss │ │ │ │ ├── beigesmall.scss │ │ │ │ ├── black.scss │ │ │ │ ├── blood.scss │ │ │ │ ├── cbc.scss │ │ │ │ ├── darkgray.scss │ │ │ │ ├── default.scss │ │ │ │ ├── league.scss │ │ │ │ ├── moon.scss │ │ │ │ ├── night.scss │ │ │ │ ├── serif.scss │ │ │ │ ├── simple.scss │ │ │ │ ├── simula.scss │ │ │ │ ├── sky.scss │ │ │ │ ├── solarized.scss │ │ │ │ └── white.scss │ │ │ │ ├── template │ │ │ │ ├── mixins.scss │ │ │ │ ├── settings.scss │ │ │ │ └── theme.scss │ │ │ │ └── white.css │ │ │ ├── index.html │ │ │ ├── js │ │ │ └── reveal.js │ │ │ ├── lib │ │ │ ├── css │ │ │ │ └── zenburn.css │ │ │ ├── font │ │ │ │ ├── league-gothic │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── league-gothic.css │ │ │ │ │ ├── league-gothic.eot │ │ │ │ │ ├── league-gothic.ttf │ │ │ │ │ └── league-gothic.woff │ │ │ │ └── source-sans-pro │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ │ └── source-sans-pro.css │ │ │ └── js │ │ │ │ ├── classList.js │ │ │ │ ├── head.min.js │ │ │ │ └── html5shiv.js │ │ │ ├── package.json │ │ │ ├── plugin │ │ │ ├── highlight │ │ │ │ └── highlight.js │ │ │ ├── leap │ │ │ │ └── leap.js │ │ │ ├── markdown │ │ │ │ ├── example.html │ │ │ │ ├── example.md │ │ │ │ ├── markdown.js │ │ │ │ └── marked.js │ │ │ ├── math │ │ │ │ └── math.js │ │ │ ├── multiplex │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── master.js │ │ │ ├── notes-server │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── notes.html │ │ │ ├── notes │ │ │ │ ├── notes.html │ │ │ │ └── notes.js │ │ │ ├── print-pdf │ │ │ │ └── print-pdf.js │ │ │ ├── remotes │ │ │ │ └── remotes.js │ │ │ ├── search │ │ │ │ └── search.js │ │ │ └── zoom-js │ │ │ │ └── zoom.js │ │ │ └── test │ │ │ ├── examples │ │ │ ├── assets │ │ │ │ ├── image1.png │ │ │ │ └── image2.png │ │ │ ├── barebones.html │ │ │ ├── embedded-media.html │ │ │ ├── math.html │ │ │ ├── slide-backgrounds.html │ │ │ └── slide-transitions.html │ │ │ ├── qunit-1.12.0.css │ │ │ ├── qunit-1.12.0.js │ │ │ ├── test-markdown-element-attributes.html │ │ │ ├── test-markdown-element-attributes.js │ │ │ ├── test-markdown-slide-attributes.html │ │ │ ├── test-markdown-slide-attributes.js │ │ │ ├── test-markdown.html │ │ │ ├── test-markdown.js │ │ │ ├── test-pdf.html │ │ │ ├── test-pdf.js │ │ │ ├── test.html │ │ │ └── test.js │ ├── ipynb │ │ ├── .DS_Store │ │ └── HamiltonianSimulation_notebook.ipynb │ └── pdf │ │ └── .DS_Store ├── Morning1 │ ├── html │ │ ├── lecture1-bs.html │ │ ├── lecture1-reveal.html │ │ ├── lecture1-solarized.html │ │ ├── lecture1.html │ │ └── reveal.js │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ ├── images │ │ │ │ ├── cbc_footer.png │ │ │ │ ├── cbc_symbol.png │ │ │ │ ├── simula_footer.png │ │ │ │ ├── simula_logo.png │ │ │ │ ├── simula_symbol.png │ │ │ │ ├── uio_footer.png │ │ │ │ └── uio_symbol.png │ │ │ ├── print │ │ │ │ ├── paper.css │ │ │ │ └── pdf.css │ │ │ ├── reveal.css │ │ │ ├── reveal.scss │ │ │ └── theme │ │ │ │ ├── README.md │ │ │ │ ├── beige.css │ │ │ │ ├── beigesmall.css │ │ │ │ ├── black.css │ │ │ │ ├── blood.css │ │ │ │ ├── cbc.css │ │ │ │ ├── darkgray.css │ │ │ │ ├── default.css │ │ │ │ ├── league.css │ │ │ │ ├── moon.css │ │ │ │ ├── night.css │ │ │ │ ├── serif.css │ │ │ │ ├── simple.css │ │ │ │ ├── simula.css │ │ │ │ ├── sky.css │ │ │ │ ├── solarized.css │ │ │ │ ├── source │ │ │ │ ├── beige.scss │ │ │ │ ├── beigesmall.scss │ │ │ │ ├── black.scss │ │ │ │ ├── blood.scss │ │ │ │ ├── cbc.scss │ │ │ │ ├── darkgray.scss │ │ │ │ ├── default.scss │ │ │ │ ├── league.scss │ │ │ │ ├── moon.scss │ │ │ │ ├── night.scss │ │ │ │ ├── serif.scss │ │ │ │ ├── simple.scss │ │ │ │ ├── simula.scss │ │ │ │ ├── sky.scss │ │ │ │ ├── solarized.scss │ │ │ │ └── white.scss │ │ │ │ ├── template │ │ │ │ ├── mixins.scss │ │ │ │ ├── settings.scss │ │ │ │ └── theme.scss │ │ │ │ └── white.css │ │ │ ├── index.html │ │ │ ├── js │ │ │ └── reveal.js │ │ │ ├── lib │ │ │ ├── css │ │ │ │ └── zenburn.css │ │ │ ├── font │ │ │ │ ├── league-gothic │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── league-gothic.css │ │ │ │ │ ├── league-gothic.eot │ │ │ │ │ ├── league-gothic.ttf │ │ │ │ │ └── league-gothic.woff │ │ │ │ └── source-sans-pro │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ │ └── source-sans-pro.css │ │ │ └── js │ │ │ │ ├── classList.js │ │ │ │ ├── head.min.js │ │ │ │ └── html5shiv.js │ │ │ ├── package.json │ │ │ ├── plugin │ │ │ ├── highlight │ │ │ │ └── highlight.js │ │ │ ├── leap │ │ │ │ └── leap.js │ │ │ ├── markdown │ │ │ │ ├── example.html │ │ │ │ ├── example.md │ │ │ │ ├── markdown.js │ │ │ │ └── marked.js │ │ │ ├── math │ │ │ │ └── math.js │ │ │ ├── multiplex │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── master.js │ │ │ ├── notes-server │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── notes.html │ │ │ ├── notes │ │ │ │ ├── notes.html │ │ │ │ └── notes.js │ │ │ ├── print-pdf │ │ │ │ └── print-pdf.js │ │ │ ├── remotes │ │ │ │ └── remotes.js │ │ │ ├── search │ │ │ │ └── search.js │ │ │ └── zoom-js │ │ │ │ └── zoom.js │ │ │ └── test │ │ │ ├── examples │ │ │ ├── assets │ │ │ │ ├── image1.png │ │ │ │ └── image2.png │ │ │ ├── barebones.html │ │ │ ├── embedded-media.html │ │ │ ├── math.html │ │ │ ├── slide-backgrounds.html │ │ │ └── slide-transitions.html │ │ │ ├── qunit-1.12.0.css │ │ │ ├── qunit-1.12.0.js │ │ │ ├── test-markdown-element-attributes.html │ │ │ ├── test-markdown-element-attributes.js │ │ │ ├── test-markdown-slide-attributes.html │ │ │ ├── test-markdown-slide-attributes.js │ │ │ ├── test-markdown.html │ │ │ ├── test-markdown.js │ │ │ ├── test-pdf.html │ │ │ ├── test-pdf.js │ │ │ ├── test.html │ │ │ └── test.js │ ├── ipynb │ │ └── Morning1Notebook_FRIBTA2022.ipynb │ └── pdf │ │ └── Morning1.pdf ├── handson1 │ └── ipynb │ │ ├── handson1.ipynb │ │ └── handson1_solutions.ipynb ├── handson3 │ └── ipynb │ │ └── handson3.ipynb ├── intro │ ├── html │ │ ├── intro-bs.html │ │ ├── intro-reveal.html │ │ ├── intro-solarized.html │ │ ├── intro.html │ │ └── reveal.js │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ ├── images │ │ │ │ ├── cbc_footer.png │ │ │ │ ├── cbc_symbol.png │ │ │ │ ├── simula_footer.png │ │ │ │ ├── simula_logo.png │ │ │ │ ├── simula_symbol.png │ │ │ │ ├── uio_footer.png │ │ │ │ └── uio_symbol.png │ │ │ ├── print │ │ │ │ ├── paper.css │ │ │ │ └── pdf.css │ │ │ ├── reveal.css │ │ │ ├── reveal.scss │ │ │ └── theme │ │ │ │ ├── README.md │ │ │ │ ├── beige.css │ │ │ │ ├── beigesmall.css │ │ │ │ ├── black.css │ │ │ │ ├── blood.css │ │ │ │ ├── cbc.css │ │ │ │ ├── darkgray.css │ │ │ │ ├── default.css │ │ │ │ ├── league.css │ │ │ │ ├── moon.css │ │ │ │ ├── night.css │ │ │ │ ├── serif.css │ │ │ │ ├── simple.css │ │ │ │ ├── simula.css │ │ │ │ ├── sky.css │ │ │ │ ├── solarized.css │ │ │ │ ├── source │ │ │ │ ├── beige.scss │ │ │ │ ├── beigesmall.scss │ │ │ │ ├── black.scss │ │ │ │ ├── blood.scss │ │ │ │ ├── cbc.scss │ │ │ │ ├── darkgray.scss │ │ │ │ ├── default.scss │ │ │ │ ├── league.scss │ │ │ │ ├── moon.scss │ │ │ │ ├── night.scss │ │ │ │ ├── serif.scss │ │ │ │ ├── simple.scss │ │ │ │ ├── simula.scss │ │ │ │ ├── sky.scss │ │ │ │ ├── solarized.scss │ │ │ │ └── white.scss │ │ │ │ ├── template │ │ │ │ ├── mixins.scss │ │ │ │ ├── settings.scss │ │ │ │ └── theme.scss │ │ │ │ └── white.css │ │ │ ├── index.html │ │ │ ├── js │ │ │ └── reveal.js │ │ │ ├── lib │ │ │ ├── css │ │ │ │ └── zenburn.css │ │ │ ├── font │ │ │ │ ├── league-gothic │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── league-gothic.css │ │ │ │ │ ├── league-gothic.eot │ │ │ │ │ ├── league-gothic.ttf │ │ │ │ │ └── league-gothic.woff │ │ │ │ └── source-sans-pro │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ │ └── source-sans-pro.css │ │ │ └── js │ │ │ │ ├── classList.js │ │ │ │ ├── head.min.js │ │ │ │ └── html5shiv.js │ │ │ ├── package.json │ │ │ ├── plugin │ │ │ ├── highlight │ │ │ │ └── highlight.js │ │ │ ├── leap │ │ │ │ └── leap.js │ │ │ ├── markdown │ │ │ │ ├── example.html │ │ │ │ ├── example.md │ │ │ │ ├── markdown.js │ │ │ │ └── marked.js │ │ │ ├── math │ │ │ │ └── math.js │ │ │ ├── multiplex │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── master.js │ │ │ ├── notes-server │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── notes.html │ │ │ ├── notes │ │ │ │ ├── notes.html │ │ │ │ └── notes.js │ │ │ ├── print-pdf │ │ │ │ └── print-pdf.js │ │ │ ├── remotes │ │ │ │ └── remotes.js │ │ │ ├── search │ │ │ │ └── search.js │ │ │ └── zoom-js │ │ │ │ └── zoom.js │ │ │ └── test │ │ │ ├── examples │ │ │ ├── assets │ │ │ │ ├── image1.png │ │ │ │ └── image2.png │ │ │ ├── barebones.html │ │ │ ├── embedded-media.html │ │ │ ├── math.html │ │ │ ├── slide-backgrounds.html │ │ │ └── slide-transitions.html │ │ │ ├── qunit-1.12.0.css │ │ │ ├── qunit-1.12.0.js │ │ │ ├── test-markdown-element-attributes.html │ │ │ ├── test-markdown-element-attributes.js │ │ │ ├── test-markdown-slide-attributes.html │ │ │ ├── test-markdown-slide-attributes.js │ │ │ ├── test-markdown.html │ │ │ ├── test-markdown.js │ │ │ ├── test-pdf.html │ │ │ ├── test-pdf.js │ │ │ ├── test.html │ │ │ └── test.js │ ├── ipynb │ │ ├── .ipynb_checkpoints │ │ │ └── intro-checkpoint.ipynb │ │ ├── QiskitNotes.ipynb │ │ ├── intro.ipynb │ │ └── ipynb-intro-src.tar.gz │ └── pdf │ │ └── intro.pdf ├── lecture1 │ ├── .DS_Store │ ├── html │ │ ├── lecture1-bs.html │ │ ├── lecture1-reveal.html │ │ ├── lecture1-solarized.html │ │ ├── lecture1.html │ │ └── reveal.js │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ ├── images │ │ │ │ ├── cbc_footer.png │ │ │ │ ├── cbc_symbol.png │ │ │ │ ├── simula_footer.png │ │ │ │ ├── simula_logo.png │ │ │ │ ├── simula_symbol.png │ │ │ │ ├── uio_footer.png │ │ │ │ └── uio_symbol.png │ │ │ ├── print │ │ │ │ ├── paper.css │ │ │ │ └── pdf.css │ │ │ ├── reveal.css │ │ │ ├── reveal.scss │ │ │ └── theme │ │ │ │ ├── README.md │ │ │ │ ├── beige.css │ │ │ │ ├── beigesmall.css │ │ │ │ ├── black.css │ │ │ │ ├── blood.css │ │ │ │ ├── cbc.css │ │ │ │ ├── darkgray.css │ │ │ │ ├── default.css │ │ │ │ ├── league.css │ │ │ │ ├── moon.css │ │ │ │ ├── night.css │ │ │ │ ├── serif.css │ │ │ │ ├── simple.css │ │ │ │ ├── simula.css │ │ │ │ ├── sky.css │ │ │ │ ├── solarized.css │ │ │ │ ├── source │ │ │ │ ├── beige.scss │ │ │ │ ├── beigesmall.scss │ │ │ │ ├── black.scss │ │ │ │ ├── blood.scss │ │ │ │ ├── cbc.scss │ │ │ │ ├── darkgray.scss │ │ │ │ ├── default.scss │ │ │ │ ├── league.scss │ │ │ │ ├── moon.scss │ │ │ │ ├── night.scss │ │ │ │ ├── serif.scss │ │ │ │ ├── simple.scss │ │ │ │ ├── simula.scss │ │ │ │ ├── sky.scss │ │ │ │ ├── solarized.scss │ │ │ │ └── white.scss │ │ │ │ ├── template │ │ │ │ ├── mixins.scss │ │ │ │ ├── settings.scss │ │ │ │ └── theme.scss │ │ │ │ └── white.css │ │ │ ├── index.html │ │ │ ├── js │ │ │ └── reveal.js │ │ │ ├── lib │ │ │ ├── css │ │ │ │ └── zenburn.css │ │ │ ├── font │ │ │ │ ├── league-gothic │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── league-gothic.css │ │ │ │ │ ├── league-gothic.eot │ │ │ │ │ ├── league-gothic.ttf │ │ │ │ │ └── league-gothic.woff │ │ │ │ └── source-sans-pro │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ │ └── source-sans-pro.css │ │ │ └── js │ │ │ │ ├── classList.js │ │ │ │ ├── head.min.js │ │ │ │ └── html5shiv.js │ │ │ ├── package.json │ │ │ ├── plugin │ │ │ ├── highlight │ │ │ │ └── highlight.js │ │ │ ├── leap │ │ │ │ └── leap.js │ │ │ ├── markdown │ │ │ │ ├── example.html │ │ │ │ ├── example.md │ │ │ │ ├── markdown.js │ │ │ │ └── marked.js │ │ │ ├── math │ │ │ │ └── math.js │ │ │ ├── multiplex │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── master.js │ │ │ ├── notes-server │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── notes.html │ │ │ ├── notes │ │ │ │ ├── notes.html │ │ │ │ └── notes.js │ │ │ ├── print-pdf │ │ │ │ └── print-pdf.js │ │ │ ├── remotes │ │ │ │ └── remotes.js │ │ │ ├── search │ │ │ │ └── search.js │ │ │ └── zoom-js │ │ │ │ └── zoom.js │ │ │ └── test │ │ │ ├── examples │ │ │ ├── assets │ │ │ │ ├── image1.png │ │ │ │ └── image2.png │ │ │ ├── barebones.html │ │ │ ├── embedded-media.html │ │ │ ├── math.html │ │ │ ├── slide-backgrounds.html │ │ │ └── slide-transitions.html │ │ │ ├── qunit-1.12.0.css │ │ │ ├── qunit-1.12.0.js │ │ │ ├── test-markdown-element-attributes.html │ │ │ ├── test-markdown-element-attributes.js │ │ │ ├── test-markdown-slide-attributes.html │ │ │ ├── test-markdown-slide-attributes.js │ │ │ ├── test-markdown.html │ │ │ ├── test-markdown.js │ │ │ ├── test-pdf.html │ │ │ ├── test-pdf.js │ │ │ ├── test.html │ │ │ └── test.js │ ├── ipynb │ │ ├── ipynb-lecture1-src.tar.gz │ │ └── lecture1.ipynb │ └── pdf │ │ ├── .DS_Store │ │ └── lecture1.pdf ├── lecture10 │ ├── ipynb │ │ └── lecture10.ipynb │ └── pdf │ │ └── lecture10.pdf ├── lecture11 │ └── ipynb │ │ └── lecture11.ipynb ├── lecture12 │ └── ipynb │ │ └── lecture12.ipynb ├── lecture2 │ ├── html │ │ ├── lecture2-bs.html │ │ ├── lecture2-reveal.html │ │ ├── lecture2-solarized.html │ │ ├── lecture2.html │ │ └── reveal.js │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ ├── images │ │ │ │ ├── cbc_footer.png │ │ │ │ ├── cbc_symbol.png │ │ │ │ ├── simula_footer.png │ │ │ │ ├── simula_logo.png │ │ │ │ ├── simula_symbol.png │ │ │ │ ├── uio_footer.png │ │ │ │ └── uio_symbol.png │ │ │ ├── print │ │ │ │ ├── paper.css │ │ │ │ └── pdf.css │ │ │ ├── reveal.css │ │ │ ├── reveal.scss │ │ │ └── theme │ │ │ │ ├── README.md │ │ │ │ ├── beige.css │ │ │ │ ├── beigesmall.css │ │ │ │ ├── black.css │ │ │ │ ├── blood.css │ │ │ │ ├── cbc.css │ │ │ │ ├── darkgray.css │ │ │ │ ├── default.css │ │ │ │ ├── league.css │ │ │ │ ├── moon.css │ │ │ │ ├── night.css │ │ │ │ ├── serif.css │ │ │ │ ├── simple.css │ │ │ │ ├── simula.css │ │ │ │ ├── sky.css │ │ │ │ ├── solarized.css │ │ │ │ ├── source │ │ │ │ ├── beige.scss │ │ │ │ ├── beigesmall.scss │ │ │ │ ├── black.scss │ │ │ │ ├── blood.scss │ │ │ │ ├── cbc.scss │ │ │ │ ├── darkgray.scss │ │ │ │ ├── default.scss │ │ │ │ ├── league.scss │ │ │ │ ├── moon.scss │ │ │ │ ├── night.scss │ │ │ │ ├── serif.scss │ │ │ │ ├── simple.scss │ │ │ │ ├── simula.scss │ │ │ │ ├── sky.scss │ │ │ │ ├── solarized.scss │ │ │ │ └── white.scss │ │ │ │ ├── template │ │ │ │ ├── mixins.scss │ │ │ │ ├── settings.scss │ │ │ │ └── theme.scss │ │ │ │ └── white.css │ │ │ ├── index.html │ │ │ ├── js │ │ │ └── reveal.js │ │ │ ├── lib │ │ │ ├── css │ │ │ │ └── zenburn.css │ │ │ ├── font │ │ │ │ ├── league-gothic │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── league-gothic.css │ │ │ │ │ ├── league-gothic.eot │ │ │ │ │ ├── league-gothic.ttf │ │ │ │ │ └── league-gothic.woff │ │ │ │ └── source-sans-pro │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ │ └── source-sans-pro.css │ │ │ └── js │ │ │ │ ├── classList.js │ │ │ │ ├── head.min.js │ │ │ │ └── html5shiv.js │ │ │ ├── package.json │ │ │ ├── plugin │ │ │ ├── highlight │ │ │ │ └── highlight.js │ │ │ ├── leap │ │ │ │ └── leap.js │ │ │ ├── markdown │ │ │ │ ├── example.html │ │ │ │ ├── example.md │ │ │ │ ├── markdown.js │ │ │ │ └── marked.js │ │ │ ├── math │ │ │ │ └── math.js │ │ │ ├── multiplex │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── master.js │ │ │ ├── notes-server │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── notes.html │ │ │ ├── notes │ │ │ │ ├── notes.html │ │ │ │ └── notes.js │ │ │ ├── print-pdf │ │ │ │ └── print-pdf.js │ │ │ ├── remotes │ │ │ │ └── remotes.js │ │ │ ├── search │ │ │ │ └── search.js │ │ │ └── zoom-js │ │ │ │ └── zoom.js │ │ │ └── test │ │ │ ├── examples │ │ │ ├── assets │ │ │ │ ├── image1.png │ │ │ │ └── image2.png │ │ │ ├── barebones.html │ │ │ ├── embedded-media.html │ │ │ ├── math.html │ │ │ ├── slide-backgrounds.html │ │ │ └── slide-transitions.html │ │ │ ├── qunit-1.12.0.css │ │ │ ├── qunit-1.12.0.js │ │ │ ├── test-markdown-element-attributes.html │ │ │ ├── test-markdown-element-attributes.js │ │ │ ├── test-markdown-slide-attributes.html │ │ │ ├── test-markdown-slide-attributes.js │ │ │ ├── test-markdown.html │ │ │ ├── test-markdown.js │ │ │ ├── test-pdf.html │ │ │ ├── test-pdf.js │ │ │ ├── test.html │ │ │ └── test.js │ ├── ipynb │ │ ├── ipynb-lecture2-src.tar.gz │ │ └── lecture2.ipynb │ └── pdf │ │ └── lecture2.pdf ├── lecture3 │ ├── html │ │ ├── lecture3-bs.html │ │ ├── lecture3-reveal.html │ │ ├── lecture3-solarized.html │ │ ├── lecture3.html │ │ └── reveal.js │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ ├── images │ │ │ │ ├── cbc_footer.png │ │ │ │ ├── cbc_symbol.png │ │ │ │ ├── simula_footer.png │ │ │ │ ├── simula_logo.png │ │ │ │ ├── simula_symbol.png │ │ │ │ ├── uio_footer.png │ │ │ │ └── uio_symbol.png │ │ │ ├── print │ │ │ │ ├── paper.css │ │ │ │ └── pdf.css │ │ │ ├── reveal.css │ │ │ ├── reveal.scss │ │ │ └── theme │ │ │ │ ├── README.md │ │ │ │ ├── beige.css │ │ │ │ ├── beigesmall.css │ │ │ │ ├── black.css │ │ │ │ ├── blood.css │ │ │ │ ├── cbc.css │ │ │ │ ├── darkgray.css │ │ │ │ ├── default.css │ │ │ │ ├── league.css │ │ │ │ ├── moon.css │ │ │ │ ├── night.css │ │ │ │ ├── serif.css │ │ │ │ ├── simple.css │ │ │ │ ├── simula.css │ │ │ │ ├── sky.css │ │ │ │ ├── solarized.css │ │ │ │ ├── source │ │ │ │ ├── beige.scss │ │ │ │ ├── beigesmall.scss │ │ │ │ ├── black.scss │ │ │ │ ├── blood.scss │ │ │ │ ├── cbc.scss │ │ │ │ ├── darkgray.scss │ │ │ │ ├── default.scss │ │ │ │ ├── league.scss │ │ │ │ ├── moon.scss │ │ │ │ ├── night.scss │ │ │ │ ├── serif.scss │ │ │ │ ├── simple.scss │ │ │ │ ├── simula.scss │ │ │ │ ├── sky.scss │ │ │ │ ├── solarized.scss │ │ │ │ └── white.scss │ │ │ │ ├── template │ │ │ │ ├── mixins.scss │ │ │ │ ├── settings.scss │ │ │ │ └── theme.scss │ │ │ │ └── white.css │ │ │ ├── index.html │ │ │ ├── js │ │ │ └── reveal.js │ │ │ ├── lib │ │ │ ├── css │ │ │ │ └── zenburn.css │ │ │ ├── font │ │ │ │ ├── league-gothic │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── league-gothic.css │ │ │ │ │ ├── league-gothic.eot │ │ │ │ │ ├── league-gothic.ttf │ │ │ │ │ └── league-gothic.woff │ │ │ │ └── source-sans-pro │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ │ └── source-sans-pro.css │ │ │ └── js │ │ │ │ ├── classList.js │ │ │ │ ├── head.min.js │ │ │ │ └── html5shiv.js │ │ │ ├── package.json │ │ │ ├── plugin │ │ │ ├── highlight │ │ │ │ └── highlight.js │ │ │ ├── leap │ │ │ │ └── leap.js │ │ │ ├── markdown │ │ │ │ ├── example.html │ │ │ │ ├── example.md │ │ │ │ ├── markdown.js │ │ │ │ └── marked.js │ │ │ ├── math │ │ │ │ └── math.js │ │ │ ├── multiplex │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── master.js │ │ │ ├── notes-server │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── notes.html │ │ │ ├── notes │ │ │ │ ├── notes.html │ │ │ │ └── notes.js │ │ │ ├── print-pdf │ │ │ │ └── print-pdf.js │ │ │ ├── remotes │ │ │ │ └── remotes.js │ │ │ ├── search │ │ │ │ └── search.js │ │ │ └── zoom-js │ │ │ │ └── zoom.js │ │ │ └── test │ │ │ ├── examples │ │ │ ├── assets │ │ │ │ ├── image1.png │ │ │ │ └── image2.png │ │ │ ├── barebones.html │ │ │ ├── embedded-media.html │ │ │ ├── math.html │ │ │ ├── slide-backgrounds.html │ │ │ └── slide-transitions.html │ │ │ ├── qunit-1.12.0.css │ │ │ ├── qunit-1.12.0.js │ │ │ ├── test-markdown-element-attributes.html │ │ │ ├── test-markdown-element-attributes.js │ │ │ ├── test-markdown-slide-attributes.html │ │ │ ├── test-markdown-slide-attributes.js │ │ │ ├── test-markdown.html │ │ │ ├── test-markdown.js │ │ │ ├── test-pdf.html │ │ │ ├── test-pdf.js │ │ │ ├── test.html │ │ │ └── test.js │ ├── ipynb │ │ ├── ipynb-lecture3-src.tar.gz │ │ └── lecture3.ipynb │ └── pdf │ │ └── .DS_Store ├── lecture4 │ ├── html │ │ ├── lecture4-bs.html │ │ ├── lecture4-reveal.html │ │ ├── lecture4-solarized.html │ │ ├── lecture4.html │ │ └── reveal.js │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ ├── images │ │ │ │ ├── cbc_footer.png │ │ │ │ ├── cbc_symbol.png │ │ │ │ ├── simula_footer.png │ │ │ │ ├── simula_logo.png │ │ │ │ ├── simula_symbol.png │ │ │ │ ├── uio_footer.png │ │ │ │ └── uio_symbol.png │ │ │ ├── print │ │ │ │ ├── paper.css │ │ │ │ └── pdf.css │ │ │ ├── reveal.css │ │ │ ├── reveal.scss │ │ │ └── theme │ │ │ │ ├── README.md │ │ │ │ ├── beige.css │ │ │ │ ├── beigesmall.css │ │ │ │ ├── black.css │ │ │ │ ├── blood.css │ │ │ │ ├── cbc.css │ │ │ │ ├── darkgray.css │ │ │ │ ├── default.css │ │ │ │ ├── league.css │ │ │ │ ├── moon.css │ │ │ │ ├── night.css │ │ │ │ ├── serif.css │ │ │ │ ├── simple.css │ │ │ │ ├── simula.css │ │ │ │ ├── sky.css │ │ │ │ ├── solarized.css │ │ │ │ ├── source │ │ │ │ ├── beige.scss │ │ │ │ ├── beigesmall.scss │ │ │ │ ├── black.scss │ │ │ │ ├── blood.scss │ │ │ │ ├── cbc.scss │ │ │ │ ├── darkgray.scss │ │ │ │ ├── default.scss │ │ │ │ ├── league.scss │ │ │ │ ├── moon.scss │ │ │ │ ├── night.scss │ │ │ │ ├── serif.scss │ │ │ │ ├── simple.scss │ │ │ │ ├── simula.scss │ │ │ │ ├── sky.scss │ │ │ │ ├── solarized.scss │ │ │ │ └── white.scss │ │ │ │ ├── template │ │ │ │ ├── mixins.scss │ │ │ │ ├── settings.scss │ │ │ │ └── theme.scss │ │ │ │ └── white.css │ │ │ ├── index.html │ │ │ ├── js │ │ │ └── reveal.js │ │ │ ├── lib │ │ │ ├── css │ │ │ │ └── zenburn.css │ │ │ ├── font │ │ │ │ ├── league-gothic │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── league-gothic.css │ │ │ │ │ ├── league-gothic.eot │ │ │ │ │ ├── league-gothic.ttf │ │ │ │ │ └── league-gothic.woff │ │ │ │ └── source-sans-pro │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ │ └── source-sans-pro.css │ │ │ └── js │ │ │ │ ├── classList.js │ │ │ │ ├── head.min.js │ │ │ │ └── html5shiv.js │ │ │ ├── package.json │ │ │ ├── plugin │ │ │ ├── highlight │ │ │ │ └── highlight.js │ │ │ ├── leap │ │ │ │ └── leap.js │ │ │ ├── markdown │ │ │ │ ├── example.html │ │ │ │ ├── example.md │ │ │ │ ├── markdown.js │ │ │ │ └── marked.js │ │ │ ├── math │ │ │ │ └── math.js │ │ │ ├── multiplex │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── master.js │ │ │ ├── notes-server │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── notes.html │ │ │ ├── notes │ │ │ │ ├── notes.html │ │ │ │ └── notes.js │ │ │ ├── print-pdf │ │ │ │ └── print-pdf.js │ │ │ ├── remotes │ │ │ │ └── remotes.js │ │ │ ├── search │ │ │ │ └── search.js │ │ │ └── zoom-js │ │ │ │ └── zoom.js │ │ │ └── test │ │ │ ├── examples │ │ │ ├── assets │ │ │ │ ├── image1.png │ │ │ │ └── image2.png │ │ │ ├── barebones.html │ │ │ ├── embedded-media.html │ │ │ ├── math.html │ │ │ ├── slide-backgrounds.html │ │ │ └── slide-transitions.html │ │ │ ├── qunit-1.12.0.css │ │ │ ├── qunit-1.12.0.js │ │ │ ├── test-markdown-element-attributes.html │ │ │ ├── test-markdown-element-attributes.js │ │ │ ├── test-markdown-slide-attributes.html │ │ │ ├── test-markdown-slide-attributes.js │ │ │ ├── test-markdown.html │ │ │ ├── test-markdown.js │ │ │ ├── test-pdf.html │ │ │ ├── test-pdf.js │ │ │ ├── test.html │ │ │ └── test.js │ ├── ipynb │ │ ├── ipynb-lecture4-src.tar.gz │ │ └── lecture4.ipynb │ └── pdf │ │ └── lecture4.pdf ├── lecture5 │ ├── .DS_Store │ └── pdf │ │ ├── .DS_Store │ │ ├── Adiabatic Evolution and QAOA.pdf │ │ ├── Adiabatic Evolution and QAOA.pptx │ │ └── lecture5.pdf ├── lecture6 │ ├── .DS_Store │ └── pdf │ │ ├── .DS_Store │ │ ├── lecture6.pdf │ │ └── lecture6.pptx ├── lecture7 │ └── ipynb │ │ └── lecture7.ipynb ├── lecture8 │ ├── html │ │ ├── ._lecture8-bs000.html │ │ ├── ._lecture8-bs001.html │ │ ├── ._lecture8-bs002.html │ │ ├── ._lecture8-bs003.html │ │ ├── ._lecture8-bs004.html │ │ ├── ._lecture8-bs005.html │ │ ├── ._lecture8-bs006.html │ │ ├── ._lecture8-bs007.html │ │ ├── ._lecture8-bs008.html │ │ ├── ._lecture8-bs009.html │ │ ├── ._lecture8-bs010.html │ │ ├── ._lecture8-bs011.html │ │ ├── ._lecture8-bs012.html │ │ ├── ._lecture8-bs013.html │ │ ├── ._lecture8-bs014.html │ │ ├── ._lecture8-bs015.html │ │ ├── ._lecture8-bs016.html │ │ ├── ._lecture8-bs017.html │ │ ├── ._lecture8-bs018.html │ │ ├── ._lecture8-bs019.html │ │ ├── ._lecture8-bs020.html │ │ ├── ._lecture8-bs021.html │ │ ├── ._lecture8-bs022.html │ │ ├── ._lecture8-bs023.html │ │ ├── ._lecture8-bs024.html │ │ ├── ._lecture8-bs025.html │ │ ├── ._lecture8-bs026.html │ │ ├── ._lecture8-bs027.html │ │ ├── ._lecture8-bs028.html │ │ ├── ._lecture8-bs029.html │ │ ├── ._lecture8-bs030.html │ │ ├── ._lecture8-bs031.html │ │ ├── ._lecture8-bs032.html │ │ ├── ._lecture8-bs033.html │ │ ├── ._lecture8-bs034.html │ │ ├── ._lecture8-bs035.html │ │ ├── ._lecture8-bs036.html │ │ ├── ._lecture8-bs037.html │ │ ├── ._lecture8-bs038.html │ │ ├── ._lecture8-bs039.html │ │ ├── ._lecture8-bs040.html │ │ ├── ._lecture8-bs041.html │ │ ├── ._lecture8-bs042.html │ │ ├── ._lecture8-bs043.html │ │ ├── ._lecture8-bs044.html │ │ ├── ._lecture8-bs045.html │ │ ├── ._lecture8-bs046.html │ │ ├── ._lecture8-bs047.html │ │ ├── ._lecture8-bs048.html │ │ ├── ._lecture8-bs049.html │ │ ├── ._lecture8-bs050.html │ │ ├── ._lecture8-bs051.html │ │ ├── ._lecture8-bs052.html │ │ ├── ._lecture8-bs053.html │ │ ├── ._lecture8-bs054.html │ │ ├── ._lecture8-bs055.html │ │ ├── ._lecture8-bs056.html │ │ ├── ._lecture8-bs057.html │ │ ├── ._lecture8-bs058.html │ │ ├── ._lecture8-bs059.html │ │ ├── ._lecture8-bs060.html │ │ ├── ._lecture8-bs061.html │ │ ├── ._lecture8-bs062.html │ │ ├── ._lecture8-bs063.html │ │ ├── ._lecture8-bs064.html │ │ ├── ._lecture8-bs065.html │ │ ├── ._lecture8-bs066.html │ │ ├── ._lecture8-bs067.html │ │ ├── ._lecture8-bs068.html │ │ ├── ._lecture8-bs069.html │ │ ├── ._lecture8-bs070.html │ │ ├── ._lecture8-bs071.html │ │ ├── ._lecture8-bs072.html │ │ ├── ._lecture8-bs073.html │ │ ├── ._lecture8-bs074.html │ │ ├── figslides │ │ │ ├── Diagram-a.png │ │ │ ├── Diagram-fab.png │ │ │ ├── Diagram-fai.png │ │ │ ├── Diagram-fia.png │ │ │ ├── Diagram-fij.png │ │ │ ├── Diagram-i.png │ │ │ ├── Diagrams-CCD.png │ │ │ ├── Diagrams-CCSD1.png │ │ │ ├── Diagrams-CCSD2.png │ │ │ ├── Diagrams-E0.png │ │ │ ├── Diagrams-F.png │ │ │ ├── Diagrams-T.png │ │ │ ├── Diagrams-V1.png │ │ │ ├── Diagrams-V2.png │ │ │ ├── Diagrams-V3.png │ │ │ ├── Diagrams-symmetry.png │ │ │ ├── Explosion.png │ │ │ ├── V-Minn-kspace.png │ │ │ ├── V-Minnesota.png │ │ │ ├── fig-finite.png │ │ │ └── table-Minnesota.png │ │ ├── lecture8-bs.html │ │ ├── lecture8-reveal.html │ │ ├── lecture8-solarized.html │ │ ├── lecture8.html │ │ └── reveal.js │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ ├── images │ │ │ │ ├── cbc_footer.png │ │ │ │ ├── cbc_symbol.png │ │ │ │ ├── simula_footer.png │ │ │ │ ├── simula_logo.png │ │ │ │ ├── simula_symbol.png │ │ │ │ ├── uio_footer.png │ │ │ │ └── uio_symbol.png │ │ │ ├── print │ │ │ │ ├── paper.css │ │ │ │ └── pdf.css │ │ │ ├── reveal.css │ │ │ ├── reveal.scss │ │ │ └── theme │ │ │ │ ├── README.md │ │ │ │ ├── beige.css │ │ │ │ ├── beigesmall.css │ │ │ │ ├── black.css │ │ │ │ ├── blood.css │ │ │ │ ├── cbc.css │ │ │ │ ├── darkgray.css │ │ │ │ ├── default.css │ │ │ │ ├── league.css │ │ │ │ ├── moon.css │ │ │ │ ├── night.css │ │ │ │ ├── serif.css │ │ │ │ ├── simple.css │ │ │ │ ├── simula.css │ │ │ │ ├── sky.css │ │ │ │ ├── solarized.css │ │ │ │ ├── source │ │ │ │ ├── beige.scss │ │ │ │ ├── beigesmall.scss │ │ │ │ ├── black.scss │ │ │ │ ├── blood.scss │ │ │ │ ├── cbc.scss │ │ │ │ ├── darkgray.scss │ │ │ │ ├── default.scss │ │ │ │ ├── league.scss │ │ │ │ ├── moon.scss │ │ │ │ ├── night.scss │ │ │ │ ├── serif.scss │ │ │ │ ├── simple.scss │ │ │ │ ├── simula.scss │ │ │ │ ├── sky.scss │ │ │ │ ├── solarized.scss │ │ │ │ └── white.scss │ │ │ │ ├── template │ │ │ │ ├── mixins.scss │ │ │ │ ├── settings.scss │ │ │ │ └── theme.scss │ │ │ │ └── white.css │ │ │ ├── index.html │ │ │ ├── js │ │ │ └── reveal.js │ │ │ ├── lib │ │ │ ├── css │ │ │ │ └── zenburn.css │ │ │ ├── font │ │ │ │ ├── league-gothic │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── league-gothic.css │ │ │ │ │ ├── league-gothic.eot │ │ │ │ │ ├── league-gothic.ttf │ │ │ │ │ └── league-gothic.woff │ │ │ │ └── source-sans-pro │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ │ └── source-sans-pro.css │ │ │ └── js │ │ │ │ ├── classList.js │ │ │ │ ├── head.min.js │ │ │ │ └── html5shiv.js │ │ │ ├── package.json │ │ │ ├── plugin │ │ │ ├── highlight │ │ │ │ └── highlight.js │ │ │ ├── leap │ │ │ │ └── leap.js │ │ │ ├── markdown │ │ │ │ ├── example.html │ │ │ │ ├── example.md │ │ │ │ ├── markdown.js │ │ │ │ └── marked.js │ │ │ ├── math │ │ │ │ └── math.js │ │ │ ├── multiplex │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── master.js │ │ │ ├── notes-server │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── notes.html │ │ │ ├── notes │ │ │ │ ├── notes.html │ │ │ │ └── notes.js │ │ │ ├── print-pdf │ │ │ │ └── print-pdf.js │ │ │ ├── remotes │ │ │ │ └── remotes.js │ │ │ ├── search │ │ │ │ └── search.js │ │ │ └── zoom-js │ │ │ │ └── zoom.js │ │ │ └── test │ │ │ ├── examples │ │ │ ├── assets │ │ │ │ ├── image1.png │ │ │ │ └── image2.png │ │ │ ├── barebones.html │ │ │ ├── embedded-media.html │ │ │ ├── math.html │ │ │ ├── slide-backgrounds.html │ │ │ └── slide-transitions.html │ │ │ ├── qunit-1.12.0.css │ │ │ ├── qunit-1.12.0.js │ │ │ ├── test-markdown-element-attributes.html │ │ │ ├── test-markdown-element-attributes.js │ │ │ ├── test-markdown-slide-attributes.html │ │ │ ├── test-markdown-slide-attributes.js │ │ │ ├── test-markdown.html │ │ │ ├── test-markdown.js │ │ │ ├── test-pdf.html │ │ │ ├── test-pdf.js │ │ │ ├── test.html │ │ │ └── test.js │ ├── ipynb │ │ ├── figslides │ │ │ ├── Diagram-a.png │ │ │ ├── Diagram-fab.png │ │ │ ├── Diagram-fai.png │ │ │ ├── Diagram-fia.png │ │ │ ├── Diagram-fij.png │ │ │ ├── Diagram-i.png │ │ │ ├── Diagrams-CCD.png │ │ │ ├── Diagrams-CCSD1.png │ │ │ ├── Diagrams-CCSD2.png │ │ │ ├── Diagrams-E0.png │ │ │ ├── Diagrams-F.png │ │ │ ├── Diagrams-T.png │ │ │ ├── Diagrams-V1.png │ │ │ ├── Diagrams-V2.png │ │ │ ├── Diagrams-V3.png │ │ │ ├── Diagrams-symmetry.png │ │ │ ├── Explosion.png │ │ │ ├── V-Minn-kspace.png │ │ │ ├── V-Minnesota.png │ │ │ ├── fig-finite.png │ │ │ └── table-Minnesota.png │ │ ├── ipynb-lecture8-src.tar.gz │ │ └── lecture8.ipynb │ └── pdf │ │ ├── .DS_Store │ │ └── lecture8.pdf └── lecture9 │ ├── html │ ├── lecture9-bs.html │ ├── lecture9-reveal.html │ ├── lecture9-solarized.html │ ├── lecture9.html │ └── reveal.js │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── css │ │ ├── images │ │ │ ├── cbc_footer.png │ │ │ ├── cbc_symbol.png │ │ │ ├── simula_footer.png │ │ │ ├── simula_logo.png │ │ │ ├── simula_symbol.png │ │ │ ├── uio_footer.png │ │ │ └── uio_symbol.png │ │ ├── print │ │ │ ├── paper.css │ │ │ └── pdf.css │ │ ├── reveal.css │ │ ├── reveal.scss │ │ └── theme │ │ │ ├── README.md │ │ │ ├── beige.css │ │ │ ├── beigesmall.css │ │ │ ├── black.css │ │ │ ├── blood.css │ │ │ ├── cbc.css │ │ │ ├── darkgray.css │ │ │ ├── default.css │ │ │ ├── league.css │ │ │ ├── moon.css │ │ │ ├── night.css │ │ │ ├── serif.css │ │ │ ├── simple.css │ │ │ ├── simula.css │ │ │ ├── sky.css │ │ │ ├── solarized.css │ │ │ ├── source │ │ │ ├── beige.scss │ │ │ ├── beigesmall.scss │ │ │ ├── black.scss │ │ │ ├── blood.scss │ │ │ ├── cbc.scss │ │ │ ├── darkgray.scss │ │ │ ├── default.scss │ │ │ ├── league.scss │ │ │ ├── moon.scss │ │ │ ├── night.scss │ │ │ ├── serif.scss │ │ │ ├── simple.scss │ │ │ ├── simula.scss │ │ │ ├── sky.scss │ │ │ ├── solarized.scss │ │ │ └── white.scss │ │ │ ├── template │ │ │ ├── mixins.scss │ │ │ ├── settings.scss │ │ │ └── theme.scss │ │ │ └── white.css │ │ ├── index.html │ │ ├── js │ │ └── reveal.js │ │ ├── lib │ │ ├── css │ │ │ └── zenburn.css │ │ ├── font │ │ │ ├── league-gothic │ │ │ │ ├── LICENSE │ │ │ │ ├── league-gothic.css │ │ │ │ ├── league-gothic.eot │ │ │ │ ├── league-gothic.ttf │ │ │ │ └── league-gothic.woff │ │ │ └── source-sans-pro │ │ │ │ ├── LICENSE │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ └── source-sans-pro.css │ │ └── js │ │ │ ├── classList.js │ │ │ ├── head.min.js │ │ │ └── html5shiv.js │ │ ├── package.json │ │ ├── plugin │ │ ├── highlight │ │ │ └── highlight.js │ │ ├── leap │ │ │ └── leap.js │ │ ├── markdown │ │ │ ├── example.html │ │ │ ├── example.md │ │ │ ├── markdown.js │ │ │ └── marked.js │ │ ├── math │ │ │ └── math.js │ │ ├── multiplex │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ └── master.js │ │ ├── notes-server │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ └── notes.html │ │ ├── notes │ │ │ ├── notes.html │ │ │ └── notes.js │ │ ├── print-pdf │ │ │ └── print-pdf.js │ │ ├── remotes │ │ │ └── remotes.js │ │ ├── search │ │ │ └── search.js │ │ └── zoom-js │ │ │ └── zoom.js │ │ └── test │ │ ├── examples │ │ ├── assets │ │ │ ├── image1.png │ │ │ └── image2.png │ │ ├── barebones.html │ │ ├── embedded-media.html │ │ ├── math.html │ │ ├── slide-backgrounds.html │ │ └── slide-transitions.html │ │ ├── qunit-1.12.0.css │ │ ├── qunit-1.12.0.js │ │ ├── test-markdown-element-attributes.html │ │ ├── test-markdown-element-attributes.js │ │ ├── test-markdown-slide-attributes.html │ │ ├── test-markdown-slide-attributes.js │ │ ├── test-markdown.html │ │ ├── test-markdown.js │ │ ├── test-pdf.html │ │ ├── test-pdf.js │ │ ├── test.html │ │ └── test.js │ └── ipynb │ ├── .ipynb_checkpoints │ └── lecture9-checkpoint.ipynb │ ├── lecture9.ipynb │ ├── pairing_pic.jpg │ └── swap_network.jpg ├── src ├── intro │ ├── clean.sh │ ├── intro.do.txt │ └── make.sh ├── lecture1 │ ├── clean.sh │ ├── lecture1.do.txt │ └── make.sh ├── lecture10 │ ├── clean.sh │ └── make.sh ├── lecture11 │ ├── clean.sh │ └── make.sh ├── lecture12 │ ├── clean.sh │ └── make.sh ├── lecture2 │ ├── clean.sh │ ├── lecture2.do.txt │ └── make.sh ├── lecture3 │ ├── clean.sh │ ├── lecture3.do.txt │ └── make.sh ├── lecture4 │ ├── clean.sh │ ├── lecture4.do.txt │ └── make.sh ├── lecture5 │ ├── clean.sh │ ├── lecture5.do.txt │ └── make.sh ├── lecture6 │ ├── clean.sh │ └── make.sh ├── lecture7 │ ├── clean.sh │ └── make.sh ├── lecture8 │ ├── .dlog │ ├── clean.sh │ ├── figslides │ │ ├── Diagram-a.png │ │ ├── Diagram-fab.png │ │ ├── Diagram-fai.png │ │ ├── Diagram-fia.png │ │ ├── Diagram-fij.png │ │ ├── Diagram-i.png │ │ ├── Diagrams-CCD.png │ │ ├── Diagrams-CCSD1.png │ │ ├── Diagrams-CCSD2.png │ │ ├── Diagrams-E0.png │ │ ├── Diagrams-F.png │ │ ├── Diagrams-T.png │ │ ├── Diagrams-V1.png │ │ ├── Diagrams-V2.png │ │ ├── Diagrams-V3.png │ │ ├── Diagrams-symmetry.png │ │ ├── Explosion.png │ │ ├── V-Minn-kspace.png │ │ ├── V-Minnesota.png │ │ ├── fig-finite.png │ │ └── table-Minnesota.png │ ├── lecture8.do.txt │ └── make.sh └── lecture9 │ ├── add.txt │ ├── clean.sh │ ├── lecture9.do.txt │ └── make.sh └── web ├── course.dlog ├── course.do.txt ├── course.do.txt~ ├── course.html └── tmp_mako__course.do.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/.DS_Store -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-modernist -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .svn 3 | log/*.log 4 | tmp/** 5 | node_modules/ 6 | .sass-cache 7 | css/reveal.min.css 8 | js/reveal.min.js 9 | -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | before_script: 5 | - npm install -g grunt-cli -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (C) 2015 Hakim El Hattab, http://hakim.se 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reveal.js", 3 | "version": "3.1.0", 4 | "main": [ 5 | "js/reveal.js", 6 | "css/reveal.css" 7 | ], 8 | "homepage": "http://lab.hakim.se/reveal-js/", 9 | "license": "MIT", 10 | "description": "The HTML Presentation Framework", 11 | "authors": [ 12 | "Hakim El Hattab " 13 | ], 14 | "dependencies": { 15 | "headjs": "~0.9.6" 16 | }, 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/hakimel/reveal.js.git" 20 | }, 21 | "ignore": [ 22 | "**/.*", 23 | "node_modules", 24 | "bower_components", 25 | "test" 26 | ] 27 | } -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/css/images/cbc_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/css/images/cbc_footer.png -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/css/images/cbc_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/css/images/cbc_symbol.png -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/css/images/simula_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/css/images/simula_footer.png -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/css/images/simula_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/css/images/simula_logo.png -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/css/images/simula_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/css/images/simula_symbol.png -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/css/images/uio_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/css/images/uio_footer.png -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/css/images/uio_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/css/images/uio_symbol.png -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/css/theme/source/night.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Black theme for reveal.js. 3 | * 4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 5 | */ 6 | 7 | 8 | // Default mixins and settings ----------------- 9 | @import "../template/mixins"; 10 | @import "../template/settings"; 11 | // --------------------------------------------- 12 | 13 | 14 | // Include theme-specific fonts 15 | @import url(https://fonts.googleapis.com/css?family=Montserrat:700); 16 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); 17 | 18 | 19 | // Override theme settings (see ../template/settings.scss) 20 | $backgroundColor: #111; 21 | 22 | $mainFont: 'Open Sans', sans-serif; 23 | $linkColor: #e7ad52; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | $headingFont: 'Montserrat', Impact, sans-serif; 26 | $headingTextShadow: none; 27 | $headingLetterSpacing: -0.03em; 28 | $headingTextTransform: none; 29 | $selectionBackgroundColor: #e7ad52; 30 | $mainFontSize: 30px; 31 | 32 | 33 | // Theme template ------------------------------ 34 | @import "../template/theme"; 35 | // --------------------------------------------- -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/css/theme/template/settings.scss: -------------------------------------------------------------------------------- 1 | // Base settings for all themes that can optionally be 2 | // overridden by the super-theme 3 | 4 | // Background of the presentation 5 | $backgroundColor: #2b2b2b; 6 | 7 | // Primary/body text 8 | $mainFont: 'Lato', sans-serif; 9 | $mainFontSize: 30px; /* changed (by hpl) from 36px; */ 10 | $mainColor: #eee; 11 | 12 | // Headings 13 | $headingMargin: 0 0 20px 0; 14 | $headingFont: 'League Gothic', Impact, sans-serif; 15 | $headingColor: #eee; 16 | $headingLineHeight: 0.9em; 17 | $headingLetterSpacing: 0.02em; 18 | $headingTextTransform: none; /* changed (by hpl) from uppercase; */ 19 | $headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2); 20 | $heading1TextShadow: $headingTextShadow; 21 | 22 | // Links and actions 23 | $linkColor: #13DAEC; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | 26 | // Text selection 27 | $selectionBackgroundColor: #FF5E99; 28 | $selectionColor: #fff; 29 | 30 | // Generates the presentation background, can be overridden 31 | // to return a background image or gradient 32 | @mixin bodyBackground() { 33 | background: $backgroundColor; 34 | } -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league-gothic.eot'); 4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('league-gothic.woff') format('woff'), 6 | url('league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/plugin/markdown/example.md: -------------------------------------------------------------------------------- 1 | # Markdown Demo 2 | 3 | 4 | 5 | ## External 1.1 6 | 7 | Content 1.1 8 | 9 | Note: This will only appear in the speaker notes window. 10 | 11 | 12 | ## External 1.2 13 | 14 | Content 1.2 15 | 16 | 17 | 18 | ## External 2 19 | 20 | Content 2.1 21 | 22 | 23 | 24 | ## External 3.1 25 | 26 | Content 3.1 27 | 28 | 29 | ## External 3.2 30 | 31 | Content 3.2 32 | -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/plugin/multiplex/client.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | var multiplex = Reveal.getConfig().multiplex; 3 | var socketId = multiplex.id; 4 | var socket = io.connect(multiplex.url); 5 | 6 | socket.on(multiplex.id, function(data) { 7 | // ignore data from sockets that aren't ours 8 | if (data.socketId !== socketId) { return; } 9 | if( window.location.host === 'localhost:1947' ) return; 10 | 11 | Reveal.slide(data.indexh, data.indexv, data.indexf, 'remote'); 12 | }); 13 | }()); 14 | -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/test/examples/assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/test/examples/assets/image1.png -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/test/examples/assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/html/reveal.js/test/examples/assets/image2.png -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/test/examples/barebones.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | reveal.js - Barebones 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 |
17 | 18 |
19 |

Barebones Presentation

20 |

This example contains the bare minimum includes and markup required to run a reveal.js presentation.

21 |
22 | 23 |
24 |

No Theme

25 |

There's no theme included, so it will fall back on browser defaults.

26 |
27 | 28 |
29 | 30 |
31 | 32 | 33 | 34 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/test/examples/embedded-media.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | reveal.js - Embedded Media 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 |
20 | 21 |
22 |

Embedded Media Test

23 |
24 | 25 |
26 | 27 |
28 | 29 |
30 |

Empty Slide

31 |
32 | 33 |
34 | 35 |
36 | 37 | 38 | 39 | 40 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /doc/pub/Afternoon1/html/reveal.js/test/test-pdf.js: -------------------------------------------------------------------------------- 1 | 2 | Reveal.addEventListener( 'ready', function() { 3 | 4 | // Only one test for now, we're mainly ensuring that there 5 | // are no execution errors when running PDF mode 6 | 7 | test( 'Reveal.isReady', function() { 8 | strictEqual( Reveal.isReady(), true, 'returns true' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize({ pdf: true }); 15 | 16 | -------------------------------------------------------------------------------- /doc/pub/Afternoon1/ipynb/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/ipynb/.DS_Store -------------------------------------------------------------------------------- /doc/pub/Afternoon1/pdf/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Afternoon1/pdf/.DS_Store -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .svn 3 | log/*.log 4 | tmp/** 5 | node_modules/ 6 | .sass-cache 7 | css/reveal.min.css 8 | js/reveal.min.js 9 | -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | before_script: 5 | - npm install -g grunt-cli -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (C) 2015 Hakim El Hattab, http://hakim.se 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reveal.js", 3 | "version": "3.1.0", 4 | "main": [ 5 | "js/reveal.js", 6 | "css/reveal.css" 7 | ], 8 | "homepage": "http://lab.hakim.se/reveal-js/", 9 | "license": "MIT", 10 | "description": "The HTML Presentation Framework", 11 | "authors": [ 12 | "Hakim El Hattab " 13 | ], 14 | "dependencies": { 15 | "headjs": "~0.9.6" 16 | }, 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/hakimel/reveal.js.git" 20 | }, 21 | "ignore": [ 22 | "**/.*", 23 | "node_modules", 24 | "bower_components", 25 | "test" 26 | ] 27 | } -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/css/images/cbc_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/css/images/cbc_footer.png -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/css/images/cbc_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/css/images/cbc_symbol.png -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/css/images/simula_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/css/images/simula_footer.png -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/css/images/simula_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/css/images/simula_logo.png -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/css/images/simula_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/css/images/simula_symbol.png -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/css/images/uio_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/css/images/uio_footer.png -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/css/images/uio_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/css/images/uio_symbol.png -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/css/theme/source/night.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Black theme for reveal.js. 3 | * 4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 5 | */ 6 | 7 | 8 | // Default mixins and settings ----------------- 9 | @import "../template/mixins"; 10 | @import "../template/settings"; 11 | // --------------------------------------------- 12 | 13 | 14 | // Include theme-specific fonts 15 | @import url(https://fonts.googleapis.com/css?family=Montserrat:700); 16 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); 17 | 18 | 19 | // Override theme settings (see ../template/settings.scss) 20 | $backgroundColor: #111; 21 | 22 | $mainFont: 'Open Sans', sans-serif; 23 | $linkColor: #e7ad52; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | $headingFont: 'Montserrat', Impact, sans-serif; 26 | $headingTextShadow: none; 27 | $headingLetterSpacing: -0.03em; 28 | $headingTextTransform: none; 29 | $selectionBackgroundColor: #e7ad52; 30 | $mainFontSize: 30px; 31 | 32 | 33 | // Theme template ------------------------------ 34 | @import "../template/theme"; 35 | // --------------------------------------------- -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/css/theme/template/settings.scss: -------------------------------------------------------------------------------- 1 | // Base settings for all themes that can optionally be 2 | // overridden by the super-theme 3 | 4 | // Background of the presentation 5 | $backgroundColor: #2b2b2b; 6 | 7 | // Primary/body text 8 | $mainFont: 'Lato', sans-serif; 9 | $mainFontSize: 30px; /* changed (by hpl) from 36px; */ 10 | $mainColor: #eee; 11 | 12 | // Headings 13 | $headingMargin: 0 0 20px 0; 14 | $headingFont: 'League Gothic', Impact, sans-serif; 15 | $headingColor: #eee; 16 | $headingLineHeight: 0.9em; 17 | $headingLetterSpacing: 0.02em; 18 | $headingTextTransform: none; /* changed (by hpl) from uppercase; */ 19 | $headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2); 20 | $heading1TextShadow: $headingTextShadow; 21 | 22 | // Links and actions 23 | $linkColor: #13DAEC; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | 26 | // Text selection 27 | $selectionBackgroundColor: #FF5E99; 28 | $selectionColor: #fff; 29 | 30 | // Generates the presentation background, can be overridden 31 | // to return a background image or gradient 32 | @mixin bodyBackground() { 33 | background: $backgroundColor; 34 | } -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league-gothic.eot'); 4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('league-gothic.woff') format('woff'), 6 | url('league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/plugin/markdown/example.md: -------------------------------------------------------------------------------- 1 | # Markdown Demo 2 | 3 | 4 | 5 | ## External 1.1 6 | 7 | Content 1.1 8 | 9 | Note: This will only appear in the speaker notes window. 10 | 11 | 12 | ## External 1.2 13 | 14 | Content 1.2 15 | 16 | 17 | 18 | ## External 2 19 | 20 | Content 2.1 21 | 22 | 23 | 24 | ## External 3.1 25 | 26 | Content 3.1 27 | 28 | 29 | ## External 3.2 30 | 31 | Content 3.2 32 | -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/plugin/multiplex/client.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | var multiplex = Reveal.getConfig().multiplex; 3 | var socketId = multiplex.id; 4 | var socket = io.connect(multiplex.url); 5 | 6 | socket.on(multiplex.id, function(data) { 7 | // ignore data from sockets that aren't ours 8 | if (data.socketId !== socketId) { return; } 9 | if( window.location.host === 'localhost:1947' ) return; 10 | 11 | Reveal.slide(data.indexh, data.indexv, data.indexf, 'remote'); 12 | }); 13 | }()); 14 | -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/test/examples/assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/test/examples/assets/image1.png -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/test/examples/assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/html/reveal.js/test/examples/assets/image2.png -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/test/examples/barebones.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | reveal.js - Barebones 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 |
17 | 18 |
19 |

Barebones Presentation

20 |

This example contains the bare minimum includes and markup required to run a reveal.js presentation.

21 |
22 | 23 |
24 |

No Theme

25 |

There's no theme included, so it will fall back on browser defaults.

26 |
27 | 28 |
29 | 30 |
31 | 32 | 33 | 34 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/test/examples/embedded-media.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | reveal.js - Embedded Media 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 |
20 | 21 |
22 |

Embedded Media Test

23 |
24 | 25 |
26 | 27 |
28 | 29 |
30 |

Empty Slide

31 |
32 | 33 |
34 | 35 |
36 | 37 | 38 | 39 | 40 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /doc/pub/Morning1/html/reveal.js/test/test-pdf.js: -------------------------------------------------------------------------------- 1 | 2 | Reveal.addEventListener( 'ready', function() { 3 | 4 | // Only one test for now, we're mainly ensuring that there 5 | // are no execution errors when running PDF mode 6 | 7 | test( 'Reveal.isReady', function() { 8 | strictEqual( Reveal.isReady(), true, 'returns true' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize({ pdf: true }); 15 | 16 | -------------------------------------------------------------------------------- /doc/pub/Morning1/pdf/Morning1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/Morning1/pdf/Morning1.pdf -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .svn 3 | log/*.log 4 | tmp/** 5 | node_modules/ 6 | .sass-cache 7 | css/reveal.min.css 8 | js/reveal.min.js 9 | -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | before_script: 5 | - npm install -g grunt-cli -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (C) 2015 Hakim El Hattab, http://hakim.se 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reveal.js", 3 | "version": "3.1.0", 4 | "main": [ 5 | "js/reveal.js", 6 | "css/reveal.css" 7 | ], 8 | "homepage": "http://lab.hakim.se/reveal-js/", 9 | "license": "MIT", 10 | "description": "The HTML Presentation Framework", 11 | "authors": [ 12 | "Hakim El Hattab " 13 | ], 14 | "dependencies": { 15 | "headjs": "~0.9.6" 16 | }, 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/hakimel/reveal.js.git" 20 | }, 21 | "ignore": [ 22 | "**/.*", 23 | "node_modules", 24 | "bower_components", 25 | "test" 26 | ] 27 | } -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/css/images/cbc_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/css/images/cbc_footer.png -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/css/images/cbc_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/css/images/cbc_symbol.png -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/css/images/simula_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/css/images/simula_footer.png -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/css/images/simula_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/css/images/simula_logo.png -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/css/images/simula_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/css/images/simula_symbol.png -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/css/images/uio_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/css/images/uio_footer.png -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/css/images/uio_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/css/images/uio_symbol.png -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/css/theme/source/night.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Black theme for reveal.js. 3 | * 4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 5 | */ 6 | 7 | 8 | // Default mixins and settings ----------------- 9 | @import "../template/mixins"; 10 | @import "../template/settings"; 11 | // --------------------------------------------- 12 | 13 | 14 | // Include theme-specific fonts 15 | @import url(https://fonts.googleapis.com/css?family=Montserrat:700); 16 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); 17 | 18 | 19 | // Override theme settings (see ../template/settings.scss) 20 | $backgroundColor: #111; 21 | 22 | $mainFont: 'Open Sans', sans-serif; 23 | $linkColor: #e7ad52; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | $headingFont: 'Montserrat', Impact, sans-serif; 26 | $headingTextShadow: none; 27 | $headingLetterSpacing: -0.03em; 28 | $headingTextTransform: none; 29 | $selectionBackgroundColor: #e7ad52; 30 | $mainFontSize: 30px; 31 | 32 | 33 | // Theme template ------------------------------ 34 | @import "../template/theme"; 35 | // --------------------------------------------- -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/css/theme/template/settings.scss: -------------------------------------------------------------------------------- 1 | // Base settings for all themes that can optionally be 2 | // overridden by the super-theme 3 | 4 | // Background of the presentation 5 | $backgroundColor: #2b2b2b; 6 | 7 | // Primary/body text 8 | $mainFont: 'Lato', sans-serif; 9 | $mainFontSize: 30px; /* changed (by hpl) from 36px; */ 10 | $mainColor: #eee; 11 | 12 | // Headings 13 | $headingMargin: 0 0 20px 0; 14 | $headingFont: 'League Gothic', Impact, sans-serif; 15 | $headingColor: #eee; 16 | $headingLineHeight: 0.9em; 17 | $headingLetterSpacing: 0.02em; 18 | $headingTextTransform: none; /* changed (by hpl) from uppercase; */ 19 | $headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2); 20 | $heading1TextShadow: $headingTextShadow; 21 | 22 | // Links and actions 23 | $linkColor: #13DAEC; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | 26 | // Text selection 27 | $selectionBackgroundColor: #FF5E99; 28 | $selectionColor: #fff; 29 | 30 | // Generates the presentation background, can be overridden 31 | // to return a background image or gradient 32 | @mixin bodyBackground() { 33 | background: $backgroundColor; 34 | } -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league-gothic.eot'); 4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('league-gothic.woff') format('woff'), 6 | url('league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/plugin/markdown/example.md: -------------------------------------------------------------------------------- 1 | # Markdown Demo 2 | 3 | 4 | 5 | ## External 1.1 6 | 7 | Content 1.1 8 | 9 | Note: This will only appear in the speaker notes window. 10 | 11 | 12 | ## External 1.2 13 | 14 | Content 1.2 15 | 16 | 17 | 18 | ## External 2 19 | 20 | Content 2.1 21 | 22 | 23 | 24 | ## External 3.1 25 | 26 | Content 3.1 27 | 28 | 29 | ## External 3.2 30 | 31 | Content 3.2 32 | -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/plugin/multiplex/client.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | var multiplex = Reveal.getConfig().multiplex; 3 | var socketId = multiplex.id; 4 | var socket = io.connect(multiplex.url); 5 | 6 | socket.on(multiplex.id, function(data) { 7 | // ignore data from sockets that aren't ours 8 | if (data.socketId !== socketId) { return; } 9 | if( window.location.host === 'localhost:1947' ) return; 10 | 11 | Reveal.slide(data.indexh, data.indexv, data.indexf, 'remote'); 12 | }); 13 | }()); 14 | -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/test/examples/assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/test/examples/assets/image1.png -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/test/examples/assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/html/reveal.js/test/examples/assets/image2.png -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/test/examples/barebones.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | reveal.js - Barebones 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 |
17 | 18 |
19 |

Barebones Presentation

20 |

This example contains the bare minimum includes and markup required to run a reveal.js presentation.

21 |
22 | 23 |
24 |

No Theme

25 |

There's no theme included, so it will fall back on browser defaults.

26 |
27 | 28 |
29 | 30 |
31 | 32 | 33 | 34 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/test/examples/embedded-media.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | reveal.js - Embedded Media 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 |
20 | 21 |
22 |

Embedded Media Test

23 |
24 | 25 |
26 | 27 |
28 | 29 |
30 |

Empty Slide

31 |
32 | 33 |
34 | 35 |
36 | 37 | 38 | 39 | 40 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /doc/pub/intro/html/reveal.js/test/test-pdf.js: -------------------------------------------------------------------------------- 1 | 2 | Reveal.addEventListener( 'ready', function() { 3 | 4 | // Only one test for now, we're mainly ensuring that there 5 | // are no execution errors when running PDF mode 6 | 7 | test( 'Reveal.isReady', function() { 8 | strictEqual( Reveal.isReady(), true, 'returns true' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize({ pdf: true }); 15 | 16 | -------------------------------------------------------------------------------- /doc/pub/intro/ipynb/ipynb-intro-src.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/ipynb/ipynb-intro-src.tar.gz -------------------------------------------------------------------------------- /doc/pub/intro/pdf/intro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/intro/pdf/intro.pdf -------------------------------------------------------------------------------- /doc/pub/lecture1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/.DS_Store -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .svn 3 | log/*.log 4 | tmp/** 5 | node_modules/ 6 | .sass-cache 7 | css/reveal.min.css 8 | js/reveal.min.js 9 | -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | before_script: 5 | - npm install -g grunt-cli -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (C) 2015 Hakim El Hattab, http://hakim.se 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reveal.js", 3 | "version": "3.1.0", 4 | "main": [ 5 | "js/reveal.js", 6 | "css/reveal.css" 7 | ], 8 | "homepage": "http://lab.hakim.se/reveal-js/", 9 | "license": "MIT", 10 | "description": "The HTML Presentation Framework", 11 | "authors": [ 12 | "Hakim El Hattab " 13 | ], 14 | "dependencies": { 15 | "headjs": "~0.9.6" 16 | }, 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/hakimel/reveal.js.git" 20 | }, 21 | "ignore": [ 22 | "**/.*", 23 | "node_modules", 24 | "bower_components", 25 | "test" 26 | ] 27 | } -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/css/images/cbc_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/css/images/cbc_footer.png -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/css/images/cbc_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/css/images/cbc_symbol.png -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/css/images/simula_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/css/images/simula_footer.png -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/css/images/simula_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/css/images/simula_logo.png -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/css/images/simula_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/css/images/simula_symbol.png -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/css/images/uio_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/css/images/uio_footer.png -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/css/images/uio_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/css/images/uio_symbol.png -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/css/theme/source/night.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Black theme for reveal.js. 3 | * 4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 5 | */ 6 | 7 | 8 | // Default mixins and settings ----------------- 9 | @import "../template/mixins"; 10 | @import "../template/settings"; 11 | // --------------------------------------------- 12 | 13 | 14 | // Include theme-specific fonts 15 | @import url(https://fonts.googleapis.com/css?family=Montserrat:700); 16 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); 17 | 18 | 19 | // Override theme settings (see ../template/settings.scss) 20 | $backgroundColor: #111; 21 | 22 | $mainFont: 'Open Sans', sans-serif; 23 | $linkColor: #e7ad52; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | $headingFont: 'Montserrat', Impact, sans-serif; 26 | $headingTextShadow: none; 27 | $headingLetterSpacing: -0.03em; 28 | $headingTextTransform: none; 29 | $selectionBackgroundColor: #e7ad52; 30 | $mainFontSize: 30px; 31 | 32 | 33 | // Theme template ------------------------------ 34 | @import "../template/theme"; 35 | // --------------------------------------------- -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/css/theme/template/settings.scss: -------------------------------------------------------------------------------- 1 | // Base settings for all themes that can optionally be 2 | // overridden by the super-theme 3 | 4 | // Background of the presentation 5 | $backgroundColor: #2b2b2b; 6 | 7 | // Primary/body text 8 | $mainFont: 'Lato', sans-serif; 9 | $mainFontSize: 30px; /* changed (by hpl) from 36px; */ 10 | $mainColor: #eee; 11 | 12 | // Headings 13 | $headingMargin: 0 0 20px 0; 14 | $headingFont: 'League Gothic', Impact, sans-serif; 15 | $headingColor: #eee; 16 | $headingLineHeight: 0.9em; 17 | $headingLetterSpacing: 0.02em; 18 | $headingTextTransform: none; /* changed (by hpl) from uppercase; */ 19 | $headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2); 20 | $heading1TextShadow: $headingTextShadow; 21 | 22 | // Links and actions 23 | $linkColor: #13DAEC; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | 26 | // Text selection 27 | $selectionBackgroundColor: #FF5E99; 28 | $selectionColor: #fff; 29 | 30 | // Generates the presentation background, can be overridden 31 | // to return a background image or gradient 32 | @mixin bodyBackground() { 33 | background: $backgroundColor; 34 | } -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league-gothic.eot'); 4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('league-gothic.woff') format('woff'), 6 | url('league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/plugin/markdown/example.md: -------------------------------------------------------------------------------- 1 | # Markdown Demo 2 | 3 | 4 | 5 | ## External 1.1 6 | 7 | Content 1.1 8 | 9 | Note: This will only appear in the speaker notes window. 10 | 11 | 12 | ## External 1.2 13 | 14 | Content 1.2 15 | 16 | 17 | 18 | ## External 2 19 | 20 | Content 2.1 21 | 22 | 23 | 24 | ## External 3.1 25 | 26 | Content 3.1 27 | 28 | 29 | ## External 3.2 30 | 31 | Content 3.2 32 | -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/plugin/multiplex/client.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | var multiplex = Reveal.getConfig().multiplex; 3 | var socketId = multiplex.id; 4 | var socket = io.connect(multiplex.url); 5 | 6 | socket.on(multiplex.id, function(data) { 7 | // ignore data from sockets that aren't ours 8 | if (data.socketId !== socketId) { return; } 9 | if( window.location.host === 'localhost:1947' ) return; 10 | 11 | Reveal.slide(data.indexh, data.indexv, data.indexf, 'remote'); 12 | }); 13 | }()); 14 | -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/test/examples/assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/test/examples/assets/image1.png -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/test/examples/assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/html/reveal.js/test/examples/assets/image2.png -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/test/examples/barebones.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | reveal.js - Barebones 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 |
17 | 18 |
19 |

Barebones Presentation

20 |

This example contains the bare minimum includes and markup required to run a reveal.js presentation.

21 |
22 | 23 |
24 |

No Theme

25 |

There's no theme included, so it will fall back on browser defaults.

26 |
27 | 28 |
29 | 30 |
31 | 32 | 33 | 34 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/test/examples/embedded-media.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | reveal.js - Embedded Media 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 |
20 | 21 |
22 |

Embedded Media Test

23 |
24 | 25 |
26 | 27 |
28 | 29 |
30 |

Empty Slide

31 |
32 | 33 |
34 | 35 |
36 | 37 | 38 | 39 | 40 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /doc/pub/lecture1/html/reveal.js/test/test-pdf.js: -------------------------------------------------------------------------------- 1 | 2 | Reveal.addEventListener( 'ready', function() { 3 | 4 | // Only one test for now, we're mainly ensuring that there 5 | // are no execution errors when running PDF mode 6 | 7 | test( 'Reveal.isReady', function() { 8 | strictEqual( Reveal.isReady(), true, 'returns true' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize({ pdf: true }); 15 | 16 | -------------------------------------------------------------------------------- /doc/pub/lecture1/ipynb/ipynb-lecture1-src.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/ipynb/ipynb-lecture1-src.tar.gz -------------------------------------------------------------------------------- /doc/pub/lecture1/ipynb/lecture1.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "id": "0648c160", 6 | "metadata": { 7 | "editable": true 8 | }, 9 | "source": [ 10 | "\n", 12 | "" 13 | ] 14 | }, 15 | { 16 | "cell_type": "markdown", 17 | "id": "31bb33d4", 18 | "metadata": { 19 | "editable": true 20 | }, 21 | "source": [ 22 | "# Introduction to quantum computing, qubits and systems of qubits\n", 23 | "**Facility for Rare Isotope Beams, Michigan State University, USA**\n", 24 | "\n", 25 | "Date: **June 20**" 26 | ] 27 | }, 28 | { 29 | "cell_type": "markdown", 30 | "id": "108be3e2", 31 | "metadata": { 32 | "editable": true 33 | }, 34 | "source": [ 35 | "## Introduction" 36 | ] 37 | } 38 | ], 39 | "metadata": {}, 40 | "nbformat": 4, 41 | "nbformat_minor": 5 42 | } 43 | -------------------------------------------------------------------------------- /doc/pub/lecture1/pdf/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/pdf/.DS_Store -------------------------------------------------------------------------------- /doc/pub/lecture1/pdf/lecture1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture1/pdf/lecture1.pdf -------------------------------------------------------------------------------- /doc/pub/lecture10/pdf/lecture10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture10/pdf/lecture10.pdf -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .svn 3 | log/*.log 4 | tmp/** 5 | node_modules/ 6 | .sass-cache 7 | css/reveal.min.css 8 | js/reveal.min.js 9 | -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | before_script: 5 | - npm install -g grunt-cli -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (C) 2015 Hakim El Hattab, http://hakim.se 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reveal.js", 3 | "version": "3.1.0", 4 | "main": [ 5 | "js/reveal.js", 6 | "css/reveal.css" 7 | ], 8 | "homepage": "http://lab.hakim.se/reveal-js/", 9 | "license": "MIT", 10 | "description": "The HTML Presentation Framework", 11 | "authors": [ 12 | "Hakim El Hattab " 13 | ], 14 | "dependencies": { 15 | "headjs": "~0.9.6" 16 | }, 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/hakimel/reveal.js.git" 20 | }, 21 | "ignore": [ 22 | "**/.*", 23 | "node_modules", 24 | "bower_components", 25 | "test" 26 | ] 27 | } -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/css/images/cbc_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/css/images/cbc_footer.png -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/css/images/cbc_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/css/images/cbc_symbol.png -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/css/images/simula_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/css/images/simula_footer.png -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/css/images/simula_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/css/images/simula_logo.png -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/css/images/simula_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/css/images/simula_symbol.png -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/css/images/uio_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/css/images/uio_footer.png -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/css/images/uio_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/css/images/uio_symbol.png -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/css/theme/source/night.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Black theme for reveal.js. 3 | * 4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 5 | */ 6 | 7 | 8 | // Default mixins and settings ----------------- 9 | @import "../template/mixins"; 10 | @import "../template/settings"; 11 | // --------------------------------------------- 12 | 13 | 14 | // Include theme-specific fonts 15 | @import url(https://fonts.googleapis.com/css?family=Montserrat:700); 16 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); 17 | 18 | 19 | // Override theme settings (see ../template/settings.scss) 20 | $backgroundColor: #111; 21 | 22 | $mainFont: 'Open Sans', sans-serif; 23 | $linkColor: #e7ad52; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | $headingFont: 'Montserrat', Impact, sans-serif; 26 | $headingTextShadow: none; 27 | $headingLetterSpacing: -0.03em; 28 | $headingTextTransform: none; 29 | $selectionBackgroundColor: #e7ad52; 30 | $mainFontSize: 30px; 31 | 32 | 33 | // Theme template ------------------------------ 34 | @import "../template/theme"; 35 | // --------------------------------------------- -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/css/theme/template/settings.scss: -------------------------------------------------------------------------------- 1 | // Base settings for all themes that can optionally be 2 | // overridden by the super-theme 3 | 4 | // Background of the presentation 5 | $backgroundColor: #2b2b2b; 6 | 7 | // Primary/body text 8 | $mainFont: 'Lato', sans-serif; 9 | $mainFontSize: 30px; /* changed (by hpl) from 36px; */ 10 | $mainColor: #eee; 11 | 12 | // Headings 13 | $headingMargin: 0 0 20px 0; 14 | $headingFont: 'League Gothic', Impact, sans-serif; 15 | $headingColor: #eee; 16 | $headingLineHeight: 0.9em; 17 | $headingLetterSpacing: 0.02em; 18 | $headingTextTransform: none; /* changed (by hpl) from uppercase; */ 19 | $headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2); 20 | $heading1TextShadow: $headingTextShadow; 21 | 22 | // Links and actions 23 | $linkColor: #13DAEC; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | 26 | // Text selection 27 | $selectionBackgroundColor: #FF5E99; 28 | $selectionColor: #fff; 29 | 30 | // Generates the presentation background, can be overridden 31 | // to return a background image or gradient 32 | @mixin bodyBackground() { 33 | background: $backgroundColor; 34 | } -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league-gothic.eot'); 4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('league-gothic.woff') format('woff'), 6 | url('league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/plugin/markdown/example.md: -------------------------------------------------------------------------------- 1 | # Markdown Demo 2 | 3 | 4 | 5 | ## External 1.1 6 | 7 | Content 1.1 8 | 9 | Note: This will only appear in the speaker notes window. 10 | 11 | 12 | ## External 1.2 13 | 14 | Content 1.2 15 | 16 | 17 | 18 | ## External 2 19 | 20 | Content 2.1 21 | 22 | 23 | 24 | ## External 3.1 25 | 26 | Content 3.1 27 | 28 | 29 | ## External 3.2 30 | 31 | Content 3.2 32 | -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/plugin/multiplex/client.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | var multiplex = Reveal.getConfig().multiplex; 3 | var socketId = multiplex.id; 4 | var socket = io.connect(multiplex.url); 5 | 6 | socket.on(multiplex.id, function(data) { 7 | // ignore data from sockets that aren't ours 8 | if (data.socketId !== socketId) { return; } 9 | if( window.location.host === 'localhost:1947' ) return; 10 | 11 | Reveal.slide(data.indexh, data.indexv, data.indexf, 'remote'); 12 | }); 13 | }()); 14 | -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/test/examples/assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/test/examples/assets/image1.png -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/test/examples/assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/html/reveal.js/test/examples/assets/image2.png -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/test/examples/barebones.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | reveal.js - Barebones 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 |
17 | 18 |
19 |

Barebones Presentation

20 |

This example contains the bare minimum includes and markup required to run a reveal.js presentation.

21 |
22 | 23 |
24 |

No Theme

25 |

There's no theme included, so it will fall back on browser defaults.

26 |
27 | 28 |
29 | 30 |
31 | 32 | 33 | 34 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/test/examples/embedded-media.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | reveal.js - Embedded Media 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 |
20 | 21 |
22 |

Embedded Media Test

23 |
24 | 25 |
26 | 27 |
28 | 29 |
30 |

Empty Slide

31 |
32 | 33 |
34 | 35 |
36 | 37 | 38 | 39 | 40 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /doc/pub/lecture2/html/reveal.js/test/test-pdf.js: -------------------------------------------------------------------------------- 1 | 2 | Reveal.addEventListener( 'ready', function() { 3 | 4 | // Only one test for now, we're mainly ensuring that there 5 | // are no execution errors when running PDF mode 6 | 7 | test( 'Reveal.isReady', function() { 8 | strictEqual( Reveal.isReady(), true, 'returns true' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize({ pdf: true }); 15 | 16 | -------------------------------------------------------------------------------- /doc/pub/lecture2/ipynb/ipynb-lecture2-src.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/ipynb/ipynb-lecture2-src.tar.gz -------------------------------------------------------------------------------- /doc/pub/lecture2/ipynb/lecture2.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "id": "74b3bf83", 6 | "metadata": { 7 | "editable": true 8 | }, 9 | "source": [ 10 | "\n", 12 | "" 13 | ] 14 | }, 15 | { 16 | "cell_type": "markdown", 17 | "id": "683dd55a", 18 | "metadata": { 19 | "editable": true 20 | }, 21 | "source": [ 22 | "# Measurements, Superposition and Entanglement\n", 23 | "**Facility for Rare Isotope Beams, Michigan State University, USA**\n", 24 | "\n", 25 | "Date: **June 20**" 26 | ] 27 | }, 28 | { 29 | "cell_type": "markdown", 30 | "id": "040f2e72", 31 | "metadata": { 32 | "editable": true 33 | }, 34 | "source": [ 35 | "## Introduction" 36 | ] 37 | } 38 | ], 39 | "metadata": {}, 40 | "nbformat": 4, 41 | "nbformat_minor": 5 42 | } 43 | -------------------------------------------------------------------------------- /doc/pub/lecture2/pdf/lecture2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture2/pdf/lecture2.pdf -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .svn 3 | log/*.log 4 | tmp/** 5 | node_modules/ 6 | .sass-cache 7 | css/reveal.min.css 8 | js/reveal.min.js 9 | -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | before_script: 5 | - npm install -g grunt-cli -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (C) 2015 Hakim El Hattab, http://hakim.se 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reveal.js", 3 | "version": "3.1.0", 4 | "main": [ 5 | "js/reveal.js", 6 | "css/reveal.css" 7 | ], 8 | "homepage": "http://lab.hakim.se/reveal-js/", 9 | "license": "MIT", 10 | "description": "The HTML Presentation Framework", 11 | "authors": [ 12 | "Hakim El Hattab " 13 | ], 14 | "dependencies": { 15 | "headjs": "~0.9.6" 16 | }, 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/hakimel/reveal.js.git" 20 | }, 21 | "ignore": [ 22 | "**/.*", 23 | "node_modules", 24 | "bower_components", 25 | "test" 26 | ] 27 | } -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/css/images/cbc_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/css/images/cbc_footer.png -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/css/images/cbc_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/css/images/cbc_symbol.png -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/css/images/simula_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/css/images/simula_footer.png -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/css/images/simula_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/css/images/simula_logo.png -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/css/images/simula_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/css/images/simula_symbol.png -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/css/images/uio_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/css/images/uio_footer.png -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/css/images/uio_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/css/images/uio_symbol.png -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/css/theme/source/night.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Black theme for reveal.js. 3 | * 4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 5 | */ 6 | 7 | 8 | // Default mixins and settings ----------------- 9 | @import "../template/mixins"; 10 | @import "../template/settings"; 11 | // --------------------------------------------- 12 | 13 | 14 | // Include theme-specific fonts 15 | @import url(https://fonts.googleapis.com/css?family=Montserrat:700); 16 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); 17 | 18 | 19 | // Override theme settings (see ../template/settings.scss) 20 | $backgroundColor: #111; 21 | 22 | $mainFont: 'Open Sans', sans-serif; 23 | $linkColor: #e7ad52; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | $headingFont: 'Montserrat', Impact, sans-serif; 26 | $headingTextShadow: none; 27 | $headingLetterSpacing: -0.03em; 28 | $headingTextTransform: none; 29 | $selectionBackgroundColor: #e7ad52; 30 | $mainFontSize: 30px; 31 | 32 | 33 | // Theme template ------------------------------ 34 | @import "../template/theme"; 35 | // --------------------------------------------- -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/css/theme/template/settings.scss: -------------------------------------------------------------------------------- 1 | // Base settings for all themes that can optionally be 2 | // overridden by the super-theme 3 | 4 | // Background of the presentation 5 | $backgroundColor: #2b2b2b; 6 | 7 | // Primary/body text 8 | $mainFont: 'Lato', sans-serif; 9 | $mainFontSize: 30px; /* changed (by hpl) from 36px; */ 10 | $mainColor: #eee; 11 | 12 | // Headings 13 | $headingMargin: 0 0 20px 0; 14 | $headingFont: 'League Gothic', Impact, sans-serif; 15 | $headingColor: #eee; 16 | $headingLineHeight: 0.9em; 17 | $headingLetterSpacing: 0.02em; 18 | $headingTextTransform: none; /* changed (by hpl) from uppercase; */ 19 | $headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2); 20 | $heading1TextShadow: $headingTextShadow; 21 | 22 | // Links and actions 23 | $linkColor: #13DAEC; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | 26 | // Text selection 27 | $selectionBackgroundColor: #FF5E99; 28 | $selectionColor: #fff; 29 | 30 | // Generates the presentation background, can be overridden 31 | // to return a background image or gradient 32 | @mixin bodyBackground() { 33 | background: $backgroundColor; 34 | } -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league-gothic.eot'); 4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('league-gothic.woff') format('woff'), 6 | url('league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/plugin/markdown/example.md: -------------------------------------------------------------------------------- 1 | # Markdown Demo 2 | 3 | 4 | 5 | ## External 1.1 6 | 7 | Content 1.1 8 | 9 | Note: This will only appear in the speaker notes window. 10 | 11 | 12 | ## External 1.2 13 | 14 | Content 1.2 15 | 16 | 17 | 18 | ## External 2 19 | 20 | Content 2.1 21 | 22 | 23 | 24 | ## External 3.1 25 | 26 | Content 3.1 27 | 28 | 29 | ## External 3.2 30 | 31 | Content 3.2 32 | -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/plugin/multiplex/client.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | var multiplex = Reveal.getConfig().multiplex; 3 | var socketId = multiplex.id; 4 | var socket = io.connect(multiplex.url); 5 | 6 | socket.on(multiplex.id, function(data) { 7 | // ignore data from sockets that aren't ours 8 | if (data.socketId !== socketId) { return; } 9 | if( window.location.host === 'localhost:1947' ) return; 10 | 11 | Reveal.slide(data.indexh, data.indexv, data.indexf, 'remote'); 12 | }); 13 | }()); 14 | -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/test/examples/assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/test/examples/assets/image1.png -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/test/examples/assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/html/reveal.js/test/examples/assets/image2.png -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/test/examples/barebones.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | reveal.js - Barebones 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 |
17 | 18 |
19 |

Barebones Presentation

20 |

This example contains the bare minimum includes and markup required to run a reveal.js presentation.

21 |
22 | 23 |
24 |

No Theme

25 |

There's no theme included, so it will fall back on browser defaults.

26 |
27 | 28 |
29 | 30 |
31 | 32 | 33 | 34 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/test/examples/embedded-media.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | reveal.js - Embedded Media 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 |
20 | 21 |
22 |

Embedded Media Test

23 |
24 | 25 |
26 | 27 |
28 | 29 |
30 |

Empty Slide

31 |
32 | 33 |
34 | 35 |
36 | 37 | 38 | 39 | 40 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /doc/pub/lecture3/html/reveal.js/test/test-pdf.js: -------------------------------------------------------------------------------- 1 | 2 | Reveal.addEventListener( 'ready', function() { 3 | 4 | // Only one test for now, we're mainly ensuring that there 5 | // are no execution errors when running PDF mode 6 | 7 | test( 'Reveal.isReady', function() { 8 | strictEqual( Reveal.isReady(), true, 'returns true' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize({ pdf: true }); 15 | 16 | -------------------------------------------------------------------------------- /doc/pub/lecture3/ipynb/ipynb-lecture3-src.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/ipynb/ipynb-lecture3-src.tar.gz -------------------------------------------------------------------------------- /doc/pub/lecture3/pdf/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture3/pdf/.DS_Store -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .svn 3 | log/*.log 4 | tmp/** 5 | node_modules/ 6 | .sass-cache 7 | css/reveal.min.css 8 | js/reveal.min.js 9 | -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | before_script: 5 | - npm install -g grunt-cli -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (C) 2015 Hakim El Hattab, http://hakim.se 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reveal.js", 3 | "version": "3.1.0", 4 | "main": [ 5 | "js/reveal.js", 6 | "css/reveal.css" 7 | ], 8 | "homepage": "http://lab.hakim.se/reveal-js/", 9 | "license": "MIT", 10 | "description": "The HTML Presentation Framework", 11 | "authors": [ 12 | "Hakim El Hattab " 13 | ], 14 | "dependencies": { 15 | "headjs": "~0.9.6" 16 | }, 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/hakimel/reveal.js.git" 20 | }, 21 | "ignore": [ 22 | "**/.*", 23 | "node_modules", 24 | "bower_components", 25 | "test" 26 | ] 27 | } -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/css/images/cbc_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/css/images/cbc_footer.png -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/css/images/cbc_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/css/images/cbc_symbol.png -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/css/images/simula_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/css/images/simula_footer.png -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/css/images/simula_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/css/images/simula_logo.png -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/css/images/simula_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/css/images/simula_symbol.png -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/css/images/uio_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/css/images/uio_footer.png -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/css/images/uio_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/css/images/uio_symbol.png -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/css/theme/source/night.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Black theme for reveal.js. 3 | * 4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 5 | */ 6 | 7 | 8 | // Default mixins and settings ----------------- 9 | @import "../template/mixins"; 10 | @import "../template/settings"; 11 | // --------------------------------------------- 12 | 13 | 14 | // Include theme-specific fonts 15 | @import url(https://fonts.googleapis.com/css?family=Montserrat:700); 16 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); 17 | 18 | 19 | // Override theme settings (see ../template/settings.scss) 20 | $backgroundColor: #111; 21 | 22 | $mainFont: 'Open Sans', sans-serif; 23 | $linkColor: #e7ad52; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | $headingFont: 'Montserrat', Impact, sans-serif; 26 | $headingTextShadow: none; 27 | $headingLetterSpacing: -0.03em; 28 | $headingTextTransform: none; 29 | $selectionBackgroundColor: #e7ad52; 30 | $mainFontSize: 30px; 31 | 32 | 33 | // Theme template ------------------------------ 34 | @import "../template/theme"; 35 | // --------------------------------------------- -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/css/theme/template/settings.scss: -------------------------------------------------------------------------------- 1 | // Base settings for all themes that can optionally be 2 | // overridden by the super-theme 3 | 4 | // Background of the presentation 5 | $backgroundColor: #2b2b2b; 6 | 7 | // Primary/body text 8 | $mainFont: 'Lato', sans-serif; 9 | $mainFontSize: 30px; /* changed (by hpl) from 36px; */ 10 | $mainColor: #eee; 11 | 12 | // Headings 13 | $headingMargin: 0 0 20px 0; 14 | $headingFont: 'League Gothic', Impact, sans-serif; 15 | $headingColor: #eee; 16 | $headingLineHeight: 0.9em; 17 | $headingLetterSpacing: 0.02em; 18 | $headingTextTransform: none; /* changed (by hpl) from uppercase; */ 19 | $headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2); 20 | $heading1TextShadow: $headingTextShadow; 21 | 22 | // Links and actions 23 | $linkColor: #13DAEC; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | 26 | // Text selection 27 | $selectionBackgroundColor: #FF5E99; 28 | $selectionColor: #fff; 29 | 30 | // Generates the presentation background, can be overridden 31 | // to return a background image or gradient 32 | @mixin bodyBackground() { 33 | background: $backgroundColor; 34 | } -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league-gothic.eot'); 4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('league-gothic.woff') format('woff'), 6 | url('league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/plugin/markdown/example.md: -------------------------------------------------------------------------------- 1 | # Markdown Demo 2 | 3 | 4 | 5 | ## External 1.1 6 | 7 | Content 1.1 8 | 9 | Note: This will only appear in the speaker notes window. 10 | 11 | 12 | ## External 1.2 13 | 14 | Content 1.2 15 | 16 | 17 | 18 | ## External 2 19 | 20 | Content 2.1 21 | 22 | 23 | 24 | ## External 3.1 25 | 26 | Content 3.1 27 | 28 | 29 | ## External 3.2 30 | 31 | Content 3.2 32 | -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/plugin/multiplex/client.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | var multiplex = Reveal.getConfig().multiplex; 3 | var socketId = multiplex.id; 4 | var socket = io.connect(multiplex.url); 5 | 6 | socket.on(multiplex.id, function(data) { 7 | // ignore data from sockets that aren't ours 8 | if (data.socketId !== socketId) { return; } 9 | if( window.location.host === 'localhost:1947' ) return; 10 | 11 | Reveal.slide(data.indexh, data.indexv, data.indexf, 'remote'); 12 | }); 13 | }()); 14 | -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/test/examples/assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/test/examples/assets/image1.png -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/test/examples/assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/html/reveal.js/test/examples/assets/image2.png -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/test/examples/barebones.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | reveal.js - Barebones 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 |
17 | 18 |
19 |

Barebones Presentation

20 |

This example contains the bare minimum includes and markup required to run a reveal.js presentation.

21 |
22 | 23 |
24 |

No Theme

25 |

There's no theme included, so it will fall back on browser defaults.

26 |
27 | 28 |
29 | 30 |
31 | 32 | 33 | 34 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/test/examples/embedded-media.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | reveal.js - Embedded Media 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 |
20 | 21 |
22 |

Embedded Media Test

23 |
24 | 25 |
26 | 27 |
28 | 29 |
30 |

Empty Slide

31 |
32 | 33 |
34 | 35 |
36 | 37 | 38 | 39 | 40 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /doc/pub/lecture4/html/reveal.js/test/test-pdf.js: -------------------------------------------------------------------------------- 1 | 2 | Reveal.addEventListener( 'ready', function() { 3 | 4 | // Only one test for now, we're mainly ensuring that there 5 | // are no execution errors when running PDF mode 6 | 7 | test( 'Reveal.isReady', function() { 8 | strictEqual( Reveal.isReady(), true, 'returns true' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize({ pdf: true }); 15 | 16 | -------------------------------------------------------------------------------- /doc/pub/lecture4/ipynb/ipynb-lecture4-src.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/ipynb/ipynb-lecture4-src.tar.gz -------------------------------------------------------------------------------- /doc/pub/lecture4/ipynb/lecture4.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "id": "5007dab2", 6 | "metadata": { 7 | "editable": true 8 | }, 9 | "source": [ 10 | "\n", 12 | "" 13 | ] 14 | }, 15 | { 16 | "cell_type": "markdown", 17 | "id": "16e408e7", 18 | "metadata": { 19 | "editable": true 20 | }, 21 | "source": [ 22 | "# Quantum algorithms and implementation on a real quantum computer\n", 23 | "**Facility for Rare Isotope Beams, Michigan State University, USA**\n", 24 | "\n", 25 | "Date: **June 20**" 26 | ] 27 | }, 28 | { 29 | "cell_type": "markdown", 30 | "id": "e05d628d", 31 | "metadata": { 32 | "editable": true 33 | }, 34 | "source": [ 35 | "## Introduction" 36 | ] 37 | } 38 | ], 39 | "metadata": {}, 40 | "nbformat": 4, 41 | "nbformat_minor": 5 42 | } 43 | -------------------------------------------------------------------------------- /doc/pub/lecture4/pdf/lecture4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture4/pdf/lecture4.pdf -------------------------------------------------------------------------------- /doc/pub/lecture5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture5/.DS_Store -------------------------------------------------------------------------------- /doc/pub/lecture5/pdf/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture5/pdf/.DS_Store -------------------------------------------------------------------------------- /doc/pub/lecture5/pdf/Adiabatic Evolution and QAOA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture5/pdf/Adiabatic Evolution and QAOA.pdf -------------------------------------------------------------------------------- /doc/pub/lecture5/pdf/Adiabatic Evolution and QAOA.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture5/pdf/Adiabatic Evolution and QAOA.pptx -------------------------------------------------------------------------------- /doc/pub/lecture5/pdf/lecture5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture5/pdf/lecture5.pdf -------------------------------------------------------------------------------- /doc/pub/lecture6/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture6/.DS_Store -------------------------------------------------------------------------------- /doc/pub/lecture6/pdf/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture6/pdf/.DS_Store -------------------------------------------------------------------------------- /doc/pub/lecture6/pdf/lecture6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture6/pdf/lecture6.pdf -------------------------------------------------------------------------------- /doc/pub/lecture6/pdf/lecture6.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture6/pdf/lecture6.pptx -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/Diagram-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/Diagram-a.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/Diagram-fab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/Diagram-fab.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/Diagram-fai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/Diagram-fai.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/Diagram-fia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/Diagram-fia.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/Diagram-fij.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/Diagram-fij.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/Diagram-i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/Diagram-i.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/Diagrams-CCD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/Diagrams-CCD.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/Diagrams-CCSD1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/Diagrams-CCSD1.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/Diagrams-CCSD2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/Diagrams-CCSD2.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/Diagrams-E0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/Diagrams-E0.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/Diagrams-F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/Diagrams-F.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/Diagrams-T.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/Diagrams-T.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/Diagrams-V1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/Diagrams-V1.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/Diagrams-V2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/Diagrams-V2.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/Diagrams-V3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/Diagrams-V3.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/Diagrams-symmetry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/Diagrams-symmetry.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/Explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/Explosion.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/V-Minn-kspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/V-Minn-kspace.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/V-Minnesota.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/V-Minnesota.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/fig-finite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/fig-finite.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/figslides/table-Minnesota.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/figslides/table-Minnesota.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .svn 3 | log/*.log 4 | tmp/** 5 | node_modules/ 6 | .sass-cache 7 | css/reveal.min.css 8 | js/reveal.min.js 9 | -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | before_script: 5 | - npm install -g grunt-cli -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (C) 2015 Hakim El Hattab, http://hakim.se 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reveal.js", 3 | "version": "3.1.0", 4 | "main": [ 5 | "js/reveal.js", 6 | "css/reveal.css" 7 | ], 8 | "homepage": "http://lab.hakim.se/reveal-js/", 9 | "license": "MIT", 10 | "description": "The HTML Presentation Framework", 11 | "authors": [ 12 | "Hakim El Hattab " 13 | ], 14 | "dependencies": { 15 | "headjs": "~0.9.6" 16 | }, 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/hakimel/reveal.js.git" 20 | }, 21 | "ignore": [ 22 | "**/.*", 23 | "node_modules", 24 | "bower_components", 25 | "test" 26 | ] 27 | } -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/css/images/cbc_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/css/images/cbc_footer.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/css/images/cbc_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/css/images/cbc_symbol.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/css/images/simula_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/css/images/simula_footer.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/css/images/simula_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/css/images/simula_logo.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/css/images/simula_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/css/images/simula_symbol.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/css/images/uio_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/css/images/uio_footer.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/css/images/uio_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/css/images/uio_symbol.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/css/theme/source/night.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Black theme for reveal.js. 3 | * 4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 5 | */ 6 | 7 | 8 | // Default mixins and settings ----------------- 9 | @import "../template/mixins"; 10 | @import "../template/settings"; 11 | // --------------------------------------------- 12 | 13 | 14 | // Include theme-specific fonts 15 | @import url(https://fonts.googleapis.com/css?family=Montserrat:700); 16 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); 17 | 18 | 19 | // Override theme settings (see ../template/settings.scss) 20 | $backgroundColor: #111; 21 | 22 | $mainFont: 'Open Sans', sans-serif; 23 | $linkColor: #e7ad52; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | $headingFont: 'Montserrat', Impact, sans-serif; 26 | $headingTextShadow: none; 27 | $headingLetterSpacing: -0.03em; 28 | $headingTextTransform: none; 29 | $selectionBackgroundColor: #e7ad52; 30 | $mainFontSize: 30px; 31 | 32 | 33 | // Theme template ------------------------------ 34 | @import "../template/theme"; 35 | // --------------------------------------------- -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/css/theme/template/settings.scss: -------------------------------------------------------------------------------- 1 | // Base settings for all themes that can optionally be 2 | // overridden by the super-theme 3 | 4 | // Background of the presentation 5 | $backgroundColor: #2b2b2b; 6 | 7 | // Primary/body text 8 | $mainFont: 'Lato', sans-serif; 9 | $mainFontSize: 30px; /* changed (by hpl) from 36px; */ 10 | $mainColor: #eee; 11 | 12 | // Headings 13 | $headingMargin: 0 0 20px 0; 14 | $headingFont: 'League Gothic', Impact, sans-serif; 15 | $headingColor: #eee; 16 | $headingLineHeight: 0.9em; 17 | $headingLetterSpacing: 0.02em; 18 | $headingTextTransform: none; /* changed (by hpl) from uppercase; */ 19 | $headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2); 20 | $heading1TextShadow: $headingTextShadow; 21 | 22 | // Links and actions 23 | $linkColor: #13DAEC; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | 26 | // Text selection 27 | $selectionBackgroundColor: #FF5E99; 28 | $selectionColor: #fff; 29 | 30 | // Generates the presentation background, can be overridden 31 | // to return a background image or gradient 32 | @mixin bodyBackground() { 33 | background: $backgroundColor; 34 | } -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league-gothic.eot'); 4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('league-gothic.woff') format('woff'), 6 | url('league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/plugin/markdown/example.md: -------------------------------------------------------------------------------- 1 | # Markdown Demo 2 | 3 | 4 | 5 | ## External 1.1 6 | 7 | Content 1.1 8 | 9 | Note: This will only appear in the speaker notes window. 10 | 11 | 12 | ## External 1.2 13 | 14 | Content 1.2 15 | 16 | 17 | 18 | ## External 2 19 | 20 | Content 2.1 21 | 22 | 23 | 24 | ## External 3.1 25 | 26 | Content 3.1 27 | 28 | 29 | ## External 3.2 30 | 31 | Content 3.2 32 | -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/plugin/multiplex/client.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | var multiplex = Reveal.getConfig().multiplex; 3 | var socketId = multiplex.id; 4 | var socket = io.connect(multiplex.url); 5 | 6 | socket.on(multiplex.id, function(data) { 7 | // ignore data from sockets that aren't ours 8 | if (data.socketId !== socketId) { return; } 9 | if( window.location.host === 'localhost:1947' ) return; 10 | 11 | Reveal.slide(data.indexh, data.indexv, data.indexf, 'remote'); 12 | }); 13 | }()); 14 | -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/test/examples/assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/test/examples/assets/image1.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/test/examples/assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/html/reveal.js/test/examples/assets/image2.png -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/test/examples/barebones.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | reveal.js - Barebones 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 |
17 | 18 |
19 |

Barebones Presentation

20 |

This example contains the bare minimum includes and markup required to run a reveal.js presentation.

21 |
22 | 23 |
24 |

No Theme

25 |

There's no theme included, so it will fall back on browser defaults.

26 |
27 | 28 |
29 | 30 |
31 | 32 | 33 | 34 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /doc/pub/lecture8/html/reveal.js/test/test-pdf.js: -------------------------------------------------------------------------------- 1 | 2 | Reveal.addEventListener( 'ready', function() { 3 | 4 | // Only one test for now, we're mainly ensuring that there 5 | // are no execution errors when running PDF mode 6 | 7 | test( 'Reveal.isReady', function() { 8 | strictEqual( Reveal.isReady(), true, 'returns true' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize({ pdf: true }); 15 | 16 | -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/Diagram-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/Diagram-a.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/Diagram-fab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/Diagram-fab.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/Diagram-fai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/Diagram-fai.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/Diagram-fia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/Diagram-fia.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/Diagram-fij.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/Diagram-fij.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/Diagram-i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/Diagram-i.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/Diagrams-CCD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/Diagrams-CCD.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/Diagrams-CCSD1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/Diagrams-CCSD1.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/Diagrams-CCSD2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/Diagrams-CCSD2.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/Diagrams-E0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/Diagrams-E0.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/Diagrams-F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/Diagrams-F.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/Diagrams-T.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/Diagrams-T.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/Diagrams-V1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/Diagrams-V1.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/Diagrams-V2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/Diagrams-V2.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/Diagrams-V3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/Diagrams-V3.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/Diagrams-symmetry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/Diagrams-symmetry.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/Explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/Explosion.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/V-Minn-kspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/V-Minn-kspace.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/V-Minnesota.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/V-Minnesota.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/fig-finite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/fig-finite.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/figslides/table-Minnesota.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/figslides/table-Minnesota.png -------------------------------------------------------------------------------- /doc/pub/lecture8/ipynb/ipynb-lecture8-src.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/ipynb/ipynb-lecture8-src.tar.gz -------------------------------------------------------------------------------- /doc/pub/lecture8/pdf/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/pdf/.DS_Store -------------------------------------------------------------------------------- /doc/pub/lecture8/pdf/lecture8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture8/pdf/lecture8.pdf -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .svn 3 | log/*.log 4 | tmp/** 5 | node_modules/ 6 | .sass-cache 7 | css/reveal.min.css 8 | js/reveal.min.js 9 | -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | before_script: 5 | - npm install -g grunt-cli -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reveal.js", 3 | "version": "3.1.0", 4 | "main": [ 5 | "js/reveal.js", 6 | "css/reveal.css" 7 | ], 8 | "homepage": "http://lab.hakim.se/reveal-js/", 9 | "license": "MIT", 10 | "description": "The HTML Presentation Framework", 11 | "authors": [ 12 | "Hakim El Hattab " 13 | ], 14 | "dependencies": { 15 | "headjs": "~0.9.6" 16 | }, 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/hakimel/reveal.js.git" 20 | }, 21 | "ignore": [ 22 | "**/.*", 23 | "node_modules", 24 | "bower_components", 25 | "test" 26 | ] 27 | } -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/css/images/cbc_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/css/images/cbc_footer.png -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/css/images/cbc_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/css/images/cbc_symbol.png -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/css/images/simula_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/css/images/simula_footer.png -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/css/images/simula_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/css/images/simula_logo.png -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/css/images/simula_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/css/images/simula_symbol.png -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/css/images/uio_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/css/images/uio_footer.png -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/css/images/uio_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/css/images/uio_symbol.png -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/css/theme/source/night.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Black theme for reveal.js. 3 | * 4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 5 | */ 6 | 7 | 8 | // Default mixins and settings ----------------- 9 | @import "../template/mixins"; 10 | @import "../template/settings"; 11 | // --------------------------------------------- 12 | 13 | 14 | // Include theme-specific fonts 15 | @import url(https://fonts.googleapis.com/css?family=Montserrat:700); 16 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); 17 | 18 | 19 | // Override theme settings (see ../template/settings.scss) 20 | $backgroundColor: #111; 21 | 22 | $mainFont: 'Open Sans', sans-serif; 23 | $linkColor: #e7ad52; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | $headingFont: 'Montserrat', Impact, sans-serif; 26 | $headingTextShadow: none; 27 | $headingLetterSpacing: -0.03em; 28 | $headingTextTransform: none; 29 | $selectionBackgroundColor: #e7ad52; 30 | $mainFontSize: 30px; 31 | 32 | 33 | // Theme template ------------------------------ 34 | @import "../template/theme"; 35 | // --------------------------------------------- -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/css/theme/template/settings.scss: -------------------------------------------------------------------------------- 1 | // Base settings for all themes that can optionally be 2 | // overridden by the super-theme 3 | 4 | // Background of the presentation 5 | $backgroundColor: #2b2b2b; 6 | 7 | // Primary/body text 8 | $mainFont: 'Lato', sans-serif; 9 | $mainFontSize: 30px; /* changed (by hpl) from 36px; */ 10 | $mainColor: #eee; 11 | 12 | // Headings 13 | $headingMargin: 0 0 20px 0; 14 | $headingFont: 'League Gothic', Impact, sans-serif; 15 | $headingColor: #eee; 16 | $headingLineHeight: 0.9em; 17 | $headingLetterSpacing: 0.02em; 18 | $headingTextTransform: none; /* changed (by hpl) from uppercase; */ 19 | $headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2); 20 | $heading1TextShadow: $headingTextShadow; 21 | 22 | // Links and actions 23 | $linkColor: #13DAEC; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | 26 | // Text selection 27 | $selectionBackgroundColor: #FF5E99; 28 | $selectionColor: #fff; 29 | 30 | // Generates the presentation background, can be overridden 31 | // to return a background image or gradient 32 | @mixin bodyBackground() { 33 | background: $backgroundColor; 34 | } -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league-gothic.eot'); 4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('league-gothic.woff') format('woff'), 6 | url('league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/plugin/markdown/example.md: -------------------------------------------------------------------------------- 1 | # Markdown Demo 2 | 3 | 4 | 5 | ## External 1.1 6 | 7 | Content 1.1 8 | 9 | Note: This will only appear in the speaker notes window. 10 | 11 | 12 | ## External 1.2 13 | 14 | Content 1.2 15 | 16 | 17 | 18 | ## External 2 19 | 20 | Content 2.1 21 | 22 | 23 | 24 | ## External 3.1 25 | 26 | Content 3.1 27 | 28 | 29 | ## External 3.2 30 | 31 | Content 3.2 32 | -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/plugin/multiplex/client.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | var multiplex = Reveal.getConfig().multiplex; 3 | var socketId = multiplex.id; 4 | var socket = io.connect(multiplex.url); 5 | 6 | socket.on(multiplex.id, function(data) { 7 | // ignore data from sockets that aren't ours 8 | if (data.socketId !== socketId) { return; } 9 | if( window.location.host === 'localhost:1947' ) return; 10 | 11 | Reveal.slide(data.indexh, data.indexv, data.indexf, 'remote'); 12 | }); 13 | }()); 14 | -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/test/examples/assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/test/examples/assets/image1.png -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/test/examples/assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/html/reveal.js/test/examples/assets/image2.png -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/test/examples/barebones.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | reveal.js - Barebones 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 |
17 | 18 |
19 |

Barebones Presentation

20 |

This example contains the bare minimum includes and markup required to run a reveal.js presentation.

21 |
22 | 23 |
24 |

No Theme

25 |

There's no theme included, so it will fall back on browser defaults.

26 |
27 | 28 |
29 | 30 |
31 | 32 | 33 | 34 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /doc/pub/lecture9/html/reveal.js/test/test-pdf.js: -------------------------------------------------------------------------------- 1 | 2 | Reveal.addEventListener( 'ready', function() { 3 | 4 | // Only one test for now, we're mainly ensuring that there 5 | // are no execution errors when running PDF mode 6 | 7 | test( 'Reveal.isReady', function() { 8 | strictEqual( Reveal.isReady(), true, 'returns true' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize({ pdf: true }); 15 | 16 | -------------------------------------------------------------------------------- /doc/pub/lecture9/ipynb/pairing_pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/ipynb/pairing_pic.jpg -------------------------------------------------------------------------------- /doc/pub/lecture9/ipynb/swap_network.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/pub/lecture9/ipynb/swap_network.jpg -------------------------------------------------------------------------------- /doc/src/intro/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | doconce clean 3 | rm -rf *.pdf *.tex ipynb*.tar.gz *.html ._*.html *~ reveal.js Trash README.txt 4 | -------------------------------------------------------------------------------- /doc/src/lecture1/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | doconce clean 3 | rm -rf *.pdf *.tex ipynb*.tar.gz *.html ._*.html *~ reveal.js Trash README.txt 4 | -------------------------------------------------------------------------------- /doc/src/lecture1/lecture1.do.txt: -------------------------------------------------------------------------------- 1 | TITLE: Introduction to quantum computing, qubits and systems of qubits 2 | AUTHOR: Facility for Rare Isotope Beams, Michigan State University, USA 3 | DATE: June 20 4 | 5 | 6 | 7 | ===== Introduction ===== 8 | 9 | -------------------------------------------------------------------------------- /doc/src/lecture10/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | doconce clean 3 | rm -rf *.pdf *.tex ipynb*.tar.gz *.html ._*.html *~ reveal.js Trash README.txt 4 | -------------------------------------------------------------------------------- /doc/src/lecture11/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | doconce clean 3 | rm -rf *.pdf *.tex ipynb*.tar.gz *.html ._*.html *~ reveal.js Trash README.txt 4 | -------------------------------------------------------------------------------- /doc/src/lecture12/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | doconce clean 3 | rm -rf *.pdf *.tex ipynb*.tar.gz *.html ._*.html *~ reveal.js Trash README.txt 4 | -------------------------------------------------------------------------------- /doc/src/lecture2/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | doconce clean 3 | rm -rf *.pdf *.tex ipynb*.tar.gz *.html ._*.html *~ reveal.js Trash README.txt 4 | -------------------------------------------------------------------------------- /doc/src/lecture2/lecture2.do.txt: -------------------------------------------------------------------------------- 1 | TITLE: Measurements, Superposition and Entanglement 2 | AUTHOR: Facility for Rare Isotope Beams, Michigan State University, USA 3 | DATE: June 20 4 | 5 | 6 | 7 | ===== Introduction ===== 8 | 9 | -------------------------------------------------------------------------------- /doc/src/lecture3/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | doconce clean 3 | rm -rf *.pdf *.tex ipynb*.tar.gz *.html ._*.html *~ reveal.js Trash README.txt 4 | -------------------------------------------------------------------------------- /doc/src/lecture3/lecture3.do.txt: -------------------------------------------------------------------------------- 1 | TITLE: Gates, unitary transformations and quantum circuits 2 | AUTHOR: Facility for Rare Isotope Beams, Michigan State University, USA 3 | DATE: June 20 4 | 5 | 6 | 7 | ===== Introduction ===== 8 | 9 | -------------------------------------------------------------------------------- /doc/src/lecture4/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | doconce clean 3 | rm -rf *.pdf *.tex ipynb*.tar.gz *.html ._*.html *~ reveal.js Trash README.txt 4 | -------------------------------------------------------------------------------- /doc/src/lecture4/lecture4.do.txt: -------------------------------------------------------------------------------- 1 | TITLE: Quantum algorithms and implementation on a real quantum computer 2 | AUTHOR: Facility for Rare Isotope Beams, Michigan State University, USA 3 | DATE: June 20 4 | 5 | 6 | 7 | ===== Introduction ===== 8 | 9 | -------------------------------------------------------------------------------- /doc/src/lecture5/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | doconce clean 3 | rm -rf *.pdf *.tex ipynb*.tar.gz *.html ._*.html *~ reveal.js Trash README.txt 4 | -------------------------------------------------------------------------------- /doc/src/lecture5/lecture5.do.txt: -------------------------------------------------------------------------------- 1 | TITLE: Introduction to quantum computing, qubits and systems of qubits 2 | AUTHOR: Facility for Rare Isotope Beams, Michigan State University, USA 3 | DATE: June 20 4 | 5 | 6 | 7 | ===== Introduction ===== 8 | 9 | -------------------------------------------------------------------------------- /doc/src/lecture6/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | doconce clean 3 | rm -rf *.pdf *.tex ipynb*.tar.gz *.html ._*.html *~ reveal.js Trash README.txt 4 | -------------------------------------------------------------------------------- /doc/src/lecture7/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | doconce clean 3 | rm -rf *.pdf *.tex ipynb*.tar.gz *.html ._*.html *~ reveal.js Trash README.txt 4 | -------------------------------------------------------------------------------- /doc/src/lecture8/.dlog: -------------------------------------------------------------------------------- 1 | *** doconce file not found 2 | *** doconce file not found 3 | -------------------------------------------------------------------------------- /doc/src/lecture8/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | doconce clean 3 | rm -rf *.pdf *.tex ipynb*.tar.gz *.html ._*.html *~ reveal.js Trash README.txt 4 | -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/Diagram-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/Diagram-a.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/Diagram-fab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/Diagram-fab.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/Diagram-fai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/Diagram-fai.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/Diagram-fia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/Diagram-fia.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/Diagram-fij.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/Diagram-fij.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/Diagram-i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/Diagram-i.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/Diagrams-CCD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/Diagrams-CCD.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/Diagrams-CCSD1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/Diagrams-CCSD1.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/Diagrams-CCSD2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/Diagrams-CCSD2.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/Diagrams-E0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/Diagrams-E0.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/Diagrams-F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/Diagrams-F.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/Diagrams-T.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/Diagrams-T.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/Diagrams-V1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/Diagrams-V1.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/Diagrams-V2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/Diagrams-V2.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/Diagrams-V3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/Diagrams-V3.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/Diagrams-symmetry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/Diagrams-symmetry.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/Explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/Explosion.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/V-Minn-kspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/V-Minn-kspace.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/V-Minnesota.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/V-Minnesota.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/fig-finite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/fig-finite.png -------------------------------------------------------------------------------- /doc/src/lecture8/figslides/table-Minnesota.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuclearPhysicsWorkshops/FRIB-TASummerSchoolQuantumComputing/c0497fed723055512a5189f5d917af4a2d547e15/doc/src/lecture8/figslides/table-Minnesota.png -------------------------------------------------------------------------------- /doc/src/lecture9/add.txt: -------------------------------------------------------------------------------- 1 | $\newcommand{\acomm}[2]{\{#1,#2\}}$ 2 | $\newcommand{\comm}[2]{[#1,#2]}$ 3 | $\newcommand{\ket}[1]{|#1\rangle}$ 4 | -------------------------------------------------------------------------------- /doc/src/lecture9/clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | doconce clean 3 | rm -rf *.pdf *.tex ipynb*.tar.gz *.html ._*.html *~ reveal.js Trash README.txt 4 | --------------------------------------------------------------------------------