16:00
- CONDURRE UNA VIDEO CONF (casi d'uso, assemblea, lavoro, didattica).
Si parte con il lato pratico per una video conf mista (alcuni in presenza altri lontani): cavi audio, scheda audio etc... e si arriva ai vari hosting radicali e non a cui ci si può rivolgere nelle vari situazioni della vita, quindi percorremo le possibilità da antagonismo ad attivismo a consumo critico a statale ed aziendale.
Durata: ~40 min

Alexander Miasoiedov 14d9757ee6 Update Readme.md il y a 4 ans
auth 9857e3d452 Switch to go modules. il y a 4 ans
files e72437eff8 Add files utils il y a 6 ans
slides 3f89ea6787 Added example into initial-slides.md and skip folders from stash view to prevent errors / creation of images.md file to improve #23 :) il y a 6 ans
static 3d8ee42287 Add base64 favicon il y a 6 ans
templates 3d8ee42287 Add base64 favicon il y a 6 ans
.dockerignore ae63721e69 Update docker file to support go modules build. il y a 4 ans
.gitattributes 8e161e8054 Make it Linguist friendly il y a 8 ans
.gitignore 79a7a4eef8 Add caching il y a 6 ans
.travis.yml 3f89ea6787 Added example into initial-slides.md and skip folders from stash view to prevent errors / creation of images.md file to improve #23 :) il y a 6 ans
Dockerfile fe1908d154 Download mod. il y a 4 ans
LICENSE 137c2b23c7 LICENSE il y a 8 ans
Makefile ae63721e69 Update docker file to support go modules build. il y a 4 ans
Readme.md 14d9757ee6 Update Readme.md il y a 4 ans
app_test.go f6dc3a04e3 Test for redirect il y a 6 ans
go.mod 47def658f5 Update deps. il y a 4 ans
go.sum 47def658f5 Update deps. il y a 4 ans
initial-slides.md 3f89ea6787 Added example into initial-slides.md and skip folders from stash view to prevent errors / creation of images.md file to improve #23 :) il y a 6 ans
main.go 9857e3d452 Switch to go modules. il y a 4 ans
package.json 74e9462530 Update deps il y a 6 ans
yarn.lock 74e9462530 Update deps il y a 6 ans

Readme.md

Hacker Slides

MIT licensed Build Status Open Source Helpers

Hacker Slides is a self hosted reveal.js presentations editor form markdown files.

Features:

  • Reach ui editor
  • Markdown markup
  • Live reload
  • Color schemes
  • Pdf print
  • Demo version
  • Tiny 10 Mb docker image
  • Optional Basic auth
Edit mode Published
1st 1st
2nd 2nd

This repo is a reworked version of Sandstorm Hacker Slides which features easy set up run outside of Sandstorm and without vagrant-spk. Likewise you can publish and edit your previous markdown slides which is not supported in the original version.

Run from docker image

docker run -it -p 8080:8080 -v $(pwd)/slides:/app/slides msoedov/hacker-slides

Build locally

To build and run it locally

go get
go run main.go

[GIN-debug] Listening and serving HTTP on :8080

And then you can just open http://127.0.0.1:8080 and it's ready to use with sample slides.

Run with docker

docker run -it -p 8080:8080 -v $(pwd)/slides:/app/slides msoedov/hacker-slides

Protect slides with password

Basic auth (disabled by default)

USER=bob PASSWORD=password1 go run main.go
[GIN-debug] [WARNING] Running in "debug" mode. Switch to "release" mode in production.
 - using env:	export GIN_MODE=release
 - using code:	gin.SetMode(gin.ReleaseMode)

WARN[0000] Auth mode enabled
WARN[0000] Visit http://bob:password1@0.0.0.0:8080
docker run -it -p 8080:8080 -e USER=bob -e PASSWORD=password1 -v $(pwd)/slides:/app/slides msoedov/hacker-slides

Use local images

Store pictures you want to use in the images subfolder, slides/images/ and reference them in the editor as Markdown:

![demoPicture](/images/demo.png)

or as HTML:

<img src="/images/demo.png">

Getting Help

For feature requests and bug reports submit an issue to the GitHub issue tracker