libreplanet-discuss
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [libreplanet-discuss] Slides for Deb Nicholson's 2015 LibrePlanet ta


From: Deb Nicholson
Subject: Re: [libreplanet-discuss] Slides for Deb Nicholson's 2015 LibrePlanet talk?
Date: Tue, 1 Mar 2016 16:58:10 -0500

They are now up on the FSF's MediaGoblin instance!  

http://media.libreplanet.org/u/libreplanet/m/slides-to-style-or-substance/

On Mon, Feb 22, 2016 at 7:54 PM, Adam Bolte <abolte@systemsaviour.com> wrote:
On Mon, Feb 22, 2016 at 07:37:10PM -0500, Michael Lamb wrote:
> > I'd be happy to post them directly on the FSF's MediaGoblin instance, if
> > someone with access wanted to help me make that happen.
>
> I don't have that access, but I would love to see that happen, since
> (last I checked) SlideShare requires users to run nonfree _javascript_
> to navigate its slides.

I agree it's a pain, but it is possible to download the slides with
just a little bit of Bash, since the slides are all there in the
source. eg.



#!/bin/bash

# Fetch the video
#wget -c http://media.libreplanet.org/mgoblin_media/media_entries/109/deb-nicholson-80s.medium.webm

# Fetch the slides
for i in http://image.slidesharecdn.com/styleorsubstancelp2015-160223001717/95/style-or-substance-free-software-is-totally-the-80s-lp2015-{1..68}-638.jpg
do
    wget -c ${i}
done

# # Zero-pad the slide numbers in the file name to correct the ordering.
for i in style-or-substance-free-software-is-totally-the-80s-lp2015-?-*
do
    mv ${i} ${i%%?-638.jpg}0${i##style-or-substance-free-software-is-totally-the-80s-lp2015-}
done


reply via email to

[Prev in Thread] Current Thread [Next in Thread]