Skip to content

Commit

Permalink
finish clementine challenge for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Quincy Larson committed Oct 26, 2015
1 parent b3c5891 commit dc26195
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
14 changes: 7 additions & 7 deletions seed/challenges/basejumps.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
[
"http://i.imgur.com/4IZjWZ3.gif",
"A gif showing how to create a c9.io account.",
"We recommend building our full stack Basejump challenges on c9.io, a powerful browser-based development environment. This save you hours of time that you would spend configuring your local computer to run Node.js and MongoDB - time you could instead spend coding. Create a c9.io account bu clicking the GitHub symbol in the upper right hand corner of the c9.io page. Click the big plus symbol to create a new workspace. Enter your email address when prompted.",
"We recommend building our full stack Basejump challenges on c9.io, a powerful browser-based development environment. This save you hours of time that you would spend configuring your local computer to run Node.js and MongoDB - time you could instead spend coding. <br>Create a c9.io account bu clicking the GitHub symbol in the upper right hand corner of the c9.io page. Click the big plus symbol to create a new workspace. Enter your email address when prompted.",
"http://c9.io"
],
[
Expand Down Expand Up @@ -75,16 +75,16 @@
""
],
[
"http://i.imgur.com/hA2MCee.gif",
"A gif showing you how to use Clementine.js's simple demo app.",
"http://i.imgur.com/2IJfyvN.gif",
"A gif showing you how to click the button to trigger an AJAX action with Clementine.js and how to look at your user profile from the GitHub authentication data.",
"Click the \"click me\" button and you'll see that it increments the number clicks. Click the profile button and you'll see that it has your GitHub information.",
""
],
[
"http://i.imgur.com/Q8IfdQj.gif",
"A gif showing you how to create a commit on c9.io, then create a GitHub repository and push your code up to it.",
"Create a commit by typing <code>git add . && git commit -m\"first commit\"</code>. Then open GitHub in a new tab and click \"New repository\". Name your repository, then click \"Create repository\". Then copy its .git URL. Return to c9.io's terminal and set your GitHub remote URL: <code>git remote set-url origin</code> followed by the URL you copied from GitHub. Run <code>git push origin master</code>. Now tab back to GitHub and refresh, and you'll see that your code is now on GitHub.",
""
"http://i.imgur.com/bjO5pnq.gif",
"A gif showing you how to create a new GitHub repository and push your code up to it.",
"Create a new GitHub repository. Then copy its .git URL. <br>Return to c9.io's terminal and set your GitHub remote URL: <code>git remote set-url origin</code> followed by the URL you copied from GitHub. <br>Run <code>git push origin master</code>. <br>Now tab back to GitHub and refresh, and you'll see that your code is now on GitHub.",
"https://github.com/new"
]
],
"type": "Waypoint",
Expand Down
3 changes: 2 additions & 1 deletion server/views/coursewares/showStep.jade
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ block content
.col-md-8.col-md-offset-2
for step, index in description
.thumbnail.challenge-step(class=index !== 0 ? 'hidden': '')
img.gif-block.img-center.img-responsive.thumbnail(src='#{step[0]}' alt='#{step[1]}')
a(href=step[0] data-lightbox='img-enlarge')
img.gif-block.img-center.img-responsive.thumbnail(src='#{step[0]}' alt='#{step[1]}')
.caption
p.large-p!= step[2]
if step[3]
Expand Down

0 comments on commit dc26195

Please sign in to comment.