Where to host presentation about Go made with present?

2,119 views
Skip to first unread message

Alexey Palazhchenko

unread,
Jan 7, 2013, 7:12:59 AM1/7/13
to golan...@googlegroups.com
Hello,

Last month I gave a talk "Let's Go, or introduction into Go" at RailsClub’Ulyanovsk (other themes covered on this conference for (ex-)Rubists/Railsists: Erlang, functional programming and EventMachine). The talk and slides are in Russian. Slides (made with present tool) are there: https://github.com/AlekSi/LetsGo

Where can I host the slides to be viewed online? talks.golang.org is (probably) for "official" and English talks. And I would prefer not to create a GAE app just for one talk.

–-–
Alexey "AlekSi" Palazhchenko

Andrew Gerrand

unread,
Jan 8, 2013, 1:22:31 AM1/8/13
to Alexey Palazhchenko, golan...@googlegroups.com
On 7 January 2013 04:12, Alexey Palazhchenko <alexey.pa...@gmail.com> wrote:
And I would prefer not to create a GAE app just for one talk.

Why not? It easy to do, and by far the easiest way of doing what you want.

Andrew

Kyle Lemons

unread,
Jan 8, 2013, 4:07:03 PM1/8/13
to Andrew Gerrand, Alexey Palazhchenko, golan...@googlegroups.com
If burning through your quota of apps is your worry, you could make a "yournametalks" app and upload them as named versions and then point the default version at the latest talk.  Then you could have letsgo.yournametalks.appsopt.com and friends.


--
 
 

minux

unread,
Jan 8, 2013, 4:43:21 PM1/8/13
to Kyle Lemons, Andrew Gerrand, Alexey Palazhchenko, golan...@googlegroups.com
On Wed, Jan 9, 2013 at 5:07 AM, Kyle Lemons <kev...@google.com> wrote:
If burning through your quota of apps is your worry, you could make a "yournametalks" app and upload them as named versions and then point the default version at the latest talk.  Then you could have letsgo.yournametalks.appsopt.com and friends.
Thank you for this great tip!
Now I can host a Chinese translation of go.talks in the same App Engine app that
hosts Chinese version of golang.org.

Anssi Porttikivi

unread,
Jan 10, 2013, 12:34:09 PM1/10/13
to golan...@googlegroups.com
BTW, does Present have problems on iPhone Safari, or is it just me?

Andrew Gerrand

unread,
Jan 10, 2013, 10:21:50 PM1/10/13
to Anssi Porttikivi, golang-nuts

It does. The slide code needs work.

On 11 Jan 2013 04:34, "Anssi Porttikivi" <portt...@gmail.com> wrote:
BTW, does Present have problems on iPhone Safari, or is it just me?

--


Jason DSouza

unread,
Feb 2, 2013, 7:55:07 PM2/2/13
to golan...@googlegroups.com
Hi, I am trying to create a GAE app for the present tool, but keep running into the following error:

07:52 PM Error 422: --- begin server output ---
Compile failed:
2013/02/02 16:52:08 go-app-builder: Failed building app: failed running 6g: exit status 1


present/appengine.go:18: can't find import: "code.google.com/p/go.talks/pkg/present"
--- end server output ---

The wierd thing is that it runs fine locally (when i run it with dev_appserver.py). It seems like it can't find the pkg/present package, but it is definitely there, and the present tool builds fine both with "go install", and with the dev_appserver.py script. It is only when I try and push the code up to appengine that something goes wrong.

Any ideas?

-Jason

Kyle Lemons

unread,
Feb 5, 2013, 12:53:52 PM2/5/13
to Jason DSouza, golang-nuts, google-appengine-go
+google-appengine-go

What version of the SDK are you using?


--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Jason DSouza

unread,
Feb 5, 2013, 11:01:42 PM2/5/13
to Kyle Lemons, golang-nuts, google-appengine-go

I actually figured out what the problem was thanks to Andrew Gerrand.

The app.yaml file was not allowing the dependencies to build.

Andrew submitted a patch
(https://codereview.appspot.com/7299044) so it shouldn't be an issue anymore.

Thanks for following up.
-Jason

minux

unread,
Feb 7, 2013, 4:52:35 AM2/7/13
to gary b, golan...@googlegroups.com

On Thursday, February 7, 2013, gary b wrote:
On Monday, January 7, 2013 4:12:59 AM UTC-8, Alexey Palazhchenko wrote:
Where can I host the slides to be viewed online?

I am adding a slide viewer to godoc.org. You can see the work in progress at http://godoc.org/-/talk/github.com/AlekSi/LetsGo/lets-go.slide 
great job! thanks.

Andrew Gerrand

unread,
Feb 7, 2013, 5:53:17 PM2/7/13
to gary b, golang-nuts
Nice work!

You should also include the javascript from go.talks/present/js, so that the code snippets on the slides may be executed. It should "Just Work". (I hope.)

Andrew

On 8 February 2013 09:48, gary b <gary...@gmail.com> wrote:


On Wednesday, February 6, 2013 10:12:13 PM UTC-8, gary b wrote:
On Monday, January 7, 2013 4:12:59 AM UTC-8, Alexey Palazhchenko wrote:
Where can I host the slides to be viewed online?

I am adding a slide viewer to godoc.org. You can see the work in progress at http://godoc.org/-/talk/github.com/AlekSi/LetsGo/lets-go.slide 

Alexey Palazhchenko

unread,
Feb 14, 2013, 2:05:33 PM2/14/13
to golan...@googlegroups.com
Gary,
 

Thanks awesome, thanks a lot!

–-–
Alexey "AlekSi" Palazhchenko

Alexey Palazhchenko

unread,
Feb 14, 2013, 2:07:46 PM2/14/13
to golan...@googlegroups.com
> Thanks awesome, thanks a lot!

Too excited to spell correctly. :) That's awesome.

Tony Worm

unread,
Feb 21, 2013, 12:28:00 PM2/21/13
to golan...@googlegroups.com
I'm getting the same results from the examples with 
rand.Seed(time.Now().UnixNano())

This is happening locally with dev_appserver.py and on the talks.godoc.org
Both local and remote have same results for the examples.

Is there something that can be done to make the present operate non-deterministically
so as to get some variation like in Rob's talk?

Tony Worm

unread,
Feb 21, 2013, 2:34:07 PM2/21/13
to golan...@googlegroups.com
I was able to get the examples running by building the presenter.

I had to change the base dir from "." to ".."  in dir.go

Andrew Gerrand

unread,
Feb 21, 2013, 5:27:22 PM2/21/13
to Tony Worm, golang-nuts
You shouldn't need to do that

Just cd to the go.talks directory, then run "go install ./present && present"


Dustin Sallings

unread,
Feb 21, 2013, 6:21:14 PM2/21/13
to golan...@googlegroups.com

bana...@gmail.com

unread,
Apr 20, 2015, 11:14:49 AM4/20/15
to golan...@googlegroups.com
Hi everyone! Just want to share that ULAPPH Cloud Desktop is now available, it's free! It can be used to create and show slides and articles using the cloud. Please visit http://www.ulapph.com. ULAPPH Cloud Desktop is a free web-based cloud desktop computer, website and information database accessible anytime, anywhere and on any device! It is a software as a service (SaaS) application running in Google cloud network. It uses the Go Programming language on its backend and a host of open-source javascripts, css, hmtl codes in its front-end interface. It requires Google account in order to register and login. It has built-in PC and mobile interface which automatically displays based on the operating system and browser. 

Dmitry Savintsev

unread,
Apr 20, 2015, 11:58:22 AM4/20/15
to golan...@googlegroups.com

Sebastien Binet

unread,
Apr 20, 2015, 12:03:25 PM4/20/15
to Dmitry Savintsev, golang-nuts
On Mon, Apr 20, 2015 at 5:58 PM, Dmitry Savintsev <dsav...@gmail.com> wrote:
> Francesc mentioned once http://go-talks.appspot.com/ which allows to view
> present-based slide decks checked in github.com. For example,
> https://github.com/dmitris/talks/blob/master/mun-golang-meetup/20150217/webseclab.slide
> gets presented as
> http://go-talks.appspot.com/github.com/dmitris/talks/mun-golang-meetup/20150217/webseclab.slide#1

there is also talks.godoc.org (which actually redirects to
go-talks.appspot.com.)

-s

>
> Dmitry
>
> On Monday, January 7, 2013 at 1:12:59 PM UTC+1, Alexey Palazhchenko wrote:
>>
>> Hello,
>>
>> Last month I gave a talk "Let's Go, or introduction into Go" at
>> RailsClub’Ulyanovsk (other themes covered on this conference for
>> (ex-)Rubists/Railsists: Erlang, functional programming and EventMachine).
>> The talk and slides are in Russian. Slides (made with present tool) are
>> there: https://github.com/AlekSi/LetsGo
>>
>> Where can I host the slides to be viewed online? talks.golang.org is
>> (probably) for "official" and English talks. And I would prefer not to
>> create a GAE app just for one talk.
>>
>> –-–
>> Alexey "AlekSi" Palazhchenko
>>
> --
> You received this message because you are subscribed to the Google Groups
> "golang-nuts" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to golang-nuts...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
Message has been deleted
Message has been deleted

Edwin Vinas

unread,
Apr 11, 2016, 1:22:31 PM4/11/16
to golang-nuts, dsav...@gmail.com
[UPDATED] Hi everyone, if you would like to create golang presenter slides in the cloud (not local) so you can create/edit slides on the go & even publish them in the internet, you may want to take a look at our ULAPPH Cloud Desktop system which can do this for you. Here's a video:

https://www.youtube.com/watch?v=tW_fFbqGjzg

You might ask if it's free? Currently, we only require a one-time very low payment in order to install the UCD system where the slides will be created/edited/published. After setup, you can use the UCD for free to create your golang presenter slides! Please visit below site to check our UCD system.

http://www.ulapph.com 

And there is even a screenshot tool that we can use to easily insert screenshots in the slides.

https://www.youtube.com/watch?v=Loi3HNhrO5k

And you can even impress the audience by controlling your slides using your Android/IOS phone provided there is Wifi.

https://www.youtube.com/watch?v=9Ahm8S712kg

Thanks for reading my comment! :-)
Reply all
Reply to author
Forward
0 new messages