Skip to content

Commit a097f21

Browse files
author
Dan Roberts
committedMar 3, 2020
Copy assets from HTML/CSS workshop, and change the title
0 parents  commit a097f21

10 files changed

+313
-0
lines changed
 

‎PITCHME.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
@snap[midpoint span-100]
2+
# Intro to Ruby
3+
4+
### Pre-Ada Workshop
5+
@snapend
6+
7+
---?include=decks/intro.md
8+
9+
---?include=decks/conclusion.md

‎PITCHME.yaml

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# Adapted from:
2+
# GitPitch In-60-Seconds - A Very Short Tutorial.
3+
# https://github.com/gitpitch/in-60-seconds
4+
#
5+
6+
#
7+
# Theme Template
8+
# Doc: https://gitpitch.com/docs/themes/default
9+
#
10+
11+
# Ada palette: https://drive.google.com/file/d/1V-WVd9LMHrPlJzSK55he8GqytENIpmvG/view
12+
theme : template
13+
14+
theme-background : [ "#ffffff" ]
15+
theme-headline : [ "Montserrat", "#E61E5F", "none", "#EF654A", "90", "120", "15" ]
16+
theme-byline : [ "Open Sans", "#12A3C2", "none", "#EF654A", "90", "110", "15" ]
17+
theme-text : [ "Open Sans", "#17385E", "none", "#12A3C2", "90", "120", "15" ]
18+
theme-links : [ "#EF654A", "#E61E5F" ]
19+
theme-code : [ "Source Code Pro", "100", "120" ]
20+
theme-controls : [ "#C0C0C0" ]
21+
theme-margins : [ "0", "15px" ]
22+
23+
#
24+
# Highlight Setting
25+
# Doc: https://gitpitch.com/docs/settings/highlight
26+
#
27+
highlight : tomorrow
28+
29+
#
30+
# Theme-Override Setting
31+
# Doc: https://gitpitch.com/docs/settings/custom-theme
32+
#
33+
theme-override: assets/css/PITCHME.css
34+
35+
#
36+
# Logo Setting
37+
# https://gitpitch.com/docs/settings/logo
38+
#
39+
logo : assets/images/logo.png
40+
logo-position : top-right
41+
42+
#
43+
# Layout Setting
44+
# Doc: https://gitpitch.com/docs/settings/layout
45+
#
46+
layout : top-left
47+
48+
#
49+
# Footnote Setting
50+
# Doc: https://gitpitch.com/docs/settings/footnote
51+
#
52+
footnote : "Pre-Ada Workshop: Intro to Ruby - March 2020"
53+
footnote-position : bottom-right
54+

‎README.md

Whitespace-only changes.

‎assets/css/PITCHME.css

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.reveal .slides section>ul, .reveal .slides section>ol {
2+
margin-left: 1em;
3+
}
4+
5+
.reveal .slides {
6+
margin-top: 4vh;
7+
}
8+
9+
.reveal .slides[style] {
10+
/* width: 92vw !important; */
11+
}
12+
13+
.reveal .slides .small {
14+
font-size: 0.8em;
15+
}
16+
17+
.reveal .slides .big {
18+
font-size: 1.3em;
19+
}
20+
21+
.reveal .slides .indent {
22+
margin-left: 1rem;
23+
}

‎assets/images/Blooms-Taxonomy.jpg

142 KB
Loading

‎assets/images/dan-flowers.png

844 KB
Loading

‎assets/images/logo.png

9.27 KB
Loading

‎decks/conclusion.md

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
@snap[midpoint span-100]
2+
3+
# Conclusion
4+
5+
@snapend
6+
7+
---
8+
9+
## Credit Where It's Due
10+
11+
### Huge THANK YOU to...
12+
13+
<br>
14+
15+
**Jane Park**, for all the behind the scenes work
16+
17+
<br>
18+
19+
**Our wonderful volunteers**, for showing up on a Saturday
20+
21+
---
22+
23+
## Thank You For Coming!
24+
25+
I hope that you...
26+
27+
<ul class="small">
28+
<li>Learned something about **web development**</li>
29+
<li>Learned something about **how Ada operates**</li>
30+
<li>Feel **empowered** and **motivated** to practice on your own</li>
31+
<li>**Enjoyed yourself**</li>
32+
</ul>
33+
34+
<br>
35+
36+
**You have a survey in your email** - please fill it out!
37+
38+
<span class="small">Your feedback is super important, and we take it seriously. We also are here to learn.</span>
39+
40+
My email is [dan@adadev.org]()
41+
42+
---
43+
44+
## Next Steps
45+
46+
Practice, practice, practice!
47+
48+
Practice with **intent**
49+
50+
<div class="indent"><p>**_"Today I want to get better at reading error messages"_**</p></div>
51+
52+
Get someone's contact info, meet up to work together
53+
54+
Application opens **March 9** (Monday)

‎decks/intro.md

+163
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
@snap[midpoint span-100]
2+
3+
# Introduction
4+
5+
@snapend
6+
7+
---
8+
9+
## Objectives
10+
11+
- Boost your **technical skills** and help your Ada application
12+
13+
- Introduce **Ada's approach** to education
14+
15+
- **Get excited!**
16+
17+
---
18+
19+
## Technical Skills
20+
21+
@snap[midpoint span-100]
22+
<br>
23+
24+
![height=400px](assets/images/Blooms-Taxonomy.jpg)
25+
26+
We'll be focusing on the bottom two layers
27+
@snapend
28+
29+
---
30+
31+
## Technical Skills
32+
33+
- Basic HTML and CSS
34+
35+
- Vocabulary
36+
37+
- Setup / "yak-shaving"
38+
39+
- Debugging
40+
41+
- Googling
42+
43+
- Connections to working in Ruby
44+
45+
---
46+
47+
48+
## Ada's Approach
49+
50+
- Learning to learn
51+
52+
<span class="indent">**_"I don't know, but I know how to find out"_**</span>
53+
54+
- Positive, collaborative, safe, and inclusive
55+
56+
- Focused on concrete, applicable skills
57+
58+
- Student-centered
59+
60+
---
61+
62+
## A Word to the Wise
63+
64+
There is no evaluation
65+
66+
This workshop is not part of your application
67+
68+
I will not report back to the admissions team
69+
70+
Relax, be yourself, learn something
71+
72+
---
73+
74+
## Ground Rules
75+
76+
- Respect each other
77+
78+
- Step up / step back
79+
80+
- Speak up if you need something
81+
82+
- If you need to step out, please do
83+
84+
---
85+
86+
## Format
87+
88+
9:00 - 12:30
89+
90+
40 minutes of activity, 10 minute break
91+
92+
Agenda is a guideline, only hard rule is we'll be done by 12:30
93+
94+
---
95+
96+
## Agenda
97+
98+
@snap[west span-50]
99+
100+
<span style="color: #EF654A">9:00 - Intro</span>
101+
102+
9:20 - HTML Setup
103+
104+
9:40 - **Break**
105+
106+
9:50 - Tags and Attributes
107+
108+
10:30 - **Break**
109+
110+
@snapend
111+
112+
@snap[east span-50 text-left]
113+
114+
10:40 - CSS
115+
116+
11:20 - Practice
117+
118+
12:00 - Practice Wrap-up
119+
120+
12:10 - Deployment
121+
122+
12:30 - **Done!**
123+
124+
@snapend
125+
126+
---
127+
128+
## Who am I?
129+
130+
@snap[west span-65]
131+
132+
- Dan Roberts, he/him
133+
- [dan@adadev.org](mailto:dan@adadev.org)
134+
- Started at Ada with C6 in 2016, have worn many hats
135+
- Background in operating systems and networking
136+
- Musician - trombone, sousaphone, keyboard
137+
@snapend
138+
139+
@snap[east span-35]
140+
![dan profile](assets/images/dan-flowers.png)
141+
@snapend
142+
143+
---
144+
145+
## Who are You?
146+
147+
- Name, pronouns
148+
149+
- Where you're from
150+
151+
- Something you love that has nothing to do with computers
152+
153+
---
154+
155+
## Our Volunteers
156+
157+
- Name, pronouns
158+
159+
- Cohort
160+
161+
- Where you're from
162+
163+
- Something you love that has nothing to do with computers

‎docker-compose.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: '3'
2+
services:
3+
gitpitch:
4+
image: gitpitch/desktop:pro
5+
volumes:
6+
- .:/repo:cached
7+
ports:
8+
- "9000:9000"
9+
environment:
10+
- PORT=9000

0 commit comments

Comments
 (0)
Please sign in to comment.