From 649a51bd75f90345be4b311dd59198962b890bc5 Mon Sep 17 00:00:00 2001 From: spinningtopsofdoom Date: Sun, 6 Mar 2016 18:23:59 -0600 Subject: [PATCH] Basic showofff presentation setup --- .ruby-version | 1 + Gemfile | 3 ++ Gemfile.lock | 54 ++++++++++++++++++++++++++++++++++++ PRESENTATION.md | 7 +++++ cljs_start/intro/01-title.md | 10 +++++++ showoff.json | 4 +++ stlye.css | 15 ++++++++++ 7 files changed, 94 insertions(+) create mode 100644 .ruby-version create mode 100644 Gemfile create mode 100644 Gemfile.lock create mode 100644 PRESENTATION.md create mode 100644 cljs_start/intro/01-title.md create mode 100644 showoff.json create mode 100644 stlye.css diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 0000000..276cbf9 --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +2.3.0 diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..376948e --- /dev/null +++ b/Gemfile @@ -0,0 +1,3 @@ +source 'https://rubygems.org' + +gem 'showoff' diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..2d0858a --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,54 @@ +GEM + remote: https://rubygems.org/ + specs: + addressable (2.4.0) + blankslate (3.1.3) + daemons (1.2.3) + em-websocket (0.3.8) + addressable (>= 2.1.1) + eventmachine (>= 0.12.9) + eventmachine (1.0.9.1) + gli (2.13.4) + htmlentities (4.3.4) + json (1.8.3) + mini_portile2 (2.0.0) + nokogiri (1.6.7.2) + mini_portile2 (~> 2.0.0.rc2) + parslet (1.7.1) + blankslate (>= 2.0, <= 4.0) + rack (1.6.4) + rack-protection (1.5.3) + rack + redcarpet (3.3.4) + showoff (0.11.2) + gli (>= 1.3.2) + htmlentities + json + nokogiri + parslet + redcarpet + sinatra (~> 1.3) + sinatra-websocket + thin (~> 1.3) + sinatra (1.4.7) + rack (~> 1.5) + rack-protection (~> 1.4) + tilt (>= 1.3, < 3) + sinatra-websocket (0.3.1) + em-websocket (~> 0.3.6) + eventmachine + thin (>= 1.3.1, < 2.0.0) + thin (1.6.4) + daemons (~> 1.0, >= 1.0.9) + eventmachine (~> 1.0, >= 1.0.4) + rack (~> 1.0) + tilt (2.0.2) + +PLATFORMS + ruby + +DEPENDENCIES + showoff + +BUNDLED WITH + 1.11.2 diff --git a/PRESENTATION.md b/PRESENTATION.md new file mode 100644 index 0000000..c990d7c --- /dev/null +++ b/PRESENTATION.md @@ -0,0 +1,7 @@ +# Presentation + +To start the presentation run +``` +bundle +showoff show +``` diff --git a/cljs_start/intro/01-title.md b/cljs_start/intro/01-title.md new file mode 100644 index 0000000..f7cd745 --- /dev/null +++ b/cljs_start/intro/01-title.md @@ -0,0 +1,10 @@ +!SLIDE + +#Barcalounger ClojureScript: Stylish and Comfortable ClojureScript Development +## by Peter Schuck +## @spinningtopsofdoom + +!SLIDE bullets incremental transition=fade + +- ClojureScript has always been leader in production ready JavaScript +- The development environment however... diff --git a/showoff.json b/showoff.json new file mode 100644 index 0000000..ffa7f88 --- /dev/null +++ b/showoff.json @@ -0,0 +1,4 @@ +{ "name": "Barcalounger ClojureScript: How to setup a stylish and comfortable ClojureScript development environment ", + "highlight": "solarized_dark", + "sections": [ + {"section":"cljs_start/intro"} ]} diff --git a/stlye.css b/stlye.css new file mode 100644 index 0000000..77dfce0 --- /dev/null +++ b/stlye.css @@ -0,0 +1,15 @@ +.gray { color: #999; } +body .smbullets > ul > li { list-style-type: none; margin-left: 0; } +body .smbullets.content > ul { padding-left: 0; } +strong { + background-color: gray; + color: white; + padding-left: 10px; + padding-right: 10px; +} +body .slide { + background: black; +} +body .content { + color: #DDD; +}