This repository has been archived by the owner on Sep 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Keynote & slides from Meetup 88 - 90 and Code Clinic 6.
- Loading branch information
1 parent
85f12a2
commit e1cee71
Showing
240 changed files
with
9,215 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
source 'http://rubygems.org' | ||
gem 'http' | ||
gem 'reel' | ||
gem 'shotgun' | ||
gem 'sinatra' | ||
gem 'webrick' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
GEM | ||
remote: http://rubygems.org/ | ||
specs: | ||
addressable (2.8.0) | ||
public_suffix (>= 2.0.2, < 5.0) | ||
celluloid (0.18.0) | ||
timers (~> 4) | ||
celluloid-io (0.17.3) | ||
celluloid (>= 0.17.2) | ||
nio4r (>= 1.1) | ||
timers (>= 4.1.1) | ||
domain_name (0.5.20190701) | ||
unf (>= 0.0.5, < 1.0.0) | ||
ffi (1.15.4) | ||
ffi-compiler (1.0.1) | ||
ffi (>= 1.0.0) | ||
rake | ||
http (5.0.4) | ||
addressable (~> 2.8) | ||
http-cookie (~> 1.0) | ||
http-form_data (~> 2.2) | ||
llhttp-ffi (~> 0.4.0) | ||
http-cookie (1.0.4) | ||
domain_name (~> 0.5) | ||
http-form_data (2.3.0) | ||
http_parser.rb (0.8.0) | ||
llhttp-ffi (0.4.0) | ||
ffi-compiler (~> 1.0) | ||
rake (~> 13.0) | ||
mustermann (1.1.1) | ||
ruby2_keywords (~> 0.0.1) | ||
nio4r (2.5.8) | ||
public_suffix (4.0.6) | ||
rack (2.2.3) | ||
rack-protection (2.1.0) | ||
rack | ||
rake (13.0.6) | ||
reel (0.6.1) | ||
celluloid (>= 0.15.1) | ||
celluloid-io (>= 0.15.0) | ||
http (>= 0.6.0.pre) | ||
http_parser.rb (>= 0.6.0) | ||
websocket-driver (>= 0.5.1) | ||
ruby2_keywords (0.0.5) | ||
shotgun (0.9.2) | ||
rack (>= 1.0) | ||
sinatra (2.1.0) | ||
mustermann (~> 1.0) | ||
rack (~> 2.2) | ||
rack-protection (= 2.1.0) | ||
tilt (~> 2.0) | ||
tilt (2.0.10) | ||
timers (4.3.3) | ||
unf (0.1.4) | ||
unf_ext | ||
unf_ext (0.0.8) | ||
webrick (1.7.0) | ||
websocket-driver (0.7.5) | ||
websocket-extensions (>= 0.1.0) | ||
websocket-extensions (0.1.5) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
http | ||
reel | ||
shotgun | ||
sinatra | ||
webrick | ||
|
||
BUNDLED WITH | ||
2.2.33 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Date & Location | ||
--------------- | ||
Online @ Youtube. | ||
|
||
How to run this | ||
--------------- | ||
```bash | ||
$ bundle | ||
$ ruby app.rb | ||
``` | ||
|
||
Collaborations | ||
-------------- | ||
Please feel free to send pull requests if you want to add something. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
require 'sinatra' | ||
|
||
get '/' do | ||
erb :index | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
require './app' | ||
run Sinatra::Application |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,176 @@ | ||
/* Default Print Stylesheet Template | ||
by Rob Glazebrook of CSSnewbie.com | ||
Last Updated: June 4, 2008 | ||
Feel free (nay, compelled) to edit, append, and | ||
manipulate this file as you see fit. */ | ||
|
||
|
||
/* SECTION 1: Set default width, margin, float, and | ||
background. This prevents elements from extending | ||
beyond the edge of the printed page, and prevents | ||
unnecessary background images from printing */ | ||
body { | ||
background: #fff; | ||
font-size: 13pt; | ||
width: auto; | ||
height: auto; | ||
border: 0; | ||
margin: 0 5%; | ||
padding: 0; | ||
float: none !important; | ||
overflow: visible; | ||
} | ||
html { | ||
background: #fff; | ||
width: auto; | ||
height: auto; | ||
overflow: visible; | ||
} | ||
|
||
/* SECTION 2: Remove any elements not needed in print. | ||
This would include navigation, ads, sidebars, etc. */ | ||
.nestedarrow, | ||
.controls, | ||
.reveal .progress, | ||
.reveal.overview, | ||
.fork-reveal, | ||
.share-reveal, | ||
.state-background { | ||
display: none !important; | ||
} | ||
|
||
/* SECTION 3: Set body font face, size, and color. | ||
Consider using a serif font for readability. */ | ||
body, p, td, li, div, a { | ||
font-size: 16pt!important; | ||
font-family: Georgia, "Times New Roman", Times, serif !important; | ||
color: #000; | ||
} | ||
|
||
/* SECTION 4: Set heading font face, sizes, and color. | ||
Diffrentiate your headings from your body text. | ||
Perhaps use a large sans-serif for distinction. */ | ||
h1,h2,h3,h4,h5,h6 { | ||
color: #000!important; | ||
height: auto; | ||
line-height: normal; | ||
font-family: Georgia, "Times New Roman", Times, serif !important; | ||
text-shadow: 0 0 0 #000 !important; | ||
text-align: left; | ||
letter-spacing: normal; | ||
} | ||
/* Need to reduce the size of the fonts for printing */ | ||
h1 { font-size: 26pt !important; } | ||
h2 { font-size: 22pt !important; } | ||
h3 { font-size: 20pt !important; } | ||
h4 { font-size: 20pt !important; font-variant: small-caps; } | ||
h5 { font-size: 19pt !important; } | ||
h6 { font-size: 18pt !important; font-style: italic; } | ||
|
||
/* SECTION 5: Make hyperlinks more usable. | ||
Ensure links are underlined, and consider appending | ||
the URL to the end of the link for usability. */ | ||
a:link, | ||
a:visited { | ||
color: #000 !important; | ||
font-weight: bold; | ||
text-decoration: underline; | ||
} | ||
/* | ||
.reveal a:link:after, | ||
.reveal a:visited:after { | ||
content: " (" attr(href) ") "; | ||
color: #222 !important; | ||
font-size: 90%; | ||
} | ||
*/ | ||
|
||
|
||
/* SECTION 6: more reveal.js specific additions by @skypanther */ | ||
ul, ol, div, p { | ||
visibility: visible; | ||
position: static; | ||
width: auto; | ||
height: auto; | ||
display: block; | ||
overflow: visible; | ||
margin: auto; | ||
text-align: left !important; | ||
} | ||
.reveal .slides { | ||
position: static; | ||
width: auto; | ||
height: auto; | ||
|
||
left: auto; | ||
top: auto; | ||
margin-left: auto; | ||
margin-top: auto; | ||
padding: auto; | ||
|
||
overflow: visible; | ||
display: block; | ||
|
||
text-align: center; | ||
-webkit-perspective: none; | ||
-moz-perspective: none; | ||
-ms-perspective: none; | ||
perspective: none; | ||
|
||
-webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */ | ||
-moz-perspective-origin: 50% 50%; | ||
-ms-perspective-origin: 50% 50%; | ||
perspective-origin: 50% 50%; | ||
} | ||
.reveal .slides>section, | ||
.reveal .slides>section>section { | ||
|
||
visibility: visible !important; | ||
position: static !important; | ||
width: 90% !important; | ||
height: auto !important; | ||
display: block !important; | ||
overflow: visible !important; | ||
|
||
left: 0% !important; | ||
top: 0% !important; | ||
margin-left: 0px !important; | ||
margin-top: 0px !important; | ||
padding: 20px 0px !important; | ||
|
||
opacity: 1 !important; | ||
|
||
-webkit-transform-style: flat !important; | ||
-moz-transform-style: flat !important; | ||
-ms-transform-style: flat !important; | ||
transform-style: flat !important; | ||
|
||
-webkit-transform: none !important; | ||
-moz-transform: none !important; | ||
-ms-transform: none !important; | ||
transform: none !important; | ||
} | ||
.reveal section { | ||
page-break-after: always !important; | ||
display: block !important; | ||
} | ||
.reveal section .fragment { | ||
opacity: 1 !important; | ||
visibility: visible !important; | ||
|
||
-webkit-transform: none !important; | ||
-moz-transform: none !important; | ||
-ms-transform: none !important; | ||
transform: none !important; | ||
} | ||
.reveal section:last-of-type { | ||
page-break-after: avoid !important; | ||
} | ||
.reveal section img { | ||
display: block; | ||
margin: 15px 0px; | ||
background: rgba(255,255,255,1); | ||
border: 1px solid #666; | ||
box-shadow: none; | ||
} |
Oops, something went wrong.