-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
288 lines (257 loc) · 10.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Intro to Hackathon Tech and Tools</title>
<meta name="description" content="A presentation for the 2016 ATX Hack for Change">
<meta name="author" content="Mateo Clarke">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/white.css" id="theme">
<link rel="stylesheet" href="css/styles.css">
<!-- Code syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<a href="http://atxhackforchange.org"><img src="https://raw.githubusercontent.com/atxhack4change/2016-project-proposals/master/atx-hack-for-change.png" alt="ATX Hack for Change logo"></a>
<h1>Intro to Hackathon Tech and Tools</h1>
<p>
<a href="http://twitter.com/mateoclarke">@mateoclarke</a>
<br>
<small>
<span>Brigade Captain for <a href="http://open-austin.org">Open Austin</a></span>
</small>
</p>
</section>
<section>
<section>
<img src="img/oa.png" alt="Open Austin" width="50%">
<br>
<img src="img/brigade.png" alt="Code for America" width="25%">
</section>
<section>
<img src="img/codeacross.jpg" alt="Code Across Event">
<p>Check <a href="http://open-austin.org">open-austin.org</a> for upcoming events</p>
</section>
</section>
<section>
<section>
<img src="img/slack.gif" alt="Slack logo">
</section>
<section>
<ul>
<li>You will get an <b>invite via email</b></li>
<li>Each project team will have its own channel (ex: #bill-tracker)</li>
<li>Join as many channels as you want</li>
<li><b>#general</b> to make announcements</li>
<li><b>#skillz</b> to ask for help</li>
</ul>
</section>
</section>
<section>
<section>
<img src="img/github.png" alt="Github logo">
</section>
<section>
<h2><a href="http://github.com/atxhack4change">ATX Hack for Change Github</a></h2>
<img src="img/atxh4c-github.png" alt="atxhackforchange github screenshot">
</section>
<section>
<h2>Write a README</h2>
<ul>
<li>Explain the <b>purpose</b> of the project</li>
<li>Give <b>instructions</b> on how to get started</li>
<li>Acknowledge <b>contributors</b></li>
</ul>
<p><a href="https://github.com/bill-tracker/bill-tracker">Billtracker example</a></p>
</section>
<section>
<h2>Markdown Resources</h2>
<ul>
<li><a href="https://guides.github.com/features/mastering-markdown/">Github's Markdown Tutorial</a></li>
<li><a href="http://macdown.uranusjr.com/">MacDown for Mac</a></li>
<li><a href="http://markdownpad.com/">MarkdownPad for Windows</a></li>
</ul>
</section>
<section>
<h2>Github Issues</h2>
<ul>
<li>Make bite-sized, self-contained <b>tasks</b></li>
<li><b>Assign</b> issues to team members</li>
<li>Create your own <b>labels</b></li>
<li><b>Close</b> issues as you complete</li>
</ul>
<p><a href="https://github.com/bill-tracker/bill-tracker/issues">Billtracker example</a></p>
</section>
<section>
<h2>Waffle.io</h2>
<img src="img/waffle.png" alt="Waffle.io screengrab">
</section>
</section>
<section>
<section>
<h2>The Web Stack</h2>
<p>the chosen development environment of software and tools for any given project.</p>
</section>
<section>
<h2>A Simplified Web Stack</h2>
<ul>
<li class="fragment">Presentation</li>
<li class="fragment">Application/Logic</li>
<li class="fragment">Database</li>
</ul>
</section>
<section>
<img src="img/webstack.png" alt="Common Web Architecture">
</section>
<section>
<h2>The Presentation Layer</h3>
<p>The core technologies of the web browser.</p>
<img class="img-row-3 fragment" src="img/html5.png" alt="HTML5 Logo">
<img class="img-row-3 fragment" src="img/css.png" alt="CSS3 Logo">
<img class="img-row-3 fragment" src="img/js.png" alt="Javascript Logo">
</section>
<section>
<h2>The Presentation Layer</h2>
<p>Other jargon you may hear this weekend.</p>
<img class="img-row-2 fragment" src="img/bootstrap.png" alt="Bootstrap Logo">
<img class="img-row-2 fragment" src="img/jquery.svg" alt="jQuery Logo">
<img class="img-row-2 fragment" src="img/sass.png" alt="Sass Logo">
<img class="img-row-2 fragment" src="img/coffeescript.png" alt="Coffeescript Logo">
</section>
<section>
<h2>The Logic Layer</h2>
<p>Web Languages & Frameworks</p>
<img class="img-row-4 fragment" src="img/ruby.png" alt="Ruby Logo">
<img class="img-row-4 fragment" src="img/python.png" alt="Python Logo">
<img class="img-row-4 fragment" src="img/php.png" alt="PHP Logo">
<img class="img-row-4 fragment" src="img/js.png" alt="Javascript Logo">
<img class="img-row-4 fragment" src="img/rails.png" alt="Rails Logo">
<img class="img-row-4 fragment" src="img/django.png" alt="Django Logo">
<img class="img-row-4 fragment" src="img/laravel.jpg" alt="Laravel Logo">
<img class="img-row-4 fragment" src="img/nodejs.png" alt="Node Logo">
</section>
<section>
<h2>The Logic Layer</h2>
<p>Native Languages & Client-side Frameworks</p>
<img class="img-row-2 fragment" src="img/swift.jpg" alt="Swift Logo">
<img class="img-row-2 fragment" src="img/java.jpg" alt="Java Logo">
<img class="img-row-2 fragment" src="img/angular.png" alt="Angular Logo">
<img class="img-row-2 fragment" src="img/react.jpg" alt="React Logo">
</section>
<section>
<img src="img/language-breakdown.jpg" alt="Apple Presentation Slide">
</section>
<section>
<h2>The Data Layer</h2>
<p>SQL (Standard Query Language) vs. NoSQL (Not Only...)</p>
<img class="img-row-2 fragment" src="img/mysql.png" alt="MySQL Logo">
<img class="img-row-2 fragment" src="img/PostgreSQL.gif" alt="Postgres Logo">
<img class="img-row-2 fragment" src="img/redis.png" alt="Redis Logo">
<img class="img-row-2 fragment" src="img/mongodb.jpeg" alt="MongoDB Logo">
</section>
<section>
<img src="img/nosql.png" alt="Database comparison">
</section>
<section>
<img src="img/webstack.png" alt="Common Web Architecture">
</section>
<section data-background="img/disney-bored.gif"></section>
<section data-background="img/office-bored.gif"></section>
<section data-background="img/mind-blown.gif"></section>
</section>
<section>
<section>
<h2>Time to play with what we've learned.</h2>
<h3>Let's hack <a href="http://www.texastribune.org/">the news</a></h3>
</section>
<section>
<h2>Image Hacking</h2>
<pre><code data-trim contenteditable>
// This is some js code...
var coolPic = "http://bit.ly/1ys7Hm8";
var boringPics = $(".media img");
boringPics.on("hover", function(){
$(this).attr("src", coolPic);
});
</pre></code>
<h3>The code explained:</h3>
<small><ul>
<li>Let's find a cool picture on the internetz and call it "coolPic".</li>
<li>Then we'll find all pictures("img") inside "div"s with the class "media".</li>
<li>Now, when a boring picture gets hovered on...</li>
<li>...change this picture's source attribute(the url of the image) to our cool new picture.</li>
</ul></small>
</section>
<section>
<h2>All Browsers come with their own version of a Developer Console.</h2>
<ul>
<li>Chrome Developer Tools</li>
<li>Mozilla Firebug</li>
</ul>
</section>
</section>
<section>
<h2>Your Homework</h2>
<ul>
<li><a href="https://github.com/atxhack4change/2016-project-proposals">Submit your Project Proposal</a></li>
<li>Create a <b>Github Repo</b></li>
<li>Write a <b>README.md</b> with info about the project</li>
<li>Add some <b>Issues</b> with actionable tasks</li>
<li>Log into <b>Slack</b> and start the conversation</li>
</ul>
</section>
<section>
<h2>Resources:</h2>
<ul>
<li><a href="http://www.open-austin.org/civic-tech-canvas/">Civic Tech Project Planning Canvas</a></li>
<li><a href="https://docs.google.com/presentation/d/1hyir0WdTuI9tBncADRWffmBX-qAmN89-dRmcP1_AUmI/edit?usp=sharing">Civic Hacking 101 Slides</a></li>
<li><a href="http://www.theodinproject.com/courses">The Odin Project</a></li>
<li><a href="http://curriculum.railsbridge.org/docs/">Rails Bridge</a></li>
<li><a href="http://www.git-tower.com/learn/git/ebook/mac/basics/basic-workflow">Git</a></li>
</ul>
</section>
<section data-background="img/end.gif"></section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
// Full list of configuration options available at:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// Optional reveal.js plugins
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/zoom-js/zoom.js', async: true },
{ src: 'plugin/notes/notes.js', async: true }
]
});
</script>
</body>
</html>