| @ -0,0 +1 @@ | |||||
| build | |||||
| @ -0,0 +1,16 @@ | |||||
| SED=`which gsed || which sed` | |||||
| build: clean | |||||
| @mkdir ./build | |||||
| @for file in ./slides/*; do cat $$file >> ./build/slides.md; echo '\r\n---\r\n' >> ./build/slides.md; done; | |||||
| @$(SED) -i -e :a -e '$$d;N;2,3ba' -e 'P;D' ./build/slides.md | |||||
| @cp ./template.html ./build/index.html | |||||
| @$(SED) -i -e "/{{slides}}/r ./build/slides.md" -e "//d" ./build/index.html | |||||
| clean: | |||||
| @rm -rf ./build | |||||
| run: | |||||
| @cd ./build && python -m SimpleHTTPServer | |||||
| .PHONY: build clean run | |||||
| @ -0,0 +1,6 @@ | |||||
| cURL Talk | |||||
| ================= | |||||
| A lightning talk about [cURL](http://curl.haxx.se/). | |||||
| https://brettlangdon.github.io/curl-talk. | |||||
| @ -0,0 +1,4 @@ | |||||
| class: center,middle | |||||
| # cURL | |||||
| ### [brettlangdon](http://brett.is) | [Shapeways](https://www.shapeways.com) | |||||
| @ -0,0 +1,36 @@ | |||||
| <!DOCTYPE html> | |||||
| <html> | |||||
| <head> | |||||
| <title>cURL Talk</title> | |||||
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | |||||
| <style type="text/css"> | |||||
| body{ | |||||
| font-size: 2em; | |||||
| } | |||||
| a,a:visited{ | |||||
| color: #F92672; | |||||
| text-decoration: none | |||||
| } | |||||
| a:hover{ | |||||
| color: #000; | |||||
| } | |||||
| .remark-code { | |||||
| border-radius: 6px; | |||||
| } | |||||
| </style> | |||||
| </head> | |||||
| <body> | |||||
| <textarea id="source"> | |||||
| {{slides}} | |||||
| </textarea> | |||||
| <script src="http://gnab.github.io/remark/downloads/remark-0.6.4.min.js" type="text/javascript"> | |||||
| </script> | |||||
| <script type="text/javascript"> | |||||
| var slideshow = remark.create({ | |||||
| highlightLanguage: "javascript", | |||||
| highlightInline: true, | |||||
| highlightStyle: "monokai" | |||||
| }); | |||||
| </script> | |||||
| </body> | |||||
| </html> | |||||