-
Notifications
You must be signed in to change notification settings - Fork 122
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
Jeffrey Horn
committed
Oct 6, 2015
0 parents
commit 808b0f4
Showing
2 changed files
with
81 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
Source code distributed under the MIT license. Text and other assets copyright | ||
General Assembly, Inc., all rights reserved. | ||
|
||
-------------------------------------------------------------------------------- | ||
|
||
The MIT License | ||
|
||
Copyright (c) 2015 General Assembly, Inc. http://generalassemb.ly | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
|
||
-------------------------------------------------------------------------------- | ||
|
||
Copyright (c) 2015 General Assembly, Inc. http://generalassemb.ly | ||
|
||
All rights reserved. No part of this publication may be reproduced, | ||
distributed, or transmitted in any form or by any means, including | ||
photocopying, recording, or other electronic or mechanical methods, without the | ||
prior written permission of the publisher, except in the case of brief | ||
quotations embodied in critical reviews and certain other noncommercial uses | ||
permitted by copyright law. For permission requests, write to the publisher, | ||
addressed “Attention: Permissions Coordinator,” at the address below. | ||
|
||
GA New York City | ||
902 Broadway, 4th Floor | ||
New York, NY 10010 | ||
USA | ||
+1 (917) 722-0237 | ||
|
||
-------------------------------------------------------------------------------- |
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 @@ | ||
![General Assembly Logo](https://camo.githubusercontent.com/1a91b05b8f4d44b5bbfb83abac2b0996d8e26c92/687474703a2f2f692e696d6775722e636f6d2f6b6538555354712e706e67) | ||
|
||
JavaScript: `javascripting` Review | ||
================================== | ||
|
||
[nodeschool](http://nodeschool.io/) is an excellent free and open-source resource for learning Node. We will use nodeschool in the future to help us learn back-end web development using node. For now, we'll use the [javascripting](https://github.com/sethvincent/javascripting) workshop to review what we've learned so far. | ||
|
||
Instructions | ||
------------ | ||
|
||
1. Install `javascripting` | ||
|
||
``` | ||
npm install -g javascripting | ||
``` | ||
1. Make a directory to store your work and move into that directory. | ||
1. Initialize a new git repository in that directory. | ||
1. Create a README ([example](https://github.com/jrhorn424/javascripting)) | ||
1. Add and commit the README, create a remote on GitHub, and push. | ||
1. Run `javascripting` from the command line and follow the instructions. | ||
1. As you work, commit early and often. | ||
Use commit messages as your learning journal, making notes of challenges and what you learned by completing each exercise ([example](https://github.com/jrhorn424/learnyounode/commit/5db673a16d4af82d3c5a80240edeb93b0e4dbd0c)). Then, push the repository to GitHub so future employers can get an idea of your learning process (not to mention your tenacity!). | ||
Additional Resources | ||
-------------------- | ||
* [Mozilla Developer Network: JavaScript Documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript) | ||
[License](LICENSE) | ||
------------------ | ||
Source code distributed under the MIT license. Text and other assets copyright | ||
General Assembly, Inc., all rights reserved. |