forked from tcmacdonald/intro-to-git
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kevin Jones-Evans
committed
Jun 30, 2018
1 parent
f59a89d
commit a27336e
Showing
9 changed files
with
107 additions
and
12 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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,35 @@ | ||
<html> | ||
<head> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
<title></title> | ||
<link rel="stylesheet" href="css/reveal.css" /> | ||
<link rel="stylesheet" href="css/gdilight.css" /> | ||
<link rel="stylesheet" href="css/zenburn.css" /> | ||
<link rel="stylesheet" href="stylesheets/app.css" /> | ||
</head> | ||
<body> | ||
|
||
<div class="reveal"><div class="slides"><section data-markdown="intro-slides.md" data-separator="^---" data-separator-notes="^Note:"></section></div></div> | ||
|
||
<script src="//code.jquery.com/jquery-2.1.3.min.js"></script> | ||
<script src="//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.1.0/lib/js/head.min.js"></script> | ||
<script src="//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.1.0/js/reveal.js"></script> | ||
<script type="text/javascript" charset="utf-8"> | ||
Reveal.initialize({ | ||
history: true, | ||
center: true, | ||
progress: true, | ||
dependencies: [ | ||
// Cross-browser shim that fully implements classList - https://github.com/eligrey/classList.js/ | ||
{ src: '//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.1.0/lib/js/classList.js', condition: function() { return !document.body.classList; } }, | ||
// Interpret Markdown in <section> elements | ||
{ src: '//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.1.0/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, | ||
{ src: '//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.1.0/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, | ||
// Syntax highlight for <code> elements | ||
{ src: '//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.1.0/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } } | ||
] | ||
}); | ||
|
||
</script> | ||
</body> | ||
</html> |
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,53 @@ | ||
 <!-- .element: class="no-border" --> | ||
|
||
#### Network: WBI 2nd Street | ||
#### Password: 2ndStreet | ||
#### Slides: [http://bit.ly/gdi-dayton-intro-to-git](http://bit.ly/gdi-dayton-intro-to-git) | ||
|
||
While you wait for class to begin, get on the wifi, bring up the slides and go through the prerequistes for class. | ||
|
||
--- | ||
 <!-- .element: class="no-border" --> | ||
## Introduction to Command Line, Git & GitHub</h3> | ||
Brought to you by [Girl Develop It Dayton](www.gdidayton.com) | ||
|
||
[@GDIDayton](http://www.twitter.com/gdidayton) | ||
|
||
Presented by [Kevin Jones-Evans](http://www.twitter.com/kevinjonesevans) | ||
|
||
Teaching assistants are Ren & K.C. | ||
|
||
--- | ||
### Welcome! | ||
Girl Develop It is here to provide affordable and accessible programs to learn software through mentorship and hands on instruction. | ||
#### Some "rules" | ||
|
||
* We are here for you! | ||
* Every question is important | ||
* Help each other | ||
* Have fun | ||
|
||
--- | ||
## Thanks to our location sponsor: | ||
|
||
 | ||
|
||
--- | ||
## Thanks to our snacks sponsor: | ||
|
||
<img src="images/mile_two.png" height="600px"> | ||
|
||
|
||
--- | ||
## A few quick announcements | ||
* WiFi Network is WBI 2nd Street the password is 2ndStreet | ||
* Restrooms are down the hall and to the left | ||
* Please be respectful! | ||
--- | ||
### Introductions | ||
* Who are you? | ||
* What do you hope to get out of the class? | ||
* What is your favorite fall beverage? | ||
--- | ||
|
||
# Alright let's get started! |
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
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 |
---|---|---|
|
@@ -34,3 +34,8 @@ | |
.reveal .slides{ | ||
top: 0; | ||
} | ||
.reveal section img{ | ||
background: none; | ||
border: none; | ||
box-shadow: none; | ||
} |