diff --git a/README.md b/README.md old mode 100644 new mode 100755 index bf52266..064ecaa --- a/README.md +++ b/README.md @@ -1,29 +1,26 @@ -# Scavenger Hunt - Instructions + ,-----.,--. ,--. ,---. ,--.,------. ,------. + ' .--./| | ,---. ,--.,--. ,-| || o \ | || .-. \ | .---' + | | | || .-. || || |' .-. |`..' | | || | \ :| `--, + ' '--'\| |' '-' '' '' '\ `-' | .' / | || '--' /| `---. + `-----'`--' `---' `----' `---' `--' `--'`-------' `------' + ----------------------------------------------------------------- -1. Fork this repository on GitHub -2. Clone it to your Cloud9 VM: - ```Bash - $ git clone - ``` +Hi there! Welcome to Cloud9 IDE! -3. Solve - [clues](https://github.com/ScriptEdcurriculum/curriculum2015/blob/master/unitsYear2/1-JShunt/clues/README.md) - and save under `solutions` directory (separate directory for each clue) -4. Commit your changes: +To get you started, we included a small hello world application. - ```Bash - $ git add . # to stage all your changes - $ git commit -am 'commit message here' # to commit - ``` +1) Open the hello-world.html file -4. Push to your repository on GitHub: +2) Click on the Preview button to open a live preview pane - ```Bash - $ git push origin master - ``` +3) Make some changes to the file, save, watch the preview, and have fun! -5. Open a Pull Request (PR) to the original fork (TpTScriptEd's) -6. Submit a link to your PR - [here](https://docs.google.com/forms/d/1KbaHfDjgmVDn1446ow7tUjssfNKlrqC9RBnTznNqZgE/viewform) +Happy coding! +The Cloud9 IDE team + +## Support & Documentation + +Visit http://docs.c9.io for documentation, or http://support.c9.io for support. +To watch some training videos, visit http://www.youtube.com/user/c9ide diff --git a/hello-world.html b/hello-world.html new file mode 100644 index 0000000..e500fca --- /dev/null +++ b/hello-world.html @@ -0,0 +1,62 @@ + + + + + + +Hello... + + + + +
+

?

+ +
+ + + + diff --git a/roman.js b/roman.js new file mode 100644 index 0000000..a0fbd6f --- /dev/null +++ b/roman.js @@ -0,0 +1,27 @@ + + + + + +function roman(num) { + var romans = { + M: 1000; + D: 500; + C: 100; + L: 50; + X: 10; + V: 5; + I: 1; + }; + + num = 26; + var str = ''; + var dummy = Math.floor(num/10) + if(dummy > 0){ + str += letter * dummy + num = num - 2 * 10 + } + + + +} \ No newline at end of file diff --git a/scripted-scavengerhunt b/scripted-scavengerhunt new file mode 100644 index 0000000..3f2ff2d --- /dev/null +++ b/scripted-scavengerhunt @@ -0,0 +1,5 @@ + + + + + diff --git a/solutions/01_hello_html/headBody.html b/solutions/01_hello_html/headBody.html new file mode 100644 index 0000000..7a61181 --- /dev/null +++ b/solutions/01_hello_html/headBody.html @@ -0,0 +1,11 @@ + + + +Hello! + + +

World!

+ + + + \ No newline at end of file diff --git a/solutions/01_hello_html/hello-html.html b/solutions/01_hello_html/hello-html.html new file mode 100644 index 0000000..e780650 --- /dev/null +++ b/solutions/01_hello_html/hello-html.html @@ -0,0 +1,13 @@ + + + + +

+ Hello,World +

+ + + + + + diff --git a/solutions/01_hello_html/hello-world.html b/solutions/01_hello_html/hello-world.html new file mode 100644 index 0000000..e500fca --- /dev/null +++ b/solutions/01_hello_html/hello-world.html @@ -0,0 +1,62 @@ + + + + + + +Hello... + + + + +
+

?

+ +
+ + + + diff --git a/solutions/01_hello_html/img.html b/solutions/01_hello_html/img.html new file mode 100644 index 0000000..9f0adf0 --- /dev/null +++ b/solutions/01_hello_html/img.html @@ -0,0 +1,13 @@ + + + + + +

It's a dawg

+ + +

It's another dawg

+ + + + \ No newline at end of file