├── .gitignore ├── LICENSE ├── README.md ├── _assets └── screen1.png ├── assets ├── go-img │ ├── engine-gopher.jpg │ └── sitting_gopher.svg └── whygo │ └── emojis.png ├── dir.go ├── doc.go ├── go.mod ├── go.sum ├── main.go ├── play.go ├── slides ├── README.md ├── _samplesrc │ ├── hello.go │ └── trash.go ├── _whygosrc │ ├── concurrent.go │ ├── helloworld.go │ └── marshal.go ├── sample.slide ├── whygo.slide └── whygo_es.slide ├── static ├── article.css ├── dir.css ├── dir.js ├── favicon.ico ├── jquery-ui.js ├── notes.css ├── notes.js ├── prism-github-dark.css ├── prism.css ├── prism.js ├── slides.js └── styles.css └── templates ├── action.tmpl ├── article.tmpl ├── dir.tmpl └── slides.tmpl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/README.md -------------------------------------------------------------------------------- /_assets/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/_assets/screen1.png -------------------------------------------------------------------------------- /assets/go-img/engine-gopher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/assets/go-img/engine-gopher.jpg -------------------------------------------------------------------------------- /assets/go-img/sitting_gopher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/assets/go-img/sitting_gopher.svg -------------------------------------------------------------------------------- /assets/whygo/emojis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/assets/whygo/emojis.png -------------------------------------------------------------------------------- /dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/dir.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/doc.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/main.go -------------------------------------------------------------------------------- /play.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/play.go -------------------------------------------------------------------------------- /slides/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/slides/README.md -------------------------------------------------------------------------------- /slides/_samplesrc/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/slides/_samplesrc/hello.go -------------------------------------------------------------------------------- /slides/_samplesrc/trash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/slides/_samplesrc/trash.go -------------------------------------------------------------------------------- /slides/_whygosrc/concurrent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/slides/_whygosrc/concurrent.go -------------------------------------------------------------------------------- /slides/_whygosrc/helloworld.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/slides/_whygosrc/helloworld.go -------------------------------------------------------------------------------- /slides/_whygosrc/marshal.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /slides/sample.slide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/slides/sample.slide -------------------------------------------------------------------------------- /slides/whygo.slide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/slides/whygo.slide -------------------------------------------------------------------------------- /slides/whygo_es.slide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/slides/whygo_es.slide -------------------------------------------------------------------------------- /static/article.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/static/article.css -------------------------------------------------------------------------------- /static/dir.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/static/dir.css -------------------------------------------------------------------------------- /static/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/static/dir.js -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/static/jquery-ui.js -------------------------------------------------------------------------------- /static/notes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/static/notes.css -------------------------------------------------------------------------------- /static/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/static/notes.js -------------------------------------------------------------------------------- /static/prism-github-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/static/prism-github-dark.css -------------------------------------------------------------------------------- /static/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/static/prism.css -------------------------------------------------------------------------------- /static/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/static/prism.js -------------------------------------------------------------------------------- /static/slides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/static/slides.js -------------------------------------------------------------------------------- /static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/static/styles.css -------------------------------------------------------------------------------- /templates/action.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/templates/action.tmpl -------------------------------------------------------------------------------- /templates/article.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/templates/article.tmpl -------------------------------------------------------------------------------- /templates/dir.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/templates/dir.tmpl -------------------------------------------------------------------------------- /templates/slides.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soypat/go-presentx/HEAD/templates/slides.tmpl --------------------------------------------------------------------------------