diff --git a/.doit.db b/.doit.db
index bd131b3d..51ebb110 100644
Binary files a/.doit.db and b/.doit.db differ
diff --git a/cache/posts/using-a-local-revealjs-library-with-your-ipython-slides.html b/cache/posts/using-a-local-revealjs-library-with-your-ipython-slides.html
new file mode 100644
index 00000000..61d4bc99
--- /dev/null
+++ b/cache/posts/using-a-local-revealjs-library-with-your-ipython-slides.html
@@ -0,0 +1,61 @@
+
+
+
IPython slides are powered by Reveal.js library, you probably already know that.
+
But... you probably don't know that we use jsdelivr CDN to load all the necessary js and css files. As a consequence, you don't need to download Reveal.js, but also, the speaker notes are not working by default.
+
But... what happens, if you have low connectivity in the place where you will be presenting your talk (or if you want to use the speaker notes feature)?
+
In this case, it would be better to use a local copy of the Reveal.js library. And you can easily configure this behavior using a config object from the IPython machinery.
+
Below, you have one way to do it:
+
+
+
+
+In [1]:
+
+
+
fromIPython.nbconvert.exportersimportSlidesExporter
+fromIPython.configimportConfig
+
+fromIPython.nbformatimportcurrentasnbformat
+
+infile="talk.ipynb"# load the name of your slideshow
+outfile="talk.slides.html"
+
+notebook=open(infile).read()
+notebook_json=nbformat.reads_json(notebook)
+
+# This is the config object I talked before:
+# After the 'url_prefix', you can set the location of your
+# local reveal.js library, i.e. if the reveal.js is located
+# in the same directory as your talk.slides.html, then
+# set 'url_prefix':'reveal.js'.
+
+c=Config({
+ 'RevealHelpTransformer':{
+ 'enabled':True,
+ 'url_prefix':'reveal.js',
+ },
+ })
+
+exportHtml=SlidesExporter(config=c)
+(body,resources)=exportHtml.from_notebook_node(notebook_json)
+
+open(outfile,'w').write(body.encode('utf-8'))
+
+
+
+
+
+
+
+
Then, just serve the directory:
+
python -m SimpleHTTPServer 8000
+
open the browser and point it to http://localhost:port, ie:
+
xdg-open http://127.0.0.1:8000
+
OK, that's all... you don't need connectivity anymore ;-) OK, just kidding... he he!
+
NOTE: If you are using master, it is even simpler... because now --post serve post-processor uses tornado to forward requests to the CDN if and only if local Reveal.js is unavailable (PR merged here, thanks MinRK). So, just locate the reveal.js in the same directory as your talk.slides.html lives and run (as usually):
\ No newline at end of file
diff --git a/cache/posts/using-a-local-revealjs-library-with-your-ipython-slides.html.es b/cache/posts/using-a-local-revealjs-library-with-your-ipython-slides.html.es
new file mode 100644
index 00000000..61d4bc99
--- /dev/null
+++ b/cache/posts/using-a-local-revealjs-library-with-your-ipython-slides.html.es
@@ -0,0 +1,61 @@
+
+
+
IPython slides are powered by Reveal.js library, you probably already know that.
+
But... you probably don't know that we use jsdelivr CDN to load all the necessary js and css files. As a consequence, you don't need to download Reveal.js, but also, the speaker notes are not working by default.
+
But... what happens, if you have low connectivity in the place where you will be presenting your talk (or if you want to use the speaker notes feature)?
+
In this case, it would be better to use a local copy of the Reveal.js library. And you can easily configure this behavior using a config object from the IPython machinery.
+
Below, you have one way to do it:
+
+
+
+
+In [1]:
+
+
+
fromIPython.nbconvert.exportersimportSlidesExporter
+fromIPython.configimportConfig
+
+fromIPython.nbformatimportcurrentasnbformat
+
+infile="talk.ipynb"# load the name of your slideshow
+outfile="talk.slides.html"
+
+notebook=open(infile).read()
+notebook_json=nbformat.reads_json(notebook)
+
+# This is the config object I talked before:
+# After the 'url_prefix', you can set the location of your
+# local reveal.js library, i.e. if the reveal.js is located
+# in the same directory as your talk.slides.html, then
+# set 'url_prefix':'reveal.js'.
+
+c=Config({
+ 'RevealHelpTransformer':{
+ 'enabled':True,
+ 'url_prefix':'reveal.js',
+ },
+ })
+
+exportHtml=SlidesExporter(config=c)
+(body,resources)=exportHtml.from_notebook_node(notebook_json)
+
+open(outfile,'w').write(body.encode('utf-8'))
+
+
+
+
+
+
+
+
Then, just serve the directory:
+
python -m SimpleHTTPServer 8000
+
open the browser and point it to http://localhost:port, ie:
+
xdg-open http://127.0.0.1:8000
+
OK, that's all... you don't need connectivity anymore ;-) OK, just kidding... he he!
+
NOTE: If you are using master, it is even simpler... because now --post serve post-processor uses tornado to forward requests to the CDN if and only if local Reveal.js is unavailable (PR merged here, thanks MinRK). So, just locate the reveal.js in the same directory as your talk.slides.html lives and run (as usually):
\ No newline at end of file
diff --git a/output/2013/09/index.html b/output/2013/09/index.html
index c8dc89f1..455fe63c 100644
--- a/output/2013/09/index.html
+++ b/output/2013/09/index.html
@@ -120,7 +120,9 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/output/categories/connectivity.xml b/output/categories/connectivity.xml
new file mode 100644
index 00000000..1f06fd58
--- /dev/null
+++ b/output/categories/connectivity.xml
@@ -0,0 +1,5 @@
+
+Damian's blog (connectivity)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUsing a local Reveal.js library with your IPython slides.http://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
+<p>IPython slides are powered by <a href="https://github.com/hakimel/reveal.js/">Reveal.js</a> library, you probably already know that.</p>
+<p>But... you probably don't know that we use <a href="http://www.jsdelivr.com/">jsdelivr</a> CDN to load all the necessary js and css files. As a consequence, you don't need to download Reveal.js, but also, the speaker notes are not working by default.</p>
+<p>But... what happens, if you have low connectivity in the place where you will be presenting your talk (or if you want to use the speaker notes feature)? </p><p class="more"><a href="http://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.html">Read more…</a></p></div>pythonIPythonnbconvertrevealslideshowlocalconnectivityhttp://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.htmlFri, 13 Sep 2013 18:50:22 GMT
\ No newline at end of file
diff --git a/output/categories/css.xml b/output/categories/css.xml
index 7249c43e..71dfef98 100644
--- a/output/categories/css.xml
+++ b/output/categories/css.xml
@@ -1,5 +1,5 @@
-Damian's blog (css)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssCustomizing your IPython slideshttp://www.damian.oquanta.info//posts/customizing-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (css)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssCustomizing your IPython slideshttp://www.damian.oquanta.info//posts/customizing-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Some days ago, I received this message on G+:</p>
<blockquote>
<p>In a future release, would be handy to add custom classes to slides so that you can use CSS rules to choose certain layouts for image slides, text, multiple charts, etc.</p>
diff --git a/output/categories/extension.xml b/output/categories/extension.xml
index d3484c35..ebdfe71a 100644
--- a/output/categories/extension.xml
+++ b/output/categories/extension.xml
@@ -1,5 +1,5 @@
-Damian's blog (extension)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:27 GMTnikolahttp://blogs.law.harvard.edu/tech/rssZen mode extension for the IPython notebookhttp://www.damian.oquanta.info//posts/zen-mode-extension-for-the-ipython-notebook.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (extension)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:35 GMTnikolahttp://blogs.law.harvard.edu/tech/rssZen mode extension for the IPython notebookhttp://www.damian.oquanta.info//posts/zen-mode-extension-for-the-ipython-notebook.html<div class="text_cell_render border-box-sizing rendered_html">
<p>I write a lot stuff inside the IPython notebook.</p>
<p>And I thought it would be great to have a <em>sort</em> of <strong>Zen mode</strong> for the notebook...</p>
<p>I mean, a <em>peaceful</em> user interface to write my blog posts (and other stuff, of course).</p>
diff --git a/output/categories/facundo.xml b/output/categories/facundo.xml
index 7f1e29fa..e0389ae6 100644
--- a/output/categories/facundo.xml
+++ b/output/categories/facundo.xml
@@ -1,5 +1,5 @@
-Damian's blog (Facundo)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUnder the Sea... en La Platahttp://www.damian.oquanta.info//posts/under-the-sea-en-la-plata.html<div><div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (Facundo)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:35 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUnder the Sea... en La Platahttp://www.damian.oquanta.info//posts/under-the-sea-en-la-plata.html<div><div class="text_cell_render border-box-sizing rendered_html">
<p>Han pasado casi tres semanas... El 2 de abril cayeron sobre la ciudad de La Plata casi 400 mm de agua en 24 hs, concentrándose la mayor parte de dicho caudal en dos o tres horas por la tarde, lo que dio lugar a la más grande inundación que la ciudad haya registrado en toda su historia.</p>
</div>
<div class="text_cell_render border-box-sizing rendered_html">
diff --git a/output/categories/family.xml b/output/categories/family.xml
index 199f1f85..8aa31d97 100644
--- a/output/categories/family.xml
+++ b/output/categories/family.xml
@@ -1,5 +1,5 @@
-Damian's blog (family)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:27 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUnder the Sea... en La Platahttp://www.damian.oquanta.info//posts/under-the-sea-en-la-plata.html<div><div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (family)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUnder the Sea... en La Platahttp://www.damian.oquanta.info//posts/under-the-sea-en-la-plata.html<div><div class="text_cell_render border-box-sizing rendered_html">
<p>Han pasado casi tres semanas... El 2 de abril cayeron sobre la ciudad de La Plata casi 400 mm de agua en 24 hs, concentrándose la mayor parte de dicho caudal en dos o tres horas por la tarde, lo que dio lugar a la más grande inundación que la ciudad haya registrado en toda su historia.</p>
</div>
<div class="text_cell_render border-box-sizing rendered_html">
diff --git a/output/categories/first_post.xml b/output/categories/first_post.xml
index 7c9a8131..db6e222c 100644
--- a/output/categories/first_post.xml
+++ b/output/categories/first_post.xml
@@ -1,5 +1,5 @@
-Damian's blog (first_post)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssHello World! Again...http://www.damian.oquanta.info//posts/hello-world-again.html<p>You know that I have attempted to run a blog before. This is a new attempt...
+Damian's blog (first_post)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:35 GMTnikolahttp://blogs.law.harvard.edu/tech/rssHello World! Again...http://www.damian.oquanta.info//posts/hello-world-again.html<p>You know that I have attempted to run a blog before. This is a new attempt...
OK, I do not promise to post everyday... but if you have patience,
you will read a lot of interesting things (at least interesting for me).</p>
<p>See you soon!</p>
diff --git a/output/categories/flood.xml b/output/categories/flood.xml
index 70083dd4..98b6b2b0 100644
--- a/output/categories/flood.xml
+++ b/output/categories/flood.xml
@@ -1,5 +1,5 @@
-Damian's blog (flood)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUnder the Sea... en La Platahttp://www.damian.oquanta.info//posts/under-the-sea-en-la-plata.html<div><div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (flood)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUnder the Sea... en La Platahttp://www.damian.oquanta.info//posts/under-the-sea-en-la-plata.html<div><div class="text_cell_render border-box-sizing rendered_html">
<p>Han pasado casi tres semanas... El 2 de abril cayeron sobre la ciudad de La Plata casi 400 mm de agua en 24 hs, concentrándose la mayor parte de dicho caudal en dos o tres horas por la tarde, lo que dio lugar a la más grande inundación que la ciudad haya registrado en toda su historia.</p>
</div>
<div class="text_cell_render border-box-sizing rendered_html">
diff --git a/output/categories/gh-pages.xml b/output/categories/gh-pages.xml
index 34f1cc5c..9e1d05ab 100644
--- a/output/categories/gh-pages.xml
+++ b/output/categories/gh-pages.xml
@@ -1,5 +1,5 @@
-Damian's blog (gh-pages)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssOne line deployment of your site to gh-pageshttp://www.damian.oquanta.info//posts/one-line-deployment-of-your-site-to-gh-pages.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (gh-pages)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssOne line deployment of your site to gh-pageshttp://www.damian.oquanta.info//posts/one-line-deployment-of-your-site-to-gh-pages.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Do you want to <strong>easily</strong> deploy your site to Github pages?</p>
<p>OK, here we go...</p>
<ol style="list-style-type: decimal">
diff --git a/output/categories/git.xml b/output/categories/git.xml
index a6403fe0..975518ab 100644
--- a/output/categories/git.xml
+++ b/output/categories/git.xml
@@ -1,5 +1,5 @@
-Damian's blog (git)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssOne line deployment of your site to gh-pageshttp://www.damian.oquanta.info//posts/one-line-deployment-of-your-site-to-gh-pages.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (git)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssOne line deployment of your site to gh-pageshttp://www.damian.oquanta.info//posts/one-line-deployment-of-your-site-to-gh-pages.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Do you want to <strong>easily</strong> deploy your site to Github pages?</p>
<p>OK, here we go...</p>
<ol style="list-style-type: decimal">
diff --git a/output/categories/index.html b/output/categories/index.html
index 36fdbb57..a05340f0 100644
--- a/output/categories/index.html
+++ b/output/categories/index.html
@@ -122,6 +122,8 @@
[2013-09-09 21:10] A new Nikola's theme for my site: Zen
diff --git a/output/categories/ipython.xml b/output/categories/ipython.xml
index 6c090984..a713afdd 100644
--- a/output/categories/ipython.xml
+++ b/output/categories/ipython.xml
@@ -1,5 +1,8 @@
-Damian's blog (IPython)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssDifferent ways to lead an open source projecthttp://www.damian.oquanta.info//posts/different-ways-to-lead-an-open-source-project.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (IPython)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:35 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUsing a local Reveal.js library with your IPython slides.http://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
+<p>IPython slides are powered by <a href="https://github.com/hakimel/reveal.js/">Reveal.js</a> library, you probably already know that.</p>
+<p>But... you probably don't know that we use <a href="http://www.jsdelivr.com/">jsdelivr</a> CDN to load all the necessary js and css files. As a consequence, you don't need to download Reveal.js, but also, the speaker notes are not working by default.</p>
+<p>But... what happens, if you have low connectivity in the place where you will be presenting your talk (or if you want to use the speaker notes feature)? </p><p class="more"><a href="http://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.html">Read more…</a></p></div>pythonIPythonnbconvertrevealslideshowlocalconnectivityhttp://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.htmlFri, 13 Sep 2013 18:50:22 GMTDifferent ways to lead an open source projecthttp://www.damian.oquanta.info//posts/different-ways-to-lead-an-open-source-project.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Just a few lines, to trigger the discussion... to describe my point, I will pick two projects I have contributed (and I want to contribute even more): <code>IPython</code> and <code>Nikola</code>.</p>
<p>Some months ago, <strong>Brian Granger</strong>, a core developer from the <code>IPython</code> project gave a <a href="http://nbviewer.ipython.org/urls/raw.github.com/ellisonbg/talk-scipy2013/master/FeaturesAndScope.ipynb">talk</a> at <code>SciPy 2013</code> where he said: </p><p class="more"><a href="http://www.damian.oquanta.info//posts/different-ways-to-lead-an-open-source-project.html">Read more…</a></p></div>pythonIPythonnikolaopensourcehttp://www.damian.oquanta.info//posts/different-ways-to-lead-an-open-source-project.htmlFri, 13 Sep 2013 01:40:50 GMTA new Nikola's theme for my site: Zenhttp://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Some days ago, <a href="https://plus.google.com/106780152352450272697/about">Aru Sahni</a> wrote to <a href="https://groups.google.com/forum/#!forum/nikola-discuss">Nikola's</a> forum and posted a link to his site... I really like the theme he was using so I though to take it as a starting point to develop my own theme. </p><p class="more"><a href="http://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.html">Read more…</a></p></div>pythonblogzenthemelessnikolaIPythonhttp://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.htmlMon, 09 Sep 2013 21:10:18 GMTCustomizing your IPython slideshttp://www.damian.oquanta.info//posts/customizing-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
@@ -29,10 +32,4 @@
<p>It will be held from <strong>16 to 18th of May in Puerto Madryn</strong>, at the Patagonia Argentina (more details at SciPyCon <a href="http://scipycon.com.ar">homepage</a>).</p>
</div>
<div class="text_cell_render border-box-sizing rendered_html">
-<p class="more"><a href="http://www.damian.oquanta.info//posts/scipycon-argentina-2013.html">Read more…</a></p></div></div>SciPyConIPythonpythontalkstutorialshttp://www.damian.oquanta.info//posts/scipycon-argentina-2013.htmlSat, 04 May 2013 20:18:56 GMTReveal converter mini-tutorialhttp://www.damian.oquanta.info//posts/reveal-converter-mini-tutorial.html<div><div class="text_cell_render border-box-sizing rendered_html">
-<p>After some weeks of work and a lot of useful colaboration with the IPython team, we now have the reveal converter merged in nbconvert (a conversion utilities for the IPython notebook format).</p>
-<p>Currently nbconvert is being rewritten... but we also have a reveal converter in the new codebase, so you do not have problems if you begin to use it now, you will be able to use it tomorrow :-)</p>
-<p>I wrote a little tutorial (a reveal-based notebook slideshow, of course) about how to use reveal converter option inside nbconvert</p>
-</div>
-<div class="text_cell_render border-box-sizing rendered_html">
-<p class="more"><a href="http://www.damian.oquanta.info//posts/reveal-converter-mini-tutorial.html">Read more…</a></p></div></div>pythonnikolaIPythonblognbconverthttp://www.damian.oquanta.info//posts/reveal-converter-mini-tutorial.htmlFri, 15 Feb 2013 15:05:21 GMT
\ No newline at end of file
+<p class="more"><a href="http://www.damian.oquanta.info//posts/scipycon-argentina-2013.html">Read more…</a></p></div></div>SciPyConIPythonpythontalkstutorialshttp://www.damian.oquanta.info//posts/scipycon-argentina-2013.htmlSat, 04 May 2013 20:18:56 GMT
\ No newline at end of file
diff --git a/output/categories/javascript.xml b/output/categories/javascript.xml
index 513b2f1a..e63cfc37 100644
--- a/output/categories/javascript.xml
+++ b/output/categories/javascript.xml
@@ -1,5 +1,5 @@
-Damian's blog (javascript)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssZen mode extension for the IPython notebookhttp://www.damian.oquanta.info//posts/zen-mode-extension-for-the-ipython-notebook.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (javascript)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssZen mode extension for the IPython notebookhttp://www.damian.oquanta.info//posts/zen-mode-extension-for-the-ipython-notebook.html<div class="text_cell_render border-box-sizing rendered_html">
<p>I write a lot stuff inside the IPython notebook.</p>
<p>And I thought it would be great to have a <em>sort</em> of <strong>Zen mode</strong> for the notebook...</p>
<p>I mean, a <em>peaceful</em> user interface to write my blog posts (and other stuff, of course).</p>
diff --git a/output/categories/less.xml b/output/categories/less.xml
index 2f37dcfa..72f24b8d 100644
--- a/output/categories/less.xml
+++ b/output/categories/less.xml
@@ -1,3 +1,3 @@
-Damian's blog (less)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssA new Nikola's theme for my site: Zenhttp://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (less)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssA new Nikola's theme for my site: Zenhttp://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Some days ago, <a href="https://plus.google.com/106780152352450272697/about">Aru Sahni</a> wrote to <a href="https://groups.google.com/forum/#!forum/nikola-discuss">Nikola's</a> forum and posted a link to his site... I really like the theme he was using so I though to take it as a starting point to develop my own theme. </p><p class="more"><a href="http://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.html">Read more…</a></p></div>pythonblogzenthemelessnikolaIPythonhttp://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.htmlMon, 09 Sep 2013 21:10:18 GMT
\ No newline at end of file
diff --git a/output/categories/life.xml b/output/categories/life.xml
index e7133f63..998ec40c 100644
--- a/output/categories/life.xml
+++ b/output/categories/life.xml
@@ -1,5 +1,5 @@
-Damian's blog (life)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUnder the Sea... en La Platahttp://www.damian.oquanta.info//posts/under-the-sea-en-la-plata.html<div><div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (life)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:35 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUnder the Sea... en La Platahttp://www.damian.oquanta.info//posts/under-the-sea-en-la-plata.html<div><div class="text_cell_render border-box-sizing rendered_html">
<p>Han pasado casi tres semanas... El 2 de abril cayeron sobre la ciudad de La Plata casi 400 mm de agua en 24 hs, concentrándose la mayor parte de dicho caudal en dos o tres horas por la tarde, lo que dio lugar a la más grande inundación que la ciudad haya registrado en toda su historia.</p>
</div>
<div class="text_cell_render border-box-sizing rendered_html">
diff --git a/output/categories/local.html b/output/categories/local.html
new file mode 100644
index 00000000..b2a08b94
--- /dev/null
+++ b/output/categories/local.html
@@ -0,0 +1,201 @@
+
+
+
+
+
+
+
+ Posts about local | Damian's blog
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/output/categories/local.xml b/output/categories/local.xml
new file mode 100644
index 00000000..1a7dbdfd
--- /dev/null
+++ b/output/categories/local.xml
@@ -0,0 +1,5 @@
+
+Damian's blog (local)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUsing a local Reveal.js library with your IPython slides.http://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
+<p>IPython slides are powered by <a href="https://github.com/hakimel/reveal.js/">Reveal.js</a> library, you probably already know that.</p>
+<p>But... you probably don't know that we use <a href="http://www.jsdelivr.com/">jsdelivr</a> CDN to load all the necessary js and css files. As a consequence, you don't need to download Reveal.js, but also, the speaker notes are not working by default.</p>
+<p>But... what happens, if you have low connectivity in the place where you will be presenting your talk (or if you want to use the speaker notes feature)? </p><p class="more"><a href="http://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.html">Read more…</a></p></div>pythonIPythonnbconvertrevealslideshowlocalconnectivityhttp://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.htmlFri, 13 Sep 2013 18:50:22 GMT
\ No newline at end of file
diff --git a/output/categories/nbconvert.html b/output/categories/nbconvert.html
index 89b0c07e..6b4dcc27 100644
--- a/output/categories/nbconvert.html
+++ b/output/categories/nbconvert.html
@@ -135,7 +135,9 @@
[2013-08-30 20:25] A little hack to get a pdf from your IPython slides
diff --git a/output/categories/nbconvert.xml b/output/categories/nbconvert.xml
index bd9aba44..afca7770 100644
--- a/output/categories/nbconvert.xml
+++ b/output/categories/nbconvert.xml
@@ -1,5 +1,8 @@
-Damian's blog (nbconvert)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssCustomizing your IPython slideshttp://www.damian.oquanta.info//posts/customizing-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (nbconvert)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUsing a local Reveal.js library with your IPython slides.http://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
+<p>IPython slides are powered by <a href="https://github.com/hakimel/reveal.js/">Reveal.js</a> library, you probably already know that.</p>
+<p>But... you probably don't know that we use <a href="http://www.jsdelivr.com/">jsdelivr</a> CDN to load all the necessary js and css files. As a consequence, you don't need to download Reveal.js, but also, the speaker notes are not working by default.</p>
+<p>But... what happens, if you have low connectivity in the place where you will be presenting your talk (or if you want to use the speaker notes feature)? </p><p class="more"><a href="http://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.html">Read more…</a></p></div>pythonIPythonnbconvertrevealslideshowlocalconnectivityhttp://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.htmlFri, 13 Sep 2013 18:50:22 GMTCustomizing your IPython slideshttp://www.damian.oquanta.info//posts/customizing-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Some days ago, I received this message on G+:</p>
<blockquote>
<p>In a future release, would be handy to add custom classes to slides so that you can use CSS rules to choose certain layouts for image slides, text, multiple charts, etc.</p>
diff --git a/output/categories/nikola.xml b/output/categories/nikola.xml
index f07b7314..e15f5d3e 100644
--- a/output/categories/nikola.xml
+++ b/output/categories/nikola.xml
@@ -1,5 +1,5 @@
-Damian's blog (nikola)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:27 GMTnikolahttp://blogs.law.harvard.edu/tech/rssDifferent ways to lead an open source projecthttp://www.damian.oquanta.info//posts/different-ways-to-lead-an-open-source-project.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (nikola)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:35 GMTnikolahttp://blogs.law.harvard.edu/tech/rssDifferent ways to lead an open source projecthttp://www.damian.oquanta.info//posts/different-ways-to-lead-an-open-source-project.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Just a few lines, to trigger the discussion... to describe my point, I will pick two projects I have contributed (and I want to contribute even more): <code>IPython</code> and <code>Nikola</code>.</p>
<p>Some months ago, <strong>Brian Granger</strong>, a core developer from the <code>IPython</code> project gave a <a href="http://nbviewer.ipython.org/urls/raw.github.com/ellisonbg/talk-scipy2013/master/FeaturesAndScope.ipynb">talk</a> at <code>SciPy 2013</code> where he said: </p><p class="more"><a href="http://www.damian.oquanta.info//posts/different-ways-to-lead-an-open-source-project.html">Read more…</a></p></div>pythonIPythonnikolaopensourcehttp://www.damian.oquanta.info//posts/different-ways-to-lead-an-open-source-project.htmlFri, 13 Sep 2013 01:40:50 GMTA new Nikola's theme for my site: Zenhttp://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Some days ago, <a href="https://plus.google.com/106780152352450272697/about">Aru Sahni</a> wrote to <a href="https://groups.google.com/forum/#!forum/nikola-discuss">Nikola's</a> forum and posted a link to his site... I really like the theme he was using so I though to take it as a starting point to develop my own theme. </p><p class="more"><a href="http://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.html">Read more…</a></p></div>pythonblogzenthemelessnikolaIPythonhttp://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.htmlMon, 09 Sep 2013 21:10:18 GMTOne line deployment of your site to gh-pageshttp://www.damian.oquanta.info//posts/one-line-deployment-of-your-site-to-gh-pages.html<div class="text_cell_render border-box-sizing rendered_html">
diff --git a/output/categories/opensource.xml b/output/categories/opensource.xml
index 0b995ee4..3c3e7e4c 100644
--- a/output/categories/opensource.xml
+++ b/output/categories/opensource.xml
@@ -1,4 +1,4 @@
-Damian's blog (opensource)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssDifferent ways to lead an open source projecthttp://www.damian.oquanta.info//posts/different-ways-to-lead-an-open-source-project.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (opensource)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssDifferent ways to lead an open source projecthttp://www.damian.oquanta.info//posts/different-ways-to-lead-an-open-source-project.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Just a few lines, to trigger the discussion... to describe my point, I will pick two projects I have contributed (and I want to contribute even more): <code>IPython</code> and <code>Nikola</code>.</p>
<p>Some months ago, <strong>Brian Granger</strong>, a core developer from the <code>IPython</code> project gave a <a href="http://nbviewer.ipython.org/urls/raw.github.com/ellisonbg/talk-scipy2013/master/FeaturesAndScope.ipynb">talk</a> at <code>SciPy 2013</code> where he said: </p><p class="more"><a href="http://www.damian.oquanta.info//posts/different-ways-to-lead-an-open-source-project.html">Read more…</a></p></div>pythonIPythonnikolaopensourcehttp://www.damian.oquanta.info//posts/different-ways-to-lead-an-open-source-project.htmlFri, 13 Sep 2013 01:40:50 GMT
\ No newline at end of file
diff --git a/output/categories/pdf.xml b/output/categories/pdf.xml
index d2047656..d14b85a9 100644
--- a/output/categories/pdf.xml
+++ b/output/categories/pdf.xml
@@ -1,4 +1,4 @@
-Damian's blog (pdf)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:27 GMTnikolahttp://blogs.law.harvard.edu/tech/rssA little hack to get a pdf from your IPython slideshttp://www.damian.oquanta.info//posts/a-little-hack-to-get-a-pdf-from-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (pdf)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:35 GMTnikolahttp://blogs.law.harvard.edu/tech/rssA little hack to get a pdf from your IPython slideshttp://www.damian.oquanta.info//posts/a-little-hack-to-get-a-pdf-from-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
<p>A lot of users of the <code>slides</code> option in <code>IPython.nbconvert</code> asked me about how to get a pdf from the generated Reveal.js-based slideshow.</p>
<p>To make the story short, here you have the detailed steps: </p><p class="more"><a href="http://www.damian.oquanta.info//posts/a-little-hack-to-get-a-pdf-from-your-ipython-slides.html">Read more…</a></p></div>pythonIPythonnbconvertrevealslideshowpdfhttp://www.damian.oquanta.info//posts/a-little-hack-to-get-a-pdf-from-your-ipython-slides.htmlFri, 30 Aug 2013 20:25:39 GMT
\ No newline at end of file
diff --git a/output/categories/politics.xml b/output/categories/politics.xml
index 1045a00d..fd841bcf 100644
--- a/output/categories/politics.xml
+++ b/output/categories/politics.xml
@@ -1,5 +1,5 @@
-Damian's blog (politics)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssParaguayhttp://www.damian.oquanta.info//posts/paraguay.html<p>Only in Spanish.</p>
+Damian's blog (politics)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssParaguayhttp://www.damian.oquanta.info//posts/paraguay.html<p>Only in Spanish.</p>
<p>Lo que esta viviendo hoy el Paraguay me causa mucha tristeza...</p>
<p>¡¿Cómo puede ser que a comienzos del siglo XXI,
la retrógrada derecha latinoamericana no se haya superado y alcanzado
diff --git a/output/categories/python.html b/output/categories/python.html
index 25752a6c..2cf42c10 100644
--- a/output/categories/python.html
+++ b/output/categories/python.html
@@ -135,7 +135,9 @@
[2013-09-09 21:10] A new Nikola's theme for my site: Zen
diff --git a/output/categories/python.xml b/output/categories/python.xml
index 9a08fd71..85252fe3 100644
--- a/output/categories/python.xml
+++ b/output/categories/python.xml
@@ -1,5 +1,8 @@
-Damian's blog (python)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssDifferent ways to lead an open source projecthttp://www.damian.oquanta.info//posts/different-ways-to-lead-an-open-source-project.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (python)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:35 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUsing a local Reveal.js library with your IPython slides.http://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
+<p>IPython slides are powered by <a href="https://github.com/hakimel/reveal.js/">Reveal.js</a> library, you probably already know that.</p>
+<p>But... you probably don't know that we use <a href="http://www.jsdelivr.com/">jsdelivr</a> CDN to load all the necessary js and css files. As a consequence, you don't need to download Reveal.js, but also, the speaker notes are not working by default.</p>
+<p>But... what happens, if you have low connectivity in the place where you will be presenting your talk (or if you want to use the speaker notes feature)? </p><p class="more"><a href="http://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.html">Read more…</a></p></div>pythonIPythonnbconvertrevealslideshowlocalconnectivityhttp://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.htmlFri, 13 Sep 2013 18:50:22 GMTDifferent ways to lead an open source projecthttp://www.damian.oquanta.info//posts/different-ways-to-lead-an-open-source-project.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Just a few lines, to trigger the discussion... to describe my point, I will pick two projects I have contributed (and I want to contribute even more): <code>IPython</code> and <code>Nikola</code>.</p>
<p>Some months ago, <strong>Brian Granger</strong>, a core developer from the <code>IPython</code> project gave a <a href="http://nbviewer.ipython.org/urls/raw.github.com/ellisonbg/talk-scipy2013/master/FeaturesAndScope.ipynb">talk</a> at <code>SciPy 2013</code> where he said: </p><p class="more"><a href="http://www.damian.oquanta.info//posts/different-ways-to-lead-an-open-source-project.html">Read more…</a></p></div>pythonIPythonnikolaopensourcehttp://www.damian.oquanta.info//posts/different-ways-to-lead-an-open-source-project.htmlFri, 13 Sep 2013 01:40:50 GMTA new Nikola's theme for my site: Zenhttp://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Some days ago, <a href="https://plus.google.com/106780152352450272697/about">Aru Sahni</a> wrote to <a href="https://groups.google.com/forum/#!forum/nikola-discuss">Nikola's</a> forum and posted a link to his site... I really like the theme he was using so I though to take it as a starting point to develop my own theme. </p><p class="more"><a href="http://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.html">Read more…</a></p></div>pythonblogzenthemelessnikolaIPythonhttp://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.htmlMon, 09 Sep 2013 21:10:18 GMTCustomizing your IPython slideshttp://www.damian.oquanta.info//posts/customizing-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
@@ -29,9 +32,4 @@
<p>Just a little tip...</p>
<p>You know that Nikola support TEASERS... if not, you can read more about that here: <a href="http://nikola.ralsina.com.ar/handbook.html#teasers">teasers_info</a>.</p>
<p>In a few words, if you don't want to show the complete content of your posts at the index page, but instead display only the beginning of them, you only need to add a "magical comment" in a markdown cell:</p>
-<p class="more"><a href="http://www.damian.oquanta.info//posts/teasers-with-the-ipython-notebook-plugin.html">Read more…</a></p></div>pythonIPythonnikolahttp://www.damian.oquanta.info//posts/teasers-with-the-ipython-notebook-plugin.htmlFri, 02 Aug 2013 15:46:31 GMTSciPyCon Argentina 2013http://www.damian.oquanta.info//posts/scipycon-argentina-2013.html<div><div class="text_cell_render border-box-sizing rendered_html">
-<p>This is the first <strong>SciPy Conference in Argentina</strong> (as far as I know, it is also the first one in Latin American).</p>
-<p>It will be held from <strong>16 to 18th of May in Puerto Madryn</strong>, at the Patagonia Argentina (more details at SciPyCon <a href="http://scipycon.com.ar">homepage</a>).</p>
-</div>
-<div class="text_cell_render border-box-sizing rendered_html">
-<p class="more"><a href="http://www.damian.oquanta.info//posts/scipycon-argentina-2013.html">Read more…</a></p></div></div>SciPyConIPythonpythontalkstutorialshttp://www.damian.oquanta.info//posts/scipycon-argentina-2013.htmlSat, 04 May 2013 20:18:56 GMT
\ No newline at end of file
+<p class="more"><a href="http://www.damian.oquanta.info//posts/teasers-with-the-ipython-notebook-plugin.html">Read more…</a></p></div>pythonIPythonnikolahttp://www.damian.oquanta.info//posts/teasers-with-the-ipython-notebook-plugin.htmlFri, 02 Aug 2013 15:46:31 GMT
\ No newline at end of file
diff --git a/output/categories/reveal.html b/output/categories/reveal.html
index 08bb13b0..187a9ef5 100644
--- a/output/categories/reveal.html
+++ b/output/categories/reveal.html
@@ -135,7 +135,9 @@
[2013-08-30 20:25] A little hack to get a pdf from your IPython slides
diff --git a/output/categories/reveal.xml b/output/categories/reveal.xml
index 6cf010a9..525d6e7d 100644
--- a/output/categories/reveal.xml
+++ b/output/categories/reveal.xml
@@ -1,5 +1,8 @@
-Damian's blog (reveal)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssCustomizing your IPython slideshttp://www.damian.oquanta.info//posts/customizing-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (reveal)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:35 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUsing a local Reveal.js library with your IPython slides.http://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
+<p>IPython slides are powered by <a href="https://github.com/hakimel/reveal.js/">Reveal.js</a> library, you probably already know that.</p>
+<p>But... you probably don't know that we use <a href="http://www.jsdelivr.com/">jsdelivr</a> CDN to load all the necessary js and css files. As a consequence, you don't need to download Reveal.js, but also, the speaker notes are not working by default.</p>
+<p>But... what happens, if you have low connectivity in the place where you will be presenting your talk (or if you want to use the speaker notes feature)? </p><p class="more"><a href="http://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.html">Read more…</a></p></div>pythonIPythonnbconvertrevealslideshowlocalconnectivityhttp://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.htmlFri, 13 Sep 2013 18:50:22 GMTCustomizing your IPython slideshttp://www.damian.oquanta.info//posts/customizing-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Some days ago, I received this message on G+:</p>
<blockquote>
<p>In a future release, would be handy to add custom classes to slides so that you can use CSS rules to choose certain layouts for image slides, text, multiple charts, etc.</p>
diff --git a/output/categories/scipycon.xml b/output/categories/scipycon.xml
index b6bd8a08..a10f738d 100644
--- a/output/categories/scipycon.xml
+++ b/output/categories/scipycon.xml
@@ -1,5 +1,5 @@
-Damian's blog (SciPyCon)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssSciPyCon Argentina 2013http://www.damian.oquanta.info//posts/scipycon-argentina-2013.html<div><div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (SciPyCon)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:35 GMTnikolahttp://blogs.law.harvard.edu/tech/rssSciPyCon Argentina 2013http://www.damian.oquanta.info//posts/scipycon-argentina-2013.html<div><div class="text_cell_render border-box-sizing rendered_html">
<p>This is the first <strong>SciPy Conference in Argentina</strong> (as far as I know, it is also the first one in Latin American).</p>
<p>It will be held from <strong>16 to 18th of May in Puerto Madryn</strong>, at the Patagonia Argentina (more details at SciPyCon <a href="http://scipycon.com.ar">homepage</a>).</p>
</div>
diff --git a/output/categories/slideshow.html b/output/categories/slideshow.html
index 7accbf66..3909e89a 100644
--- a/output/categories/slideshow.html
+++ b/output/categories/slideshow.html
@@ -135,7 +135,9 @@
[2013-08-30 20:25] A little hack to get a pdf from your IPython slides
diff --git a/output/categories/slideshow.xml b/output/categories/slideshow.xml
index 22bc7a54..b7dba5aa 100644
--- a/output/categories/slideshow.xml
+++ b/output/categories/slideshow.xml
@@ -1,5 +1,8 @@
-Damian's blog (slideshow)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssCustomizing your IPython slideshttp://www.damian.oquanta.info//posts/customizing-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (slideshow)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUsing a local Reveal.js library with your IPython slides.http://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
+<p>IPython slides are powered by <a href="https://github.com/hakimel/reveal.js/">Reveal.js</a> library, you probably already know that.</p>
+<p>But... you probably don't know that we use <a href="http://www.jsdelivr.com/">jsdelivr</a> CDN to load all the necessary js and css files. As a consequence, you don't need to download Reveal.js, but also, the speaker notes are not working by default.</p>
+<p>But... what happens, if you have low connectivity in the place where you will be presenting your talk (or if you want to use the speaker notes feature)? </p><p class="more"><a href="http://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.html">Read more…</a></p></div>pythonIPythonnbconvertrevealslideshowlocalconnectivityhttp://www.damian.oquanta.info//posts/using-a-local-revealjs-library-with-your-ipython-slides.htmlFri, 13 Sep 2013 18:50:22 GMTCustomizing your IPython slideshttp://www.damian.oquanta.info//posts/customizing-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Some days ago, I received this message on G+:</p>
<blockquote>
<p>In a future release, would be handy to add custom classes to slides so that you can use CSS rules to choose certain layouts for image slides, text, multiple charts, etc.</p>
diff --git a/output/categories/talks.xml b/output/categories/talks.xml
index a98742d5..ba210937 100644
--- a/output/categories/talks.xml
+++ b/output/categories/talks.xml
@@ -1,5 +1,5 @@
-Damian's blog (talks)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssSciPyCon Argentina 2013http://www.damian.oquanta.info//posts/scipycon-argentina-2013.html<div><div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (talks)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssSciPyCon Argentina 2013http://www.damian.oquanta.info//posts/scipycon-argentina-2013.html<div><div class="text_cell_render border-box-sizing rendered_html">
<p>This is the first <strong>SciPy Conference in Argentina</strong> (as far as I know, it is also the first one in Latin American).</p>
<p>It will be held from <strong>16 to 18th of May in Puerto Madryn</strong>, at the Patagonia Argentina (more details at SciPyCon <a href="http://scipycon.com.ar">homepage</a>).</p>
</div>
diff --git a/output/categories/theme.xml b/output/categories/theme.xml
index ba5e5bf5..814f43d1 100644
--- a/output/categories/theme.xml
+++ b/output/categories/theme.xml
@@ -1,3 +1,3 @@
-Damian's blog (theme)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssA new Nikola's theme for my site: Zenhttp://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (theme)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssA new Nikola's theme for my site: Zenhttp://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Some days ago, <a href="https://plus.google.com/106780152352450272697/about">Aru Sahni</a> wrote to <a href="https://groups.google.com/forum/#!forum/nikola-discuss">Nikola's</a> forum and posted a link to his site... I really like the theme he was using so I though to take it as a starting point to develop my own theme. </p><p class="more"><a href="http://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.html">Read more…</a></p></div>pythonblogzenthemelessnikolaIPythonhttp://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.htmlMon, 09 Sep 2013 21:10:18 GMT
\ No newline at end of file
diff --git a/output/categories/tutorials.xml b/output/categories/tutorials.xml
index 9e348087..d3797dc1 100644
--- a/output/categories/tutorials.xml
+++ b/output/categories/tutorials.xml
@@ -1,5 +1,5 @@
-Damian's blog (tutorials)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:27 GMTnikolahttp://blogs.law.harvard.edu/tech/rssSciPyCon Argentina 2013http://www.damian.oquanta.info//posts/scipycon-argentina-2013.html<div><div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (tutorials)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssSciPyCon Argentina 2013http://www.damian.oquanta.info//posts/scipycon-argentina-2013.html<div><div class="text_cell_render border-box-sizing rendered_html">
<p>This is the first <strong>SciPy Conference in Argentina</strong> (as far as I know, it is also the first one in Latin American).</p>
<p>It will be held from <strong>16 to 18th of May in Puerto Madryn</strong>, at the Patagonia Argentina (more details at SciPyCon <a href="http://scipycon.com.ar">homepage</a>).</p>
</div>
diff --git a/output/categories/viper.xml b/output/categories/viper.xml
index 16f8aa76..f2e739d9 100644
--- a/output/categories/viper.xml
+++ b/output/categories/viper.xml
@@ -1,5 +1,5 @@
-Damian's blog (vIPer)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssImproving vIPer slideshows stylinghttp://www.damian.oquanta.info//posts/improving-viper-slideshows-styling.html<div><p>The last weekend, I had some time to improve the styling of the slideshow view (of the IPython notebook) rendered by vIPer.</p>
+Damian's blog (vIPer)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssImproving vIPer slideshows stylinghttp://www.damian.oquanta.info//posts/improving-viper-slideshows-styling.html<div><p>The last weekend, I had some time to improve the styling of the slideshow view (of the IPython notebook) rendered by vIPer.</p>
<p>You can see one example here:</p>
<p class="more"><a href="http://www.damian.oquanta.info//posts/improving-viper-slideshows-styling.html">Read more…</a></p></div>nikolapythonIPythonvIPerhttp://www.damian.oquanta.info//posts/improving-viper-slideshows-styling.htmlMon, 08 Oct 2012 00:33:45 GMTA simple overview of vIPerhttp://www.damian.oquanta.info//posts/a-simple-overview-of-viper.html<div><p>The idea of this video is to show you the major features of vIPer.</p>
<p>Here we go:</p>
diff --git a/output/categories/zen.xml b/output/categories/zen.xml
index 93a772ba..6f91cbf2 100644
--- a/output/categories/zen.xml
+++ b/output/categories/zen.xml
@@ -1,3 +1,3 @@
-Damian's blog (zen)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssA new Nikola's theme for my site: Zenhttp://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (zen)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:35 GMTnikolahttp://blogs.law.harvard.edu/tech/rssA new Nikola's theme for my site: Zenhttp://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Some days ago, <a href="https://plus.google.com/106780152352450272697/about">Aru Sahni</a> wrote to <a href="https://groups.google.com/forum/#!forum/nikola-discuss">Nikola's</a> forum and posted a link to his site... I really like the theme he was using so I though to take it as a starting point to develop my own theme. </p><p class="more"><a href="http://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.html">Read more…</a></p></div>pythonblogzenthemelessnikolaIPythonhttp://www.damian.oquanta.info//posts/a-new-nikolas-theme-for-my-site-zen.htmlMon, 09 Sep 2013 21:10:18 GMT
\ No newline at end of file
diff --git a/output/categories/zenmode.xml b/output/categories/zenmode.xml
index fc702dd5..9ca3be0e 100644
--- a/output/categories/zenmode.xml
+++ b/output/categories/zenmode.xml
@@ -1,5 +1,5 @@
-Damian's blog (zenmode)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssZen mode extension for the IPython notebookhttp://www.damian.oquanta.info//posts/zen-mode-extension-for-the-ipython-notebook.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (zenmode)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssZen mode extension for the IPython notebookhttp://www.damian.oquanta.info//posts/zen-mode-extension-for-the-ipython-notebook.html<div class="text_cell_render border-box-sizing rendered_html">
<p>I write a lot stuff inside the IPython notebook.</p>
<p>And I thought it would be great to have a <em>sort</em> of <strong>Zen mode</strong> for the notebook...</p>
<p>I mean, a <em>peaceful</em> user interface to write my blog posts (and other stuff, of course).</p>
diff --git a/output/es/2013/09/index.html b/output/es/2013/09/index.html
index 14a167b0..874041c4 100644
--- a/output/es/2013/09/index.html
+++ b/output/es/2013/09/index.html
@@ -120,7 +120,9 @@
[2013-09-09 21:10] A new Nikola's theme for my site: Zen
diff --git a/output/es/categories/blog.xml b/output/es/categories/blog.xml
index 3e79a935..63e87ace 100644
--- a/output/es/categories/blog.xml
+++ b/output/es/categories/blog.xml
@@ -1,5 +1,5 @@
-Damian's blog (blog)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssA new Nikola's theme for my site: Zenhttp://www.damian.oquanta.info//es/posts/a-new-nikolas-theme-for-my-site-zen.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (blog)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssA new Nikola's theme for my site: Zenhttp://www.damian.oquanta.info//es/posts/a-new-nikolas-theme-for-my-site-zen.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Some days ago, <a href="https://plus.google.com/106780152352450272697/about">Aru Sahni</a> wrote to <a href="https://groups.google.com/forum/#!forum/nikola-discuss">Nikola's</a> forum and posted a link to his site... I really like the theme he was using so I though to take it as a starting point to develop my own theme. </p><p class="more"><a href="http://www.damian.oquanta.info//es/posts/a-new-nikolas-theme-for-my-site-zen.html">Leer más…</a></p></div>http://www.damian.oquanta.info//es/posts/a-new-nikolas-theme-for-my-site-zen.htmlMon, 09 Sep 2013 21:10:18 GMTOne line deployment of your site to gh-pageshttp://www.damian.oquanta.info//es/posts/one-line-deployment-of-your-site-to-gh-pages.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Do you want to <strong>easily</strong> deploy your site to Github pages?</p>
<p>OK, here we go...</p>
diff --git a/output/es/categories/connectivity.html b/output/es/categories/connectivity.html
new file mode 100644
index 00000000..5588351e
--- /dev/null
+++ b/output/es/categories/connectivity.html
@@ -0,0 +1,201 @@
+
+
+
+
+
+
+
+ Posts sobre connectivity | Damian's blog
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/output/es/categories/connectivity.xml b/output/es/categories/connectivity.xml
new file mode 100644
index 00000000..6cb4d9b9
--- /dev/null
+++ b/output/es/categories/connectivity.xml
@@ -0,0 +1,5 @@
+
+Damian's blog (connectivity)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:35 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUsing a local Reveal.js library with your IPython slides.http://www.damian.oquanta.info//es/posts/using-a-local-revealjs-library-with-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
+<p>IPython slides are powered by <a href="https://github.com/hakimel/reveal.js/">Reveal.js</a> library, you probably already know that.</p>
+<p>But... you probably don't know that we use <a href="http://www.jsdelivr.com/">jsdelivr</a> CDN to load all the necessary js and css files. As a consequence, you don't need to download Reveal.js, but also, the speaker notes are not working by default.</p>
+<p>But... what happens, if you have low connectivity in the place where you will be presenting your talk (or if you want to use the speaker notes feature)? </p><p class="more"><a href="http://www.damian.oquanta.info//es/posts/using-a-local-revealjs-library-with-your-ipython-slides.html">Leer más…</a></p></div>http://www.damian.oquanta.info//es/posts/using-a-local-revealjs-library-with-your-ipython-slides.htmlFri, 13 Sep 2013 18:50:22 GMT
\ No newline at end of file
diff --git a/output/es/categories/css.xml b/output/es/categories/css.xml
index e7de6933..99f35e1d 100644
--- a/output/es/categories/css.xml
+++ b/output/es/categories/css.xml
@@ -1,5 +1,5 @@
-Damian's blog (css)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssCustomizing your IPython slideshttp://www.damian.oquanta.info//es/posts/customizing-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (css)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssCustomizing your IPython slideshttp://www.damian.oquanta.info//es/posts/customizing-your-ipython-slides.html<div class="text_cell_render border-box-sizing rendered_html">
<p>Some days ago, I received this message on G+:</p>
<blockquote>
<p>In a future release, would be handy to add custom classes to slides so that you can use CSS rules to choose certain layouts for image slides, text, multiple charts, etc.</p>
diff --git a/output/es/categories/extension.xml b/output/es/categories/extension.xml
index d180e336..9b177634 100644
--- a/output/es/categories/extension.xml
+++ b/output/es/categories/extension.xml
@@ -1,5 +1,5 @@
-Damian's blog (extension)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:27 GMTnikolahttp://blogs.law.harvard.edu/tech/rssZen mode extension for the IPython notebookhttp://www.damian.oquanta.info//es/posts/zen-mode-extension-for-the-ipython-notebook.html<div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (extension)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:35 GMTnikolahttp://blogs.law.harvard.edu/tech/rssZen mode extension for the IPython notebookhttp://www.damian.oquanta.info//es/posts/zen-mode-extension-for-the-ipython-notebook.html<div class="text_cell_render border-box-sizing rendered_html">
<p>I write a lot stuff inside the IPython notebook.</p>
<p>And I thought it would be great to have a <em>sort</em> of <strong>Zen mode</strong> for the notebook...</p>
<p>I mean, a <em>peaceful</em> user interface to write my blog posts (and other stuff, of course).</p>
diff --git a/output/es/categories/facundo.xml b/output/es/categories/facundo.xml
index 86ca2354..b7c17f64 100644
--- a/output/es/categories/facundo.xml
+++ b/output/es/categories/facundo.xml
@@ -1,5 +1,5 @@
-Damian's blog (Facundo)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:27 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUnder the Sea... en La Platahttp://www.damian.oquanta.info//es/posts/under-the-sea-en-la-plata.html<div><div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (Facundo)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:35 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUnder the Sea... en La Platahttp://www.damian.oquanta.info//es/posts/under-the-sea-en-la-plata.html<div><div class="text_cell_render border-box-sizing rendered_html">
<p>Han pasado casi tres semanas... El 2 de abril cayeron sobre la ciudad de La Plata casi 400 mm de agua en 24 hs, concentrándose la mayor parte de dicho caudal en dos o tres horas por la tarde, lo que dio lugar a la más grande inundación que la ciudad haya registrado en toda su historia.</p>
</div>
<div class="text_cell_render border-box-sizing rendered_html">
diff --git a/output/es/categories/family.xml b/output/es/categories/family.xml
index 306f5b8e..506b3c1f 100644
--- a/output/es/categories/family.xml
+++ b/output/es/categories/family.xml
@@ -1,5 +1,5 @@
-Damian's blog (family)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUnder the Sea... en La Platahttp://www.damian.oquanta.info//es/posts/under-the-sea-en-la-plata.html<div><div class="text_cell_render border-box-sizing rendered_html">
+Damian's blog (family)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:34 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUnder the Sea... en La Platahttp://www.damian.oquanta.info//es/posts/under-the-sea-en-la-plata.html<div><div class="text_cell_render border-box-sizing rendered_html">
<p>Han pasado casi tres semanas... El 2 de abril cayeron sobre la ciudad de La Plata casi 400 mm de agua en 24 hs, concentrándose la mayor parte de dicho caudal en dos o tres horas por la tarde, lo que dio lugar a la más grande inundación que la ciudad haya registrado en toda su historia.</p>
</div>
<div class="text_cell_render border-box-sizing rendered_html">
diff --git a/output/es/categories/first_post.xml b/output/es/categories/first_post.xml
index 04cbb9f1..994579a1 100644
--- a/output/es/categories/first_post.xml
+++ b/output/es/categories/first_post.xml
@@ -1,5 +1,5 @@
-Damian's blog (first_post)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:28 GMTnikolahttp://blogs.law.harvard.edu/tech/rssHola Mundo! Nuevamente...http://www.damian.oquanta.info//es/posts/hello-world-again.html<p>Ustedes saben que, en otras épocas, he tratado de mantener "vivos" un par de blogs.
+Damian's blog (first_post)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 18:54:35 GMTnikolahttp://blogs.law.harvard.edu/tech/rssHola Mundo! Nuevamente...http://www.damian.oquanta.info//es/posts/hello-world-again.html<p>Ustedes saben que, en otras épocas, he tratado de mantener "vivos" un par de blogs.
Este es un nuevo ensayo...
Esta vez, no les prometo postear todos los días... pero si tienen paciencia,
podrán leer algunas "cosas" interesantes (al menos interesantes para mi).</p>
diff --git a/output/es/categories/flood.xml b/output/es/categories/flood.xml
index 9ca29156..1cdb8afa 100644
--- a/output/es/categories/flood.xml
+++ b/output/es/categories/flood.xml
@@ -1,5 +1,5 @@
-Damian's blog (flood)http://www.damian.oquanta.info/My place to share some thoughts with the world.Fri, 13 Sep 2013 01:43:27 GMTnikolahttp://blogs.law.harvard.edu/tech/rssUnder the Sea... en La Platahttp://www.damian.oquanta.info//es/posts/under-the-sea-en-la-plata.html<div><div class="text_cell_render border-box-sizing rendered_html">
+