Skip to content

Instantly share code, notes, and snippets.

@grahamjenson
Created February 3, 2014 03:01
Show Gist options
  • Select an option

  • Save grahamjenson/8778312 to your computer and use it in GitHub Desktop.

Select an option

Save grahamjenson/8778312 to your computer and use it in GitHub Desktop.

Component Evolution (Graham's thesis) and recent industry experience -- based on my Ph.D. academic and industry knowledge

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>reveal.js - The HTML Presentation Framework</title>
<meta name="description" content="">
<meta name="author" content="Graham Jenson">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="https://rawgithub.com/hakimel/reveal.js/2.6.1/css/reveal.min.css">
<link rel="stylesheet" href="https://rawgithub.com/hakimel/reveal.js/2.6.1/css/theme/default.css" id="theme">
<link rel="stylesheet" href="https://rawgithub.com/hakimel/reveal.js/2.6.1/lib/css/zenburn.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h1>Component Evolution and Industry Use</h1>
<h3>159.707</h3>
<p>
<small><a href="http://maori.geek.nz">Graham Jenson</a> / <a href="http://twitter.com/grahamjenson">@grahamjenson</a></small>
</p>
</section>
<section>
</section>
<section data-markdown>
<script type="text/template">
## Code
```
function(){console.log('asd')}
```
</script>
</section>
<section>
<h2>References</h2>
<ul>
<li><a href="http://maori.geek.nz">MAORI GEEK</a></li>
</ul>
</section>
</div>
</div>
<script src="https://rawgithub.com/hakimel/reveal.js/2.6.1/lib/js/head.min.js"></script>
<script src="https://rawgithub.com/hakimel/reveal.js/2.6.1/js/reveal.min.js"></script>
<script>
// Full list of configuration options available here:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/fade/none
// Parallax scrolling
parallaxBackgroundImage: 'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg',
parallaxBackgroundSize: '2100px 900px',
// Optional libraries used to extend on reveal.js
dependencies: [
{ src: 'https://rawgithub.com/hakimel/reveal.js/2.6.1/lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'https://rawgithub.com/hakimel/reveal.js/2.6.1/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'https://rawgithub.com/hakimel/reveal.js/2.6.1/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'https://rawgithub.com/hakimel/reveal.js/2.6.1/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'https://rawgithub.com/hakimel/reveal.js/2.6.1/plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
{ src: 'https://rawgithub.com/hakimel/reveal.js/2.6.1/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
]
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment