Last active
May 10, 2016 08:02
-
-
Save sirex/864231a790b1702b04a963be7196ec71 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://editorconfig.org/ | |
root = true | |
[*.{html,css}] | |
charset = utf-8 | |
indent_style = space | |
end_of_line = lf | |
insert_final_newline = true | |
max_line_length = 120 | |
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/reveal.js* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version = 3.3.0 | |
reveal.js/lib/css/default.min.css: reveal.js | |
wget https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.3.0/styles/default.min.css -O $@ | |
reveal.js: reveal.js-$(version) | |
mv reveal.js-$(version) reveal.js | |
reveal.js-$(version): reveal.js-$(version).tar.gz | |
tar -xzf reveal.js-$(version).tar.gz | |
reveal.js-$(version).tar.gz: | |
wget https://github.com/hakimel/reveal.js/archive/$(version).tar.gz -O reveal.js-$(version).tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<link rel="stylesheet" href="reveal.js/css/reveal.css"> | |
<link rel="stylesheet" href="reveal.js/css/theme/white.css"> | |
<link rel="stylesheet" href="reveal.js/lib/css/default.min.css"> | |
<style type="text/css"> | |
.text-right { | |
text-align: right !important; | |
} | |
.reveal .slides ul { | |
display: block; | |
padding-left: 30px; | |
} | |
.reveal .slides ul li { | |
list-style: none; | |
font-size: 28px; | |
text-indent: -24px; | |
padding-top: 10px; | |
} | |
.reveal .slides ul li:before { | |
content: "·"; | |
font-size: 80px; | |
vertical-align: middle; | |
line-height: 20px; | |
padding-right: 4px; | |
} | |
.reveal .first-slide pre code { | |
text-align:center; | |
font-size:42px; | |
padding:42px; | |
} | |
.reveal h1, | |
.reveal h2, | |
.reveal h3, | |
.reveal h4, | |
.reveal h5, | |
.reveal h6 { | |
text-transform: none; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="reveal"> | |
<div class="slides"> | |
<section class="first-slide"> | |
<pre><code class="python">manopozicija.lt</code></pre> | |
<h4>Status update</h4> | |
<p> | |
<small> | |
Code for Vilnius | |
</small> | |
</p> | |
</section> | |
<section> | |
<h2>KPI data</h2> | |
<ul> | |
<li>Department of statistics said that they are not going to | |
change any thing on how they provide data.</li> | |
<li>No help from Vilnius municipality so far.</li> | |
<li>Laura is helping with this, thanks!</li> | |
</ul> | |
</section> | |
<section> | |
<h2>KPI visualisation</h2> | |
<ul> | |
<li>Clickable and bigger dots for political actions.</li> | |
<li>Arik is helping with this, thanks!</li> | |
</ul> | |
</section> | |
<section> | |
<h2>Experiments with Gensim</h2> | |
<ul> | |
<li>LSI model didn't gave good results.</li> | |
<li>More work is needed on that.</li> | |
<li>Jonas said that he might help on this.</li> | |
</ul> | |
</section> | |
<section> | |
<h2>Data packages</h2> | |
<ul> | |
<li><a href="http://data.okfn.org/doc/data-package">data.okfn.org/doc/data-package</a></li> | |
<li>Did some research on how to integrate this with | |
manopozicija.lt.</li> | |
<li>Added TSV format support.</li> | |
<li>Working on Data Packages integration with Python Pandas.</li> | |
<li><a href="https://github.com/vilnius/transportas-velavimai/">github.com/vilnius/transportas-velavimai</a></li> | |
<li>Povilas published transport delays dataset as Data Package.</li> | |
</ul> | |
</section> | |
</div> | |
</div> | |
<script src="reveal.js/lib/js/head.min.js"></script> | |
<script src="reveal.js/js/reveal.js"></script> | |
<script> | |
// Full list of configuration options available at: | |
// https://github.com/hakimel/reveal.js#configuration | |
Reveal.initialize({ | |
controls: false, | |
progress: true, | |
history: true, | |
center: true, | |
transition: 'none', // none/fade/slide/convex/concave/zoom | |
// Optional reveal.js plugins | |
dependencies: [ | |
{ src: 'reveal.js/lib/js/classList.js', condition: function() { return !document.body.classList; } }, | |
{ src: 'reveal.js/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, | |
{ src: 'reveal.js/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, | |
{ src: 'reveal.js/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }, | |
{ src: 'reveal.js/plugin/zoom-js/zoom.js', async: true }, | |
{ src: 'reveal.js/plugin/notes/notes.js', async: true } | |
] | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment