This file contains hidden or 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
Helpful Links for Using GitHub | |
Tip: At first, don't worry about downloading anything from Github, even though you'll see the option. You can probably work | |
with everything you need stored on Github's servers. | |
Step 1: Understand the concept of "version control." | |
Basically, you have something (text, code, etc...) that will be regularly updated. Each time it's updated, a new version is created. Sometimes two people update code at the same time and create two different versions of the code. You need to control the different versions. Github helps with that. Github helps with version control. | |
--- List of excellent first introductions to Github --- | |
What Is Github by Sohail Shaghasi |
This file contains hidden or 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
<html> | |
<head> | |
<title>Tic-Tac-Toe</title> | |
<style> | |
body { | |
font-family: sans-serif; | |
color: #535353; | |
} | |
.cell { | |
width: 100px; |
This file contains hidden or 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
# Video: http://rubyhoedown2008.confreaks.com/08-chris-wanstrath-keynote.html | |
Hi everyone, I'm Chris Wanstrath. | |
When Jeremy asked me to come talk, I said yes. Hell yes. Immediately. But | |
then I took a few moments and thought, Wait, why? Why me? What am I supposed | |
to say that's interesting? Something about Ruby, perhaps. Maybe the | |
future of it. The future of something, at least. That sounds | |
keynote-y. | |