From bda7850019fb9cafab437e77cca375da7b958ef8 Mon Sep 17 00:00:00 2001 From: joshrice Date: Wed, 28 Aug 2013 09:12:50 -0400 Subject: [PATCH 001/107] Create 2013-08-28-Joshs-First-Post.md --- _posts/2013-08-28-Joshs-First-Post.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 _posts/2013-08-28-Joshs-First-Post.md diff --git a/_posts/2013-08-28-Joshs-First-Post.md b/_posts/2013-08-28-Joshs-First-Post.md new file mode 100644 index 0000000..9896cc0 --- /dev/null +++ b/_posts/2013-08-28-Joshs-First-Post.md @@ -0,0 +1,13 @@ +--- +layout: post +author: josh +categories: post +--- + +```javascript +function fancyAlert(arg) { + if(arg) { + $.facebox({div:'#foo'}) + } +} +``` From a8ba310ee948dfe393cf2e8d76784c177f5744b5 Mon Sep 17 00:00:00 2001 From: joshrice Date: Wed, 28 Aug 2013 09:13:31 -0400 Subject: [PATCH 002/107] Create 2013-08-28-Joshs-First-Code.md --- _posts/2013-08-28-Joshs-First-Code.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 _posts/2013-08-28-Joshs-First-Code.md diff --git a/_posts/2013-08-28-Joshs-First-Code.md b/_posts/2013-08-28-Joshs-First-Code.md new file mode 100644 index 0000000..5f89db8 --- /dev/null +++ b/_posts/2013-08-28-Joshs-First-Code.md @@ -0,0 +1,13 @@ +--- +layout: jrice +author: josh +categories: post +--- + +```javascript +function fancyAlert(arg) { + if(arg) { + $.facebox({div:'#foo'}) + } +} +``` From a6c4fa31e602f54368412df5bcf1485dc3c4239b Mon Sep 17 00:00:00 2001 From: joshrice Date: Wed, 28 Aug 2013 09:13:53 -0400 Subject: [PATCH 003/107] Delete 2013-08-28-Joshs-First-Code.md --- _posts/2013-08-28-Joshs-First-Code.md | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 _posts/2013-08-28-Joshs-First-Code.md diff --git a/_posts/2013-08-28-Joshs-First-Code.md b/_posts/2013-08-28-Joshs-First-Code.md deleted file mode 100644 index 5f89db8..0000000 --- a/_posts/2013-08-28-Joshs-First-Code.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -layout: jrice -author: josh -categories: post ---- - -```javascript -function fancyAlert(arg) { - if(arg) { - $.facebox({div:'#foo'}) - } -} -``` From e076ed25f23d6056e61c6ff657b4c0a34982cfbe Mon Sep 17 00:00:00 2001 From: IAMATinyCoder Date: Wed, 4 Sep 2013 08:02:04 -0400 Subject: [PATCH 004/107] Update 2013-09-03-christophers-post.md okay, I changed the author to the correct one listed under _config. --- _posts/2013-09-03-christophers-post.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2013-09-03-christophers-post.md b/_posts/2013-09-03-christophers-post.md index eeb2bed..f3f0ae5 100644 --- a/_posts/2013-09-03-christophers-post.md +++ b/_posts/2013-09-03-christophers-post.md @@ -1,6 +1,6 @@ --- layout: post -author: IAMATinyCoder +author: ckenrick categories: announcement --- From fe8289278ac0b91202c813f5a8ccd3d2fc7fe732 Mon Sep 17 00:00:00 2001 From: kylerthecreator Date: Mon, 9 Sep 2013 08:53:59 -0400 Subject: [PATCH 005/107] Short post containing python code for Turtle program. --- _posts/2013-09-09-Turtle-Steps.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 _posts/2013-09-09-Turtle-Steps.md diff --git a/_posts/2013-09-09-Turtle-Steps.md b/_posts/2013-09-09-Turtle-Steps.md new file mode 100644 index 0000000..3dabaa9 --- /dev/null +++ b/_posts/2013-09-09-Turtle-Steps.md @@ -0,0 +1,19 @@ +--- +layout: post +author: kshaffer +categories: post +--- + +Below is my Turtle code. +```python +import turtle + +edward = turtle.Turtle() + +for color in ['red', 'blue', 'green', 'yellow']: + edward.color(color) + edward.forward(75) + edward.left(90) + +turtle.done() +``` From 70ab5249092d5a65c91889607d3151937022ea44 Mon Sep 17 00:00:00 2001 From: erincarter Date: Mon, 9 Sep 2013 09:01:18 -0400 Subject: [PATCH 006/107] Create 2013-09-09-erinc-turtle.md --- _posts/2013-09-09-erinc-turtle.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 _posts/2013-09-09-erinc-turtle.md diff --git a/_posts/2013-09-09-erinc-turtle.md b/_posts/2013-09-09-erinc-turtle.md new file mode 100644 index 0000000..0d3ed3b --- /dev/null +++ b/_posts/2013-09-09-erinc-turtle.md @@ -0,0 +1,11 @@ +--- +layout: post +title: Erin C.'s turtle drawing: box & circles +author: ecarter +--- + +``` python + +code will go here + +``` From cd3e7dc3db5e6deb7238642f7a7f57251b0fb8e8 Mon Sep 17 00:00:00 2001 From: erincarter Date: Mon, 9 Sep 2013 09:03:46 -0400 Subject: [PATCH 007/107] Update 2013-09-09-erinc-turtle.md --- _posts/2013-09-09-erinc-turtle.md | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/_posts/2013-09-09-erinc-turtle.md b/_posts/2013-09-09-erinc-turtle.md index 0d3ed3b..266e3aa 100644 --- a/_posts/2013-09-09-erinc-turtle.md +++ b/_posts/2013-09-09-erinc-turtle.md @@ -4,8 +4,33 @@ title: Erin C.'s turtle drawing: box & circles author: ecarter --- +This is my turtle code. It made a funny shape. I'll try to figure out how to upload the screenshot, too. + ``` python -code will go here +import turtle + +edward = turtle.Turtle() + + +# Old Code: +# for color in ['red', 'blue', 'green', 'yellow']: +# edward.color(color) +# edward.forward(75) +# edward.left(90) + +def draw_side(turtle_name, color, length, angle): + turtle_name.color(color) + turtle_name.forward(length) + turtle_name.left(angle) + +draw_side(edward, 'red', 75, 90) +draw_side(edward, 'blue', 75, 90) +draw_side(edward, 'green', 75, 90) +draw_side(edward, 'yellow', 75, 90) + + +turtle.done() + ``` From 6e2a509ddd337eee84672563bda00f53cbae7330 Mon Sep 17 00:00:00 2001 From: erincarter Date: Mon, 9 Sep 2013 09:05:01 -0400 Subject: [PATCH 008/107] Update 2013-09-09-erinc-turtle.md --- _posts/2013-09-09-erinc-turtle.md | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/_posts/2013-09-09-erinc-turtle.md b/_posts/2013-09-09-erinc-turtle.md index 266e3aa..d576cc8 100644 --- a/_posts/2013-09-09-erinc-turtle.md +++ b/_posts/2013-09-09-erinc-turtle.md @@ -12,22 +12,16 @@ import turtle edward = turtle.Turtle() - -# Old Code: -# for color in ['red', 'blue', 'green', 'yellow']: -# edward.color(color) -# edward.forward(75) -# edward.left(90) - def draw_side(turtle_name, color, length, angle): turtle_name.color(color) turtle_name.forward(length) turtle_name.left(angle) + turtle_name.circle(50) -draw_side(edward, 'red', 75, 90) -draw_side(edward, 'blue', 75, 90) -draw_side(edward, 'green', 75, 90) -draw_side(edward, 'yellow', 75, 90) +draw_side(edward, 'red', 75, 75) +draw_side(edward, 'blue', 75, 105) +draw_side(edward, 'green', 75, 75) +draw_side(edward, 'yellow', 75, 105) turtle.done() From 34c6d4e072c601b21839ef9f93998f1e3f686958 Mon Sep 17 00:00:00 2001 From: erincarter Date: Mon, 9 Sep 2013 09:12:35 -0400 Subject: [PATCH 009/107] Update 2013-09-09-erinc-turtle.md --- _posts/2013-09-09-erinc-turtle.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/_posts/2013-09-09-erinc-turtle.md b/_posts/2013-09-09-erinc-turtle.md index d576cc8..8e3c867 100644 --- a/_posts/2013-09-09-erinc-turtle.md +++ b/_posts/2013-09-09-erinc-turtle.md @@ -4,7 +4,9 @@ title: Erin C.'s turtle drawing: box & circles author: ecarter --- -This is my turtle code. It made a funny shape. I'll try to figure out how to upload the screenshot, too. +This is my turtle code. It made a funny shape. Here's a screenshot, as well. + +![My strange Turtle drawing](http://i.imgur.com/E0KngfV.jpg) ``` python From f25ad49f0d5b6f013ac31d27ed08c6b9ea7ba013 Mon Sep 17 00:00:00 2001 From: erincarter Date: Mon, 9 Sep 2013 14:10:25 -0400 Subject: [PATCH 010/107] Update 2013-09-09-erinc-turtle.md --- _posts/2013-09-09-erinc-turtle.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/_posts/2013-09-09-erinc-turtle.md b/_posts/2013-09-09-erinc-turtle.md index 8e3c867..fc4078b 100644 --- a/_posts/2013-09-09-erinc-turtle.md +++ b/_posts/2013-09-09-erinc-turtle.md @@ -1,13 +1,20 @@ --- + layout: post title: Erin C.'s turtle drawing: box & circles author: ecarter + --- + + This is my turtle code. It made a funny shape. Here's a screenshot, as well. + ![My strange Turtle drawing](http://i.imgur.com/E0KngfV.jpg) + + ``` python import turtle From 409f91d5647b879550537f5e96ce4753c96300e9 Mon Sep 17 00:00:00 2001 From: erincarter Date: Mon, 9 Sep 2013 14:14:37 -0400 Subject: [PATCH 011/107] Update 2013-09-09-erinc-turtle.md --- _posts/2013-09-09-erinc-turtle.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-09-09-erinc-turtle.md b/_posts/2013-09-09-erinc-turtle.md index fc4078b..ac0f4e4 100644 --- a/_posts/2013-09-09-erinc-turtle.md +++ b/_posts/2013-09-09-erinc-turtle.md @@ -3,6 +3,7 @@ layout: post title: Erin C.'s turtle drawing: box & circles author: ecarter +categories: ecarter --- From 88fc08c844648c54eea41e4b4b47f3e199a09c77 Mon Sep 17 00:00:00 2001 From: erincarter Date: Mon, 9 Sep 2013 14:16:36 -0400 Subject: [PATCH 012/107] Update 2013-09-09-erinc-turtle.md --- _posts/2013-09-09-erinc-turtle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2013-09-09-erinc-turtle.md b/_posts/2013-09-09-erinc-turtle.md index ac0f4e4..7aa46a5 100644 --- a/_posts/2013-09-09-erinc-turtle.md +++ b/_posts/2013-09-09-erinc-turtle.md @@ -16,7 +16,7 @@ This is my turtle code. It made a funny shape. Here's a screenshot, as well. -``` python +```python import turtle From 20642f7fa7e17257c7f2536188944009269c05ea Mon Sep 17 00:00:00 2001 From: kylerthecreator Date: Mon, 9 Sep 2013 21:07:10 -0400 Subject: [PATCH 013/107] Update from previous Commit 'Turtle Steps' Replaced code and added image. --- _posts/2013-09-09-Spirograph-Stop-Sign.md | 32 +++++++++++++++++++++++ _posts/2013-09-09-Turtle-Steps.md | 19 -------------- 2 files changed, 32 insertions(+), 19 deletions(-) create mode 100644 _posts/2013-09-09-Spirograph-Stop-Sign.md delete mode 100644 _posts/2013-09-09-Turtle-Steps.md diff --git a/_posts/2013-09-09-Spirograph-Stop-Sign.md b/_posts/2013-09-09-Spirograph-Stop-Sign.md new file mode 100644 index 0000000..c5be131 --- /dev/null +++ b/_posts/2013-09-09-Spirograph-Stop-Sign.md @@ -0,0 +1,32 @@ +--- +layout: post +author: kshaffer +categories: post +--- + +After tinkering for a while (probably too long) I wound up with this interesting accident. Below is my Turtle code. +```python +import turtle + +edward = turtle.Turtle() + +edward.penup() +edward.setpos(50, 150) +edward.pendown() + +for color in ['blue', 'green', 'red']: + for radius in range(0, 100, 10): + edward.color(color) + edward.circle(radius) + edward.right(45) + edward.forward(100) + +edward.penup() +edward.setpos(0, 20) +edward.pendown() +edward.write('STOP!') + +turtle.done() +``` + +And ![here's](https://plus.google.com/u/0/photos/yourphotos?pid=5921791580227736642&oid=103253917544017383249) a picture of the result! diff --git a/_posts/2013-09-09-Turtle-Steps.md b/_posts/2013-09-09-Turtle-Steps.md deleted file mode 100644 index 3dabaa9..0000000 --- a/_posts/2013-09-09-Turtle-Steps.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -layout: post -author: kshaffer -categories: post ---- - -Below is my Turtle code. -```python -import turtle - -edward = turtle.Turtle() - -for color in ['red', 'blue', 'green', 'yellow']: - edward.color(color) - edward.forward(75) - edward.left(90) - -turtle.done() -``` From b037eeb3273bfabdd6091fc9915c43ea27211433 Mon Sep 17 00:00:00 2001 From: Caroline Pate Date: Mon, 9 Sep 2013 22:57:56 -0400 Subject: [PATCH 014/107] Create 2013-9-9-Carolines-First-Python-Turtle.md --- .../2013-9-9-Carolines-First-Python-Turtle.md | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 _posts/2013-9-9-Carolines-First-Python-Turtle.md diff --git a/_posts/2013-9-9-Carolines-First-Python-Turtle.md b/_posts/2013-9-9-Carolines-First-Python-Turtle.md new file mode 100644 index 0000000..431fcad --- /dev/null +++ b/_posts/2013-9-9-Carolines-First-Python-Turtle.md @@ -0,0 +1,28 @@ +--- +layout: post +author: carolinp +categories: post +--- +I stole the idea from the interactive version of our book: https://sphotos-b-lga.xx.fbcdn.net/hphotos-prn1/75915_10151828830269788_2026467913_n.jpg + +Which was actually extremely helpful, so you guys should definitely check it out! I may not have the math totally down, but I feel like I understand how for loops work. +![My Python Turtle](https://sphotos-b-lga.xx.fbcdn.net/hphotos-prn1/75915_10151828830269788_2026467913_n.jpg) +```python +import turtle +wn = turtle.Screen() +wn.bgcolor("orange") +andy = turtle.Turtle() +andy.color("pink") +andy.shape("triangle") + +print(range(5, 60, 2)) +andy.up() + +for size in range (5, 60, 2): + andy.stamp() + andy.forward(size) + andy.right(24) + + +>> wn.exitonclick() +``` From d1293f172f008bab90862bdb5b82763c9290fd71 Mon Sep 17 00:00:00 2001 From: Danielle Date: Mon, 9 Sep 2013 23:37:01 -0400 Subject: [PATCH 015/107] Danielle's Turtle post #233 This is my assignment for the fifth class. --- _posts/2013-09-09-turtle-post.md | 74 ++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 _posts/2013-09-09-turtle-post.md diff --git a/_posts/2013-09-09-turtle-post.md b/_posts/2013-09-09-turtle-post.md new file mode 100644 index 0000000..3d257dc --- /dev/null +++ b/_posts/2013-09-09-turtle-post.md @@ -0,0 +1,74 @@ +--- +layout: post +author: danielle +categories: post +--- + +I am not a graphic design person, so my turtle graphic is not the next Mona Lisa, but I have managed to include a few original figures. +There is a sun, a layered color circle figure (I don't know what to call it), and a face. + +I looked at the following sites to get inspiration about the code I wrote (they are not guilty of my creative strugglings): +[Chapter 25 of Turtle graphic documentation](http://www.python.org/doc//current/library/turtle.html#color-control) +[Chapter 24 of Turtle graphic documentation](http://docs.python.org/2/library/turtle.html#turtle-motion) + +Here is my code: +'''python +import turtle +kenny = turtle.Turtle() +kenny.penup() +## This is the excessively large sun. +kenny.goto(-200, 0) +kenny.pendown() +kenny.color('yellow') +kenny.begin_fill() +kenny.circle(150) +kenny.end_fill() +kenny.penup() +## This is the weird colorful circle figure that looked like it had potential that an artistic person could put to use. +kenny.goto(0,0) +kenny.pendown() +kenny.color('green') +kenny.begin_fill() +kenny.circle(10) +kenny.end_fill() +kenny.color('violet') +kenny.circle(20) +kenny.color('red') +kenny.circle(40) +kenny.penup() +## This is the left pupil. +kenny.goto(-90, -110) +kenny.color('black') +kenny.pendown() +kenny.begin_fill() +kenny.circle(10) +kenny.end_fill() +kenny.penup() +## This is the left eye. +kenny.goto(-90, -130) +kenny.pendown() +kenny.circle(30) +kenny.penup() +## This is the right pupil. +kenny.goto(10, -110) +kenny.pendown() +kenny.begin_fill() +kenny.circle(10) +kenny.end_fill() +kenny.penup() +## This is the right eye. +kenny.goto(10, -130) +kenny.pendown() +kenny.circle(30) +kenny.penup() +## This is the full face. +kenny.goto(-60, -260) +kenny.pendown() +kenny.circle(130) +kenny.penup() +## This is the mouth. +kenny.goto(-90, -190) +kenny.pendown() +kenny.forward(60) +turtle.done() +''' From 8da1d973f2729fd4690592f981687c2c10473380 Mon Sep 17 00:00:00 2001 From: erincarter Date: Wed, 11 Sep 2013 07:57:44 -0400 Subject: [PATCH 016/107] Update 2013-09-09-erinc-turtle.md --- _posts/2013-09-09-erinc-turtle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2013-09-09-erinc-turtle.md b/_posts/2013-09-09-erinc-turtle.md index 7aa46a5..d55d81a 100644 --- a/_posts/2013-09-09-erinc-turtle.md +++ b/_posts/2013-09-09-erinc-turtle.md @@ -1,7 +1,7 @@ --- layout: post -title: Erin C.'s turtle drawing: box & circles +title: Erin C.'s turtle drawing, box & circles author: ecarter categories: ecarter From 0cb28d6f93ddf1a3d6fc302ae32270e2de1a44f8 Mon Sep 17 00:00:00 2001 From: kylerthecreator Date: Wed, 11 Sep 2013 07:59:35 -0400 Subject: [PATCH 017/107] Update code and image formatting. --- _posts/2013-09-09-Spirograph-Stop-Sign.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_posts/2013-09-09-Spirograph-Stop-Sign.md b/_posts/2013-09-09-Spirograph-Stop-Sign.md index c5be131..5ec0861 100644 --- a/_posts/2013-09-09-Spirograph-Stop-Sign.md +++ b/_posts/2013-09-09-Spirograph-Stop-Sign.md @@ -5,6 +5,7 @@ categories: post --- After tinkering for a while (probably too long) I wound up with this interesting accident. Below is my Turtle code. + ```python import turtle @@ -29,4 +30,4 @@ edward.write('STOP!') turtle.done() ``` -And ![here's](https://plus.google.com/u/0/photos/yourphotos?pid=5921791580227736642&oid=103253917544017383249) a picture of the result! +And ![here's](http://i.imgur.com/3Ydh0qg) a picture of the result! From 16a9a91cefb4b801fabf47a4f4e40f7d356284f4 Mon Sep 17 00:00:00 2001 From: Michelle Baxter Date: Wed, 11 Sep 2013 08:06:01 -0400 Subject: [PATCH 018/107] Update 2013-09-09-Drawing-with-Turtle.md Removed "import turtle" because it was unnecessary --- _posts/2013-09-09-Drawing-with-Turtle.md | 1 - 1 file changed, 1 deletion(-) diff --git a/_posts/2013-09-09-Drawing-with-Turtle.md b/_posts/2013-09-09-Drawing-with-Turtle.md index b1bf4c6..bf2d922 100644 --- a/_posts/2013-09-09-Drawing-with-Turtle.md +++ b/_posts/2013-09-09-Drawing-with-Turtle.md @@ -4,7 +4,6 @@ author: mbaxter category: posts --- Here is the code I used for my drawing using Python's Turtle: -import turtle ```python turtle.left(20) From 769cae01926f4926faa6d31c9891ac048782957a Mon Sep 17 00:00:00 2001 From: Michelle Baxter Date: Wed, 11 Sep 2013 08:06:35 -0400 Subject: [PATCH 019/107] Update _config.yml Removed content added via terminal in Ubuntu --- _config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index c2e6354..6702e76 100644 --- a/_config.yml +++ b/_config.yml @@ -26,7 +26,7 @@ authors: website: http://www.facebook.com/mbbaxter github: EmBeeBee twitter: MichelleBBaxter - about: Grad student, pop culture enthusiast. Going to get ALL the bonus points! + about: Grad student, pop culture enthusiast. abrown: name: Ashley Brown prof: false From c60260b41cb4870a0ba97d6a6e4c3400939ac35f Mon Sep 17 00:00:00 2001 From: Michelle Baxter Date: Wed, 11 Sep 2013 08:15:45 -0400 Subject: [PATCH 020/107] Update _config.yml --- _config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index 4f36f4a..c9cfc59 100644 --- a/_config.yml +++ b/_config.yml @@ -26,7 +26,7 @@ authors: website: http://www.facebook.com/mbbaxter github: EmBeeBee twitter: MichelleBBaxter - about: Grad student, pop culture enthusiast. + about: Grad student, pop culture enthusiast. You need bonus points? I can help you get them! abrown: name: Ashley Brown prof: false From f9b5797c97baba3ec5277db657a60549f05ef3db Mon Sep 17 00:00:00 2001 From: erincarter Date: Wed, 11 Sep 2013 08:15:45 -0400 Subject: [PATCH 021/107] Added my website, deleted the Twitter field on my profile to see what happens. --- _config.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/_config.yml b/_config.yml index 8c9fca7..62eea65 100644 --- a/_config.yml +++ b/_config.yml @@ -47,9 +47,8 @@ authors: name: Erin Carter prof: false gravatar: - website: + website: http://erinlcarter.com github: erincarter - twitter: about: Erin is a second-year MSIS student. She works at the SILS Help Desk, stop on by! odorsey: name: Olivia Dorsey From b827bc3a5f5f57a17d0ed10371c259116afff2a6 Mon Sep 17 00:00:00 2001 From: Michelle Baxter Date: Wed, 11 Sep 2013 08:16:54 -0400 Subject: [PATCH 022/107] Update _config.yml Added something silly, removed it. --- _config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index c9cfc59..4f36f4a 100644 --- a/_config.yml +++ b/_config.yml @@ -26,7 +26,7 @@ authors: website: http://www.facebook.com/mbbaxter github: EmBeeBee twitter: MichelleBBaxter - about: Grad student, pop culture enthusiast. You need bonus points? I can help you get them! + about: Grad student, pop culture enthusiast. abrown: name: Ashley Brown prof: false From 747a62392a1c1865720eafcadb3e20b1aefb7f10 Mon Sep 17 00:00:00 2001 From: Grant McLendon Date: Wed, 11 Sep 2013 08:21:34 -0400 Subject: [PATCH 023/107] Delete 2013-08-29-ubuntu-first-steps-and-jekyll.md --- ...013-08-29-ubuntu-first-steps-and-jekyll.md | 50 ------------------- 1 file changed, 50 deletions(-) delete mode 100644 _posts/gerbal/2013-08-29-ubuntu-first-steps-and-jekyll.md diff --git a/_posts/gerbal/2013-08-29-ubuntu-first-steps-and-jekyll.md b/_posts/gerbal/2013-08-29-ubuntu-first-steps-and-jekyll.md deleted file mode 100644 index ddf70e7..0000000 --- a/_posts/gerbal/2013-08-29-ubuntu-first-steps-and-jekyll.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -layout: post -author: gmclendon -categories: howto -title: Post install Ubuntu tips & Jekyll setup -published: false ---- - -Disclaimer: this worked for me, I hope it works for you. I've only tested it in a limited fashion. Please comment if you have issues or fixes. I'm also a terrible technical writer, so feel free to tell me what I messed up. - -##Virtual Box Extras -So, you have Ubuntu installed on your brand new VirtualBox and are trying to figure out what to do next. -The very first thing to do is install VirtualBox Guest utilities that let you do fun things like scroll. - -There are two sets of extras and extensions to install, one provided by VirtualBox and another maintained by the community. -* Download [VirtualBox Extension Pack](http://download.virtualbox.org/virtualbox/4.2.16/Oracle_VM_VirtualBox_Extension_Pack-4.2.16-86992.vbox-extpack) double click the file and VirtualBox will mount it as a CD. - * Go to ['Devices>Install Guest Additions'](http://i.imgur.com/qOezy1M.png) in your running VirtualBox menu instance will launch an installer - * If an installer fails to launch or doesn't run to completion the following will install the additions manually - * in the terminal (ctrl+alt+t) - -```bash -cd /media/$USER -cd VBOX {pres tab to complete} -sudo ./VBoxLinuxAdditions.run -``` - - * restart your VirtualBox -* Installing the Ubuntu VirtualBox Guest additions: - * in the terminal (ctrl+alt+t) - -```bash -sudo apt-get install virtualbox-guest-utils -``` - - -##Setting up a Jekyll instance (courtesy of [Michael Chelen](http://michaelchelen.net/articles/install-jekyll-ubuntu-12-10.html)) -Ubuntu has an outdated version of Jekyll in its repositories, don't install it. It has a whole host of issues and fails to build most jekyll pages. -Instead we are going to install jekyll through ruby, this works better. - -In the terminal (ctrl+alt+t): -```bash -sudo apt-get install ruby1.9.1 ruby1.9.1-dev make build-essential -sudo gem install jekyll -``` - -If when you try to run Jekyll you are told 'Command not found' you will need to add Ruby Gems to your $PATH (places linux looks for system wide-commands) - In the terminal: -```bash -export PATH=$PATH:/var/lib/gems/1.9.1/bin -``` From cb1128e52e220f95bd3e9b2c11bcc98aa3887b09 Mon Sep 17 00:00:00 2001 From: Grant McLendon Date: Wed, 11 Sep 2013 08:22:18 -0400 Subject: [PATCH 024/107] Update 2013-08-26-Grant's-Post.md --- _posts/gerbal/2013-08-26-Grant's-Post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/gerbal/2013-08-26-Grant's-Post.md b/_posts/gerbal/2013-08-26-Grant's-Post.md index 86698b1..01b3313 100644 --- a/_posts/gerbal/2013-08-26-Grant's-Post.md +++ b/_posts/gerbal/2013-08-26-Grant's-Post.md @@ -2,6 +2,7 @@ layout: post author: gmclendon categories: gmclendon +published: false --- #HELLO WORLD From aff31039ac654ed89bb6c1ebf8c6638ae24a8518 Mon Sep 17 00:00:00 2001 From: Grant McLendon Date: Wed, 11 Sep 2013 08:22:45 -0400 Subject: [PATCH 025/107] Update 2013-08-28-grants-Second-post.md --- _posts/gerbal/2013-08-28-grants-Second-post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/gerbal/2013-08-28-grants-Second-post.md b/_posts/gerbal/2013-08-28-grants-Second-post.md index ef79492..fcbcfff 100644 --- a/_posts/gerbal/2013-08-28-grants-Second-post.md +++ b/_posts/gerbal/2013-08-28-grants-Second-post.md @@ -3,6 +3,7 @@ layout: post author: gmclendon categories: gmclendon title: Grant shows some syntax highlighting +published: false --- Here's some python from [this project](https://github.com/twilio/twilio-python) just to show off syntax highlighting. From 40bac1bbebe7ffb4aa3c5e050c1fcc78e384f944 Mon Sep 17 00:00:00 2001 From: Danielle Date: Wed, 11 Sep 2013 08:27:40 -0400 Subject: [PATCH 026/107] Included returns and screen shot to turtle post. --- _posts/2013-09-09-turtle-post.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/_posts/2013-09-09-turtle-post.md b/_posts/2013-09-09-turtle-post.md index 3d257dc..a9278da 100644 --- a/_posts/2013-09-09-turtle-post.md +++ b/_posts/2013-09-09-turtle-post.md @@ -8,10 +8,13 @@ I am not a graphic design person, so my turtle graphic is not the next Mona Lisa There is a sun, a layered color circle figure (I don't know what to call it), and a face. I looked at the following sites to get inspiration about the code I wrote (they are not guilty of my creative strugglings): + [Chapter 25 of Turtle graphic documentation](http://www.python.org/doc//current/library/turtle.html#color-control) + [Chapter 24 of Turtle graphic documentation](http://docs.python.org/2/library/turtle.html#turtle-motion) Here is my code: + '''python import turtle kenny = turtle.Turtle() @@ -24,7 +27,7 @@ kenny.begin_fill() kenny.circle(150) kenny.end_fill() kenny.penup() -## This is the weird colorful circle figure that looked like it had potential that an artistic person could put to use. +## This is the weird colorful circle figure that looked like it had potential. kenny.goto(0,0) kenny.pendown() kenny.color('green') @@ -72,3 +75,5 @@ kenny.pendown() kenny.forward(60) turtle.done() ''' + +![This is my screen shot](http://imgur.com/jqo3Nqx) From 3e29e8235498457b993595ad55015464c4fb34b7 Mon Sep 17 00:00:00 2001 From: kylerthecreator Date: Wed, 11 Sep 2013 08:28:00 -0400 Subject: [PATCH 027/107] Updates 0cb28d6 --- _posts/2013-09-09-Spirograph-Stop-Sign.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/_posts/2013-09-09-Spirograph-Stop-Sign.md b/_posts/2013-09-09-Spirograph-Stop-Sign.md index 5ec0861..6962501 100644 --- a/_posts/2013-09-09-Spirograph-Stop-Sign.md +++ b/_posts/2013-09-09-Spirograph-Stop-Sign.md @@ -30,4 +30,6 @@ edward.write('STOP!') turtle.done() ``` -And ![here's](http://i.imgur.com/3Ydh0qg) a picture of the result! +And below is a picture of the result. + +![](http://i.imgur.com/3Ydh0qg.png) From ce39e85ff5185434372a9657168304131646a115 Mon Sep 17 00:00:00 2001 From: erincarter Date: Wed, 11 Sep 2013 08:32:05 -0400 Subject: [PATCH 028/107] Set state to draft --- _posts/2013-08-26-erincs-post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-08-26-erincs-post.md b/_posts/2013-08-26-erincs-post.md index 1c2c194..d8595ab 100644 --- a/_posts/2013-08-26-erincs-post.md +++ b/_posts/2013-08-26-erincs-post.md @@ -2,6 +2,7 @@ layout: post author: ecarter categories: test +published: false --- ##Post goes here From 8f05a64da9a06078ca28de679abfb9ead9ee84c1 Mon Sep 17 00:00:00 2001 From: erholmes Date: Wed, 11 Sep 2013 08:32:32 -0400 Subject: [PATCH 029/107] Create 2013-09-11-erinh-unpublished-post.md Erin H unpublished post --- _posts/erholmes/2013-09-11-erinh-unpublished-post.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 _posts/erholmes/2013-09-11-erinh-unpublished-post.md diff --git a/_posts/erholmes/2013-09-11-erinh-unpublished-post.md b/_posts/erholmes/2013-09-11-erinh-unpublished-post.md new file mode 100644 index 0000000..6839911 --- /dev/null +++ b/_posts/erholmes/2013-09-11-erinh-unpublished-post.md @@ -0,0 +1,9 @@ +--- +title: Erin H's Unpublished Post +layout: post +author: erholmes +categories: post +published: false +--- + +This is an unpublished post. This is only an unpublished post. If this were a real post, the header would say published: true and it would show up on the class website. Thank you for your attention. Back to your lives citizens. From 1e9cbc32b56f962bd6195d47d4a1bf34698cbbe3 Mon Sep 17 00:00:00 2001 From: Caroline Pate Date: Wed, 11 Sep 2013 08:33:35 -0400 Subject: [PATCH 030/107] Update 2013-9-9-Carolines-First-Python-Turtle.md --- _posts/2013-9-9-Carolines-First-Python-Turtle.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-9-9-Carolines-First-Python-Turtle.md b/_posts/2013-9-9-Carolines-First-Python-Turtle.md index 431fcad..fc6c27d 100644 --- a/_posts/2013-9-9-Carolines-First-Python-Turtle.md +++ b/_posts/2013-9-9-Carolines-First-Python-Turtle.md @@ -25,4 +25,5 @@ for size in range (5, 60, 2): >> wn.exitonclick() + ``` From f7aa3c684a91e429ffef9a645ea8f80af48428df Mon Sep 17 00:00:00 2001 From: erholmes Date: Wed, 11 Sep 2013 08:34:17 -0400 Subject: [PATCH 031/107] Update 2013-08-26-qerin-post.md unpublish first post. --- _posts/erholmes/2013-08-26-qerin-post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/erholmes/2013-08-26-qerin-post.md b/_posts/erholmes/2013-08-26-qerin-post.md index 0f3f851..d472930 100644 --- a/_posts/erholmes/2013-08-26-qerin-post.md +++ b/_posts/erholmes/2013-08-26-qerin-post.md @@ -3,6 +3,7 @@ layout: post author: erholmes categories: post title: Erin H's first post +published: false --- I'm not *exactly* sure what I'm supposed to say. But I **hope** you like it anyway! From 33af1bcd95ce27cf80f48beb50a49593b9d45fdb Mon Sep 17 00:00:00 2001 From: erholmes Date: Wed, 11 Sep 2013 08:34:32 -0400 Subject: [PATCH 032/107] Delete 2013-09-11-erinh-unpublished-post.md --- _posts/erholmes/2013-09-11-erinh-unpublished-post.md | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 _posts/erholmes/2013-09-11-erinh-unpublished-post.md diff --git a/_posts/erholmes/2013-09-11-erinh-unpublished-post.md b/_posts/erholmes/2013-09-11-erinh-unpublished-post.md deleted file mode 100644 index 6839911..0000000 --- a/_posts/erholmes/2013-09-11-erinh-unpublished-post.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Erin H's Unpublished Post -layout: post -author: erholmes -categories: post -published: false ---- - -This is an unpublished post. This is only an unpublished post. If this were a real post, the header would say published: true and it would show up on the class website. Thank you for your attention. Back to your lives citizens. From f811f748c7c078f2ae43cd70ebc0822efd34af49 Mon Sep 17 00:00:00 2001 From: Michelle Baxter Date: Wed, 11 Sep 2013 08:34:57 -0400 Subject: [PATCH 033/107] Making "Forking vs. Cloning" post a draft Making a post a draft --- _posts/2013-08-26-Forking-vs-Cloning-on-GitHub.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2013-08-26-Forking-vs-Cloning-on-GitHub.md b/_posts/2013-08-26-Forking-vs-Cloning-on-GitHub.md index 0f26811..aae8873 100644 --- a/_posts/2013-08-26-Forking-vs-Cloning-on-GitHub.md +++ b/_posts/2013-08-26-Forking-vs-Cloning-on-GitHub.md @@ -2,7 +2,7 @@ layout: post author: mbaxter categories: post -published: true +published: false --- #Forking vs. Cloning on GitHub - What's the difference?# First off, **forking** is a vocabulary term that is unique to GitHub. From 9fc57bad62ef600112c7fd6552398a0d3f5a03fe Mon Sep 17 00:00:00 2001 From: Elliott Hauser Date: Wed, 11 Sep 2013 08:35:11 -0400 Subject: [PATCH 034/107] Made test post into a draft --- _posts/2013-09-01-test-post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-09-01-test-post.md b/_posts/2013-09-01-test-post.md index 00aaef8..70c32ca 100644 --- a/_posts/2013-09-01-test-post.md +++ b/_posts/2013-09-01-test-post.md @@ -2,6 +2,7 @@ author: elliott layout: post title: If you see this, the site is back up. +published: false --- Yep. From f94ec6315746e0a90a7606207f2d9bbdc70caedb Mon Sep 17 00:00:00 2001 From: ans729 Date: Wed, 11 Sep 2013 08:35:12 -0400 Subject: [PATCH 035/107] Made first post a draft --- _posts/2013-08-26-ambers-post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-08-26-ambers-post.md b/_posts/2013-08-26-ambers-post.md index e71fb8a..7a07b84 100644 --- a/_posts/2013-08-26-ambers-post.md +++ b/_posts/2013-08-26-ambers-post.md @@ -2,6 +2,7 @@ layout: post author: asherman categories: post +published: false --- __Hello__ From 228b81619eaacaa219582b1cbd1def4d6c0f68af Mon Sep 17 00:00:00 2001 From: gillenme Date: Wed, 11 Sep 2013 08:35:14 -0400 Subject: [PATCH 036/107] Made post into draft --- _posts/mgillen/2013-08-26-marys-post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/mgillen/2013-08-26-marys-post.md b/_posts/mgillen/2013-08-26-marys-post.md index fdf4710..3f53fe5 100644 --- a/_posts/mgillen/2013-08-26-marys-post.md +++ b/_posts/mgillen/2013-08-26-marys-post.md @@ -2,6 +2,7 @@ layout: post author: mgillen categories: post +published: false --- **Arthur Conan Doyle, _The Case-Book of Sherlock Holmes_** From 79079ad8c80e23757154243819fcfac8659ce80d Mon Sep 17 00:00:00 2001 From: alexharding Date: Wed, 11 Sep 2013 08:35:16 -0400 Subject: [PATCH 037/107] Change test-post to unpublished (draft) Changing test post to unpublished for class exercise. --- _posts/2013-08-26-alex-post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-08-26-alex-post.md b/_posts/2013-08-26-alex-post.md index 2903a2d..d81c044 100644 --- a/_posts/2013-08-26-alex-post.md +++ b/_posts/2013-08-26-alex-post.md @@ -2,6 +2,7 @@ layout: post author: alexharding categories: post +published: false --- **WOW!** I made a post. From d6f1a4956a850bd159395c314ab148e0510c4213 Mon Sep 17 00:00:00 2001 From: kylerthecreator Date: Wed, 11 Sep 2013 08:35:16 -0400 Subject: [PATCH 038/107] Made test post into draft --- _posts/2013-08-28-kyles-python-post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-08-28-kyles-python-post.md b/_posts/2013-08-28-kyles-python-post.md index 9aaa4f6..6517d27 100644 --- a/_posts/2013-08-28-kyles-python-post.md +++ b/_posts/2013-08-28-kyles-python-post.md @@ -2,6 +2,7 @@ layout: post author: kshaffer categories: post +published: false --- ```python From 984ce926e5448b5c6525d80aa488d2da4014d9cb Mon Sep 17 00:00:00 2001 From: jpulliza Date: Wed, 11 Sep 2013 08:35:17 -0400 Subject: [PATCH 039/107] Update 2013-08-26-Jonathan-Post.md Added the label published, made it false, thus turning this post into a draft. --- _posts/jpulliza/2013-08-26-Jonathan-Post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/jpulliza/2013-08-26-Jonathan-Post.md b/_posts/jpulliza/2013-08-26-Jonathan-Post.md index eca0d83..304291a 100644 --- a/_posts/jpulliza/2013-08-26-Jonathan-Post.md +++ b/_posts/jpulliza/2013-08-26-Jonathan-Post.md @@ -2,6 +2,7 @@ layout: post author: jpulliza categories: Students +published: false --- Test Post. From d91552fe6f0d0752e6be64fc499ef88b12226b6d Mon Sep 17 00:00:00 2001 From: zekuny Date: Wed, 11 Sep 2013 08:35:18 -0400 Subject: [PATCH 040/107] Made test post into a draft --- _posts/2013-09-01-test-post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-09-01-test-post.md b/_posts/2013-09-01-test-post.md index 00aaef8..70c32ca 100644 --- a/_posts/2013-09-01-test-post.md +++ b/_posts/2013-09-01-test-post.md @@ -2,6 +2,7 @@ author: elliott layout: post title: If you see this, the site is back up. +published: false --- Yep. From f87bb27b1adf750c239bbfa4ab937751f50fd300 Mon Sep 17 00:00:00 2001 From: leslieho Date: Wed, 11 Sep 2013 08:35:21 -0400 Subject: [PATCH 041/107] Turned First Post Into Draft --- _posts/2013-08-26-leslies-post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-08-26-leslies-post.md b/_posts/2013-08-26-leslies-post.md index 19d00ba..feb057e 100644 --- a/_posts/2013-08-26-leslies-post.md +++ b/_posts/2013-08-26-leslies-post.md @@ -2,6 +2,7 @@ layout: post author: lho categories: post +published: false --- ##super coolness From 3c1027c9556fd2936f4532db50b48c3f32c0ed21 Mon Sep 17 00:00:00 2001 From: allhailaugustus Date: Wed, 11 Sep 2013 08:35:28 -0400 Subject: [PATCH 042/107] Switch post to draft Added 'published: false' to header --- _posts/stacey/2013-08-28-staceys-perl-example.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/stacey/2013-08-28-staceys-perl-example.md b/_posts/stacey/2013-08-28-staceys-perl-example.md index b18cdc6..5d956fc 100644 --- a/_posts/stacey/2013-08-28-staceys-perl-example.md +++ b/_posts/stacey/2013-08-28-staceys-perl-example.md @@ -3,6 +3,7 @@ title: Hester Prynne's Daughter was creepy layout: post author: smantooth categories: post +published: false --- ```perl From 044c34857489dc8bd9a4e2a6fbf1de226d2ad001 Mon Sep 17 00:00:00 2001 From: joshrice Date: Wed, 11 Sep 2013 08:35:29 -0400 Subject: [PATCH 043/107] Made first test post into a draft. --- _posts/2013-08-28-Joshs-First-Post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-08-28-Joshs-First-Post.md b/_posts/2013-08-28-Joshs-First-Post.md index 9896cc0..a186ed2 100644 --- a/_posts/2013-08-28-Joshs-First-Post.md +++ b/_posts/2013-08-28-Joshs-First-Post.md @@ -2,6 +2,7 @@ layout: post author: josh categories: post +published: false --- ```javascript From 582e8676515f5e6ee8b8678eac83b78101daeb37 Mon Sep 17 00:00:00 2001 From: Caroline Pate Date: Wed, 11 Sep 2013 08:35:40 -0400 Subject: [PATCH 044/107] Update 2013-08-26-carolines-post.md made a draft --- _posts/2013-08-26-carolines-post.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2013-08-26-carolines-post.md b/_posts/2013-08-26-carolines-post.md index 84d3bd9..7104892 100644 --- a/_posts/2013-08-26-carolines-post.md +++ b/_posts/2013-08-26-carolines-post.md @@ -7,6 +7,6 @@ categories: post - [ ] is - [ ] a - [ ] list - + published: false From 89ff9ea4d46dba68a2e3bf71fc4a683eb4c561b6 Mon Sep 17 00:00:00 2001 From: Caroline Pate Date: Wed, 11 Sep 2013 08:35:55 -0400 Subject: [PATCH 045/107] Update 2013-08-26-carolines-post.md --- _posts/2013-08-26-carolines-post.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_posts/2013-08-26-carolines-post.md b/_posts/2013-08-26-carolines-post.md index 7104892..d9e1072 100644 --- a/_posts/2013-08-26-carolines-post.md +++ b/_posts/2013-08-26-carolines-post.md @@ -7,6 +7,8 @@ categories: post - [ ] is - [ ] a - [ ] list + + published: false From 2f46933e6473befe3db1b5cdb1b8ec63689c1193 Mon Sep 17 00:00:00 2001 From: IAMATinyCoder Date: Wed, 11 Sep 2013 08:36:07 -0400 Subject: [PATCH 046/107] Update 2013-09-03-christophers-post.md Made test post into draft --- _posts/2013-09-03-christophers-post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-09-03-christophers-post.md b/_posts/2013-09-03-christophers-post.md index f3f0ae5..c1fafda 100644 --- a/_posts/2013-09-03-christophers-post.md +++ b/_posts/2013-09-03-christophers-post.md @@ -2,6 +2,7 @@ layout: post author: ckenrick categories: announcement +published: false --- ## Python Syntax Highlighting From b221a1e47ace94cd14fcdc0baf7efd05c5646b4e Mon Sep 17 00:00:00 2001 From: ashmbrown Date: Wed, 11 Sep 2013 08:36:24 -0400 Subject: [PATCH 047/107] Turned Ashley's post into a draft --- _posts/2013-08-26-ashleys-post.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_posts/2013-08-26-ashleys-post.md b/_posts/2013-08-26-ashleys-post.md index 6f8c2b7..a43c986 100644 --- a/_posts/2013-08-26-ashleys-post.md +++ b/_posts/2013-08-26-ashleys-post.md @@ -1,7 +1,8 @@ --- layout: post author: abrown -categories: ashley brown +Categorie: post +published: false --- ###Hey ya### From ac65b2f75afc331d07fae80586e5f2c046e23e17 Mon Sep 17 00:00:00 2001 From: Sarah Date: Wed, 11 Sep 2013 08:36:35 -0400 Subject: [PATCH 048/107] Create 2013-09-11draftpost --- _posts/sburnham/2013-09-11draftpost | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 _posts/sburnham/2013-09-11draftpost diff --git a/_posts/sburnham/2013-09-11draftpost b/_posts/sburnham/2013-09-11draftpost new file mode 100644 index 0000000..6a96a03 --- /dev/null +++ b/_posts/sburnham/2013-09-11draftpost @@ -0,0 +1,8 @@ +--- +author: sburnham +date: 2013-09-11 +layout: post +published: false +--- + +draft test of an unpublished post. From a772933e28d739fac9ecfea9d89880024d84857a Mon Sep 17 00:00:00 2001 From: joshrice Date: Wed, 11 Sep 2013 08:40:03 -0400 Subject: [PATCH 049/107] Update to include info into config --- _config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/_config.yml b/_config.yml index 8c9fca7..8310a4a 100644 --- a/_config.yml +++ b/_config.yml @@ -217,3 +217,11 @@ authors: github: zekuny twitter: about: Yu is a first year MSIS student. He likes programming and wants to learn more from class. + josh: + name: Josh Rice + prof: false + gravatar: + website: + github: zekuny + twitter: biorice + about: Josh is an MSIS student who plays on the UNC soccer team. From 936fd732a5599fc0d6dac98e620527ff1afbc017 Mon Sep 17 00:00:00 2001 From: Caroline Pate Date: Wed, 11 Sep 2013 08:42:19 -0400 Subject: [PATCH 050/107] Update 2013-08-26-carolines-post.md --- _posts/2013-08-26-carolines-post.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_posts/2013-08-26-carolines-post.md b/_posts/2013-08-26-carolines-post.md index d9e1072..2c11b4e 100644 --- a/_posts/2013-08-26-carolines-post.md +++ b/_posts/2013-08-26-carolines-post.md @@ -2,6 +2,7 @@ layout: post author: carolinp categories: post +published: false --- - [ ] here - [ ] is @@ -9,6 +10,6 @@ categories: post - [ ] list - published: false + From cf9d1588f402f2eb5dcb8f7112ac29fcf8dc7a32 Mon Sep 17 00:00:00 2001 From: landongrindheim Date: Wed, 11 Sep 2013 08:42:50 -0400 Subject: [PATCH 051/107] Created testpost.md --- _posts/2013-09-11-test-post.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 _posts/2013-09-11-test-post.md diff --git a/_posts/2013-09-11-test-post.md b/_posts/2013-09-11-test-post.md new file mode 100644 index 0000000..4319687 --- /dev/null +++ b/_posts/2013-09-11-test-post.md @@ -0,0 +1,8 @@ +--- +layout: post +author: lgrindheim +categories: post +published:false +--- + +THIS IS A TEST POST. THIS IS ONLY A TEST POST. From 68c599ff372c4c958559b70156b49ba895a7f112 Mon Sep 17 00:00:00 2001 From: joshrice Date: Wed, 11 Sep 2013 08:43:20 -0400 Subject: [PATCH 052/107] change to correct github username --- _config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index 8310a4a..236351b 100644 --- a/_config.yml +++ b/_config.yml @@ -222,6 +222,6 @@ authors: prof: false gravatar: website: - github: zekuny + github: joshrice twitter: biorice about: Josh is an MSIS student who plays on the UNC soccer team. From 4113d4ce7ad3c4433e163cdbd178b6b0b99628db Mon Sep 17 00:00:00 2001 From: ashmbrown Date: Wed, 11 Sep 2013 08:45:00 -0400 Subject: [PATCH 053/107] Ashley's second post should now be hidden --- _posts/2013-08-28-Ashleys-Second-Post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-08-28-Ashleys-Second-Post.md b/_posts/2013-08-28-Ashleys-Second-Post.md index 13e0b90..c24fd8a 100644 --- a/_posts/2013-08-28-Ashleys-Second-Post.md +++ b/_posts/2013-08-28-Ashleys-Second-Post.md @@ -4,6 +4,7 @@ title: "Giving it My Best Shot" date: 2013-08-28 categories: Post author: abrown +published: false --- ## Here's Some Code! From 5b01cfd72dbb10e420b3f21c5c2e63f6f6699fd1 Mon Sep 17 00:00:00 2001 From: Sarah Date: Wed, 11 Sep 2013 08:45:22 -0400 Subject: [PATCH 054/107] Update 2013-08-28-capturingingooglehangoutvideos.md --- _posts/2013-08-28-capturingingooglehangoutvideos.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-08-28-capturingingooglehangoutvideos.md b/_posts/2013-08-28-capturingingooglehangoutvideos.md index b3ef210..690ceee 100644 --- a/_posts/2013-08-28-capturingingooglehangoutvideos.md +++ b/_posts/2013-08-28-capturingingooglehangoutvideos.md @@ -3,6 +3,7 @@ layout: post author: sburnham categories: post +published: false --- From aa88dd55786fa1b970468cecacb44c3e69b9f374 Mon Sep 17 00:00:00 2001 From: landongrindheim Date: Wed, 11 Sep 2013 08:45:22 -0400 Subject: [PATCH 055/107] Unpublished Landon's first post --- _posts/2013-08-26-Landons_Post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-08-26-Landons_Post.md b/_posts/2013-08-26-Landons_Post.md index aa852ab..04b9643 100644 --- a/_posts/2013-08-26-Landons_Post.md +++ b/_posts/2013-08-26-Landons_Post.md @@ -2,6 +2,7 @@ layout: post author: lgrindheim categories: post +published:false --- *This text will be italic* From 187a9db9e75d49ba31dbbf0ae141107034dfccdf Mon Sep 17 00:00:00 2001 From: Sarah Date: Wed, 11 Sep 2013 08:47:06 -0400 Subject: [PATCH 056/107] Update 2013-08-26-sarahs-post.md --- _posts/2013-08-26-sarahs-post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-08-26-sarahs-post.md b/_posts/2013-08-26-sarahs-post.md index 41c5781..1c0a0f3 100644 --- a/_posts/2013-08-26-sarahs-post.md +++ b/_posts/2013-08-26-sarahs-post.md @@ -2,6 +2,7 @@ layout: post author: sburnham categories: blog post +published: false --- #First Post# From fac7b1295aa43c2901108a600e9476e1159dfeb6 Mon Sep 17 00:00:00 2001 From: Dave Pcolar Date: Wed, 11 Sep 2013 08:49:12 -0400 Subject: [PATCH 057/107] Update 2013-08-26-daves-post.md change published to false --- _posts/dpcolar/2013-08-26-daves-post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/dpcolar/2013-08-26-daves-post.md b/_posts/dpcolar/2013-08-26-daves-post.md index ea75d06..584f774 100644 --- a/_posts/dpcolar/2013-08-26-daves-post.md +++ b/_posts/dpcolar/2013-08-26-daves-post.md @@ -2,6 +2,7 @@ layout: post author: dpcolar categories: post +published: false --- ### In Class post ### From b0e4acf1716b760bf39e99894639923833998e3c Mon Sep 17 00:00:00 2001 From: landongrindheim Date: Wed, 11 Sep 2013 08:56:09 -0400 Subject: [PATCH 058/107] Inserted space between published and false --- _posts/2013-09-11-test-post.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2013-09-11-test-post.md b/_posts/2013-09-11-test-post.md index 4319687..40f9b36 100644 --- a/_posts/2013-09-11-test-post.md +++ b/_posts/2013-09-11-test-post.md @@ -2,7 +2,7 @@ layout: post author: lgrindheim categories: post -published:false +published: false --- THIS IS A TEST POST. THIS IS ONLY A TEST POST. From f30da39453dcd7dce45aa03a0016ba07b1ad30b5 Mon Sep 17 00:00:00 2001 From: ashmbrown Date: Wed, 11 Sep 2013 10:30:47 -0400 Subject: [PATCH 059/107] I have fixed the misspelling in Categories - can be merged --- _posts/2013-08-26-ashleys-post.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2013-08-26-ashleys-post.md b/_posts/2013-08-26-ashleys-post.md index a43c986..ed74160 100644 --- a/_posts/2013-08-26-ashleys-post.md +++ b/_posts/2013-08-26-ashleys-post.md @@ -1,7 +1,7 @@ --- layout: post author: abrown -Categorie: post +categories: post published: false --- From 2716251cc0013247011423340d12be68c23229db Mon Sep 17 00:00:00 2001 From: landongrindheim Date: Wed, 11 Sep 2013 12:17:21 -0400 Subject: [PATCH 060/107] Inserted that pesky space. --- _posts/2013-08-26-Landons_Post.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2013-08-26-Landons_Post.md b/_posts/2013-08-26-Landons_Post.md index 04b9643..bfed45f 100644 --- a/_posts/2013-08-26-Landons_Post.md +++ b/_posts/2013-08-26-Landons_Post.md @@ -2,7 +2,7 @@ layout: post author: lgrindheim categories: post -published:false +published: false --- *This text will be italic* From 576b405888742e73e2838fcc6b68e8e15c51a8e2 Mon Sep 17 00:00:00 2001 From: Jaleesa Powell Date: Wed, 11 Sep 2013 14:36:33 -0400 Subject: [PATCH 061/107] Update 2013-09-09-JaleesasTurtles.md --- _posts/2013-09-09-JaleesasTurtles.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/_posts/2013-09-09-JaleesasTurtles.md b/_posts/2013-09-09-JaleesasTurtles.md index 05799cd..93d0e39 100644 --- a/_posts/2013-09-09-JaleesasTurtles.md +++ b/_posts/2013-09-09-JaleesasTurtles.md @@ -6,7 +6,17 @@ categories: post author: jpowell --- -I wanted to attempt to make [this adorable snake](http://i947.photobucket.com/albums/ad316/dieschwarzeskobra/cobra_zpsebc1bac9.jpg) [(source)](http://cache2.allpostersimages.com/p/LRG/30/3066/MFIDF00Z/posters/northcott-david-albino-monocled-cobra-native-to-se-asia.jpg). I don't think I even came close, but it's nearing time to be done with this. So [here's a link to the screenshot](http://i947.photobucket.com/albums/ad316/dieschwarzeskobra/Screenshotfrom2013-09-09232703_zps17e74735.png), and my code is below. +I wanted to attempt to make [this adorable snake] + +[(source)](http://cache2.allpostersimages.com/p/LRG/30/3066/MFIDF00Z/posters/northcott-david-albino-monocled-cobra-native-to-se-asia.jpg). I don't think I even came close, but it's nearing time to be done with this. My code is below. + + + +![AdorableSnake](http://i947.photobucket.com/albums/ad316/dieschwarzeskobra/cobra_zpsebc1bac9.jpg) + +![GitHub Logo](http://i947.photobucket.com/albums/ad316/dieschwarzeskobra/Screenshotfrom2013-09-09232703_zps17e74735.png) + + Sources: * [Python documentation](http://docs.python.org/2/library/turtle.html) From 1650d58bec195af32068f6807fdcdec874871cab Mon Sep 17 00:00:00 2001 From: Jaleesa Powell Date: Wed, 11 Sep 2013 14:40:38 -0400 Subject: [PATCH 062/107] Update 2013-08-28-JaleesaProposesCSS.md --- _posts/2013-08-28-JaleesaProposesCSS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-08-28-JaleesaProposesCSS.md b/_posts/2013-08-28-JaleesaProposesCSS.md index 8305a08..6d15eff 100644 --- a/_posts/2013-08-28-JaleesaProposesCSS.md +++ b/_posts/2013-08-28-JaleesaProposesCSS.md @@ -2,6 +2,7 @@ layout: post author: jpowell categories: post +published: false --- # Maybe the site would look better... From 992dca79d498dd6cf3be8c470a3be6dfe14f6a3f Mon Sep 17 00:00:00 2001 From: Jaleesa Powell Date: Wed, 11 Sep 2013 14:41:09 -0400 Subject: [PATCH 063/107] Update 2013-08-28-JaleesaProposesCSS.md --- _posts/2013-08-28-JaleesaProposesCSS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2013-08-28-JaleesaProposesCSS.md b/_posts/2013-08-28-JaleesaProposesCSS.md index 6d15eff..ae27e61 100644 --- a/_posts/2013-08-28-JaleesaProposesCSS.md +++ b/_posts/2013-08-28-JaleesaProposesCSS.md @@ -1,8 +1,8 @@ --- layout: post author: jpowell -categories: post published: false +categories: post --- # Maybe the site would look better... From 619c4fb075daf30981aacf388a3dc70c0a20d450 Mon Sep 17 00:00:00 2001 From: Jaleesa Powell Date: Wed, 11 Sep 2013 14:41:23 -0400 Subject: [PATCH 064/107] Update 2013-08-26-jaleesas-post.md --- _posts/2013-08-26-jaleesas-post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-08-26-jaleesas-post.md b/_posts/2013-08-26-jaleesas-post.md index b6fad1f..9ab47c3 100644 --- a/_posts/2013-08-26-jaleesas-post.md +++ b/_posts/2013-08-26-jaleesas-post.md @@ -1,6 +1,7 @@ --- layout: post author: jpowell +published: false categories: post --- From 3a4f483ded83184d81ddf6c5859451ea9f765f23 Mon Sep 17 00:00:00 2001 From: Dave Pcolar Date: Wed, 11 Sep 2013 22:08:51 -0400 Subject: [PATCH 065/107] Update 2013-09-09-Daves-circles.md Title correction - the circles are Tangential, not Concentric! --- _posts/dpcolar/2013-09-09-Daves-circles.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_posts/dpcolar/2013-09-09-Daves-circles.md b/_posts/dpcolar/2013-09-09-Daves-circles.md index f05ab48..2e4a19b 100644 --- a/_posts/dpcolar/2013-09-09-Daves-circles.md +++ b/_posts/dpcolar/2013-09-09-Daves-circles.md @@ -1,7 +1,7 @@ --- layout: post author: dpcolar -title: Dave's Concentric Circles +title: Dave's Tangential Circles categories: post --- @@ -9,7 +9,7 @@ For this assignment, I expermented with sizes and fills of circles. The code us
```python -# Concentric Circles of random colors +# Tangential Circles of random colors import turtle from random import randint @@ -33,4 +33,4 @@ turtle.done() ``` -![alternately filled concentric circles](http://www.unc.edu/~pcolar/screenshot.png) +![alternately filled tangential circles](http://www.unc.edu/~pcolar/screenshot.png) From aa5ff93779af98e53716f620be2da52f4cf2432d Mon Sep 17 00:00:00 2001 From: Danielle Date: Fri, 13 Sep 2013 10:25:12 -0400 Subject: [PATCH 066/107] Changing first post to draft #249 @eah13 I apologize for the slow response. --- _posts/2013-08-26-danielles-post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-08-26-danielles-post.md b/_posts/2013-08-26-danielles-post.md index a52f67d..28c2b54 100644 --- a/_posts/2013-08-26-danielles-post.md +++ b/_posts/2013-08-26-danielles-post.md @@ -2,6 +2,7 @@ layout: post author: danielle categories: post +published: false --- ``` From 9c1ea68c8d2e8adbbffeb213a970e5dc1ac27508 Mon Sep 17 00:00:00 2001 From: Danielle Date: Fri, 13 Sep 2013 10:29:07 -0400 Subject: [PATCH 067/107] first post to draft #249 --- _posts/2013-08-26-danielles-post.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_posts/2013-08-26-danielles-post.md b/_posts/2013-08-26-danielles-post.md index a52f67d..076f5a8 100644 --- a/_posts/2013-08-26-danielles-post.md +++ b/_posts/2013-08-26-danielles-post.md @@ -2,6 +2,8 @@ layout: post author: danielle categories: post +published: false + --- ``` From f78124f7006c6a2ffe62cc0c9215c93e72e84748 Mon Sep 17 00:00:00 2001 From: Danielle Date: Fri, 13 Sep 2013 10:33:09 -0400 Subject: [PATCH 068/107] Danielle's edited turtle post --- _posts/2013-09-09-turtle-post.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/2013-09-09-turtle-post.md b/_posts/2013-09-09-turtle-post.md index a9278da..2352019 100644 --- a/_posts/2013-09-09-turtle-post.md +++ b/_posts/2013-09-09-turtle-post.md @@ -16,6 +16,7 @@ I looked at the following sites to get inspiration about the code I wrote (they Here is my code: '''python + import turtle kenny = turtle.Turtle() kenny.penup() From d49225ac4281c8462e0783719d62a450610bbf6f Mon Sep 17 00:00:00 2001 From: Danielle Date: Fri, 13 Sep 2013 10:35:35 -0400 Subject: [PATCH 069/107] Danielle's fixed syntax highlighting --- _posts/2013-09-09-turtle-post.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/_posts/2013-09-09-turtle-post.md b/_posts/2013-09-09-turtle-post.md index 2352019..3f0ce5b 100644 --- a/_posts/2013-09-09-turtle-post.md +++ b/_posts/2013-09-09-turtle-post.md @@ -15,8 +15,7 @@ I looked at the following sites to get inspiration about the code I wrote (they Here is my code: -'''python - +```python import turtle kenny = turtle.Turtle() kenny.penup() @@ -75,6 +74,6 @@ kenny.goto(-90, -190) kenny.pendown() kenny.forward(60) turtle.done() -''' +``` ![This is my screen shot](http://imgur.com/jqo3Nqx) From 590e37a5257eb0e93621560c51cae248283a23a0 Mon Sep 17 00:00:00 2001 From: Danielle Date: Fri, 13 Sep 2013 10:54:25 -0400 Subject: [PATCH 070/107] Danielle's timy turtle imbedded image --- _posts/2013-09-09-turtle-post.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2013-09-09-turtle-post.md b/_posts/2013-09-09-turtle-post.md index 3f0ce5b..2265c50 100644 --- a/_posts/2013-09-09-turtle-post.md +++ b/_posts/2013-09-09-turtle-post.md @@ -76,4 +76,4 @@ kenny.forward(60) turtle.done() ``` -![This is my screen shot](http://imgur.com/jqo3Nqx) +![This is my screen shot](http://i.imgur.com/jqo3Nqxs.jpg) From a8a37ed18109856fc9d7cf3fc42da0e9cf2315b9 Mon Sep 17 00:00:00 2001 From: Danielle Date: Fri, 13 Sep 2013 11:13:19 -0400 Subject: [PATCH 071/107] Getting my posts into a subfolder (Fixes #255) --- _posts/{ => danielle}/2013-08-26-danielles-post.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename _posts/{ => danielle}/2013-08-26-danielles-post.md (100%) diff --git a/_posts/2013-08-26-danielles-post.md b/_posts/danielle/2013-08-26-danielles-post.md similarity index 100% rename from _posts/2013-08-26-danielles-post.md rename to _posts/danielle/2013-08-26-danielles-post.md From abd54be5cc78788d6c34b14da47653ae795cedbd Mon Sep 17 00:00:00 2001 From: Danielle Date: Fri, 13 Sep 2013 11:14:36 -0400 Subject: [PATCH 072/107] Getting my posts into a subfolder (Fixes #255) --- _posts/{ => danielle}/2013-09-09-turtle-post.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename _posts/{ => danielle}/2013-09-09-turtle-post.md (100%) diff --git a/_posts/2013-09-09-turtle-post.md b/_posts/danielle/2013-09-09-turtle-post.md similarity index 100% rename from _posts/2013-09-09-turtle-post.md rename to _posts/danielle/2013-09-09-turtle-post.md From ec21ba2509bc5843b31a8de8ed796a64592c96e0 Mon Sep 17 00:00:00 2001 From: Danielle Date: Fri, 13 Sep 2013 11:19:26 -0400 Subject: [PATCH 073/107] Getting my posts in a subfolder (Fixes #255) --- _posts/{ => danielle}/2013-08-28-Syntax-Highlighting-example.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename _posts/{ => danielle}/2013-08-28-Syntax-Highlighting-example.md (86%) diff --git a/_posts/2013-08-28-Syntax-Highlighting-example.md b/_posts/danielle/2013-08-28-Syntax-Highlighting-example.md similarity index 86% rename from _posts/2013-08-28-Syntax-Highlighting-example.md rename to _posts/danielle/2013-08-28-Syntax-Highlighting-example.md index 86ac594..bbf7755 100644 --- a/_posts/2013-08-28-Syntax-Highlighting-example.md +++ b/_posts/danielle/2013-08-28-Syntax-Highlighting-example.md @@ -4,7 +4,7 @@ author: danielle categories: post --- -Here is some example code of Ruby: (It was found [here](https://www.ruby-lang.org/en/)) +Here is some example code of ruby: (It was found [here](https://www.ruby-lang.org/en/)) ```ruby # Ruby knows what you From 1ac88a0b273e6e262463492349e421a9498fc0d5 Mon Sep 17 00:00:00 2001 From: Jaleesa Powell Date: Fri, 13 Sep 2013 12:07:56 -0400 Subject: [PATCH 074/107] Update main.css --- css/main.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/css/main.css b/css/main.css index cf489a4..cb51b28 100755 --- a/css/main.css +++ b/css/main.css @@ -147,6 +147,16 @@ ul.posts span { /* /*****************************************************************************/ + +/* Jaleesa's Edit */ + +.post img{ + max-width: 500px; + display: block; + margin-left: auto; + margin-right: auto; +} + /* standard */ .post pre { border: 1px solid #ddd; From adb4d0b10fe168d4a3980e8bbf9baa6a14119972 Mon Sep 17 00:00:00 2001 From: Michelle Baxter Date: Mon, 16 Sep 2013 07:51:54 -0400 Subject: [PATCH 075/107] Test post to see co-authorship capabilities Just for me and Stacey. No one else. Get out. --- _posts/2013-09-16-Test-Co-Author-post.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 _posts/2013-09-16-Test-Co-Author-post.md diff --git a/_posts/2013-09-16-Test-Co-Author-post.md b/_posts/2013-09-16-Test-Co-Author-post.md new file mode 100644 index 0000000..ff957e2 --- /dev/null +++ b/_posts/2013-09-16-Test-Co-Author-post.md @@ -0,0 +1,7 @@ +--- +layout: post +author: mbaxter, smantooth +categories: post +--- + +AHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH From 9bf5ec56bee9b098a38a897a3d4c2f8018288384 Mon Sep 17 00:00:00 2001 From: eah13 Date: Mon, 16 Sep 2013 08:03:05 -0400 Subject: [PATCH 076/107] Seventh class notes draft --- _posts/elliott/2013-09-16-seventh-class.md | 48 ++++++ _site/2013/08/28/codefromerinc.html | 2 +- _site/2013/09/16/seventh-class.html | 140 ++++++++++++++++++ _site/css/main.css | 10 ++ _site/ecarter/2013/09/09/erinc-turtle.html | 2 +- _site/index.html | 8 + _site/people.html | 12 +- .../2013/08/26/Michelle-has-an-adventure.html | 2 +- .../08/28/Syntax-Highlighting-example.html | 2 +- _site/posts/2013/08/28/Pretty-Code.html | 2 +- .../posts/2013/09/09/Drawing-with-Turtle.html | 2 +- 11 files changed, 222 insertions(+), 8 deletions(-) create mode 100644 _posts/elliott/2013-09-16-seventh-class.md create mode 100644 _site/2013/09/16/seventh-class.html diff --git a/_posts/elliott/2013-09-16-seventh-class.md b/_posts/elliott/2013-09-16-seventh-class.md new file mode 100644 index 0000000..3e48b9c --- /dev/null +++ b/_posts/elliott/2013-09-16-seventh-class.md @@ -0,0 +1,48 @@ +--- +layout: post +author: elliott +title: Seventh Class Notes +date: 2013-09-16 8:00am +published: true +--- + +### Announcements + +* Vocab open session +* Final project ideas: Examples & feedback +* Finding Meetups: Meetup.com. Reactions? When you go to a meetup, post about it. Keep track of the link if you want. At the end of the semester I'll ask you for a link to each of these posts +* Meetups for X group when you are in Y group +* Self Study: Has anyone been studying ahead? Found any good resources? [Learn X in Y Minutes](http://learnxinyminutes.com) +* Look ahead: Contribution Guidelines. We'll come up with class contribution guidelines for our open source project together. +* Look ahead: Git on the command line. Can't wait? [Try git](http://trygit.com) +* Showoff: [Jaleesa's Post](http://silshack.github.io/fall2013/post/2013/09/09/JaleesasTurtles.html) & [CSS pull request #257](https://github.com/silshack/fall2013/pull/257). Jaleesa didn't like how huge her screenshots were on the site. So she submitted a pull request changing the CSS of the site. Now all images are centered and have a maximum width. Nice work Jaleesa! +* Milestones: Make sure you have one issue or pull request under each Milestone. If not, find the issue/pull request in question and @mention me to tag it to the right Milestone. Thanks! + +### Codingbat.com +This is a practice site. You'll find others like them around the internet. We'll be focused on the Python section. This week we'll complete a good many of these exercises and learn things along the way. The more complicated ones we'll use pseudocode to map out the answers, then code them. + +Do them in this order: + +1. [Strings 1](http://codingbat.com/python/String-1) +2. [List 1](http://codingbat.com/python/List-1) +3. [Warmup 1](http://codingbat.com/python/Warmup-1) The warmup problems are more complicated but have solutions with them. Problems like [this one](http://codingbat.com/prob/p120546) are good at showing how multiple answers can solve the problem. + +Stuck? [String Docs](http://codingbat.com/doc/python-strings.html) +[List Docs](http://codingbat.com/doc/python-lists.html) + + +Fun fact: the [done page](http://codingbat.com/done) will show you stats on how long it took you to get various problems. Don't worry about making mistakes- just make sure you're learning! + +If you'd like to work ahead a little, continue on in this order: + +4. [Logic 1](http://codingbat.com/python/Logic-1) +5. [Lists 2](http://codingbat.com/python/Logic-2) +6. [Warmup 2](http://codingbat.com/python/Warmup-2) + +[If Docs](http://codingbat.com/doc/python-if-boolean.html) + +### Assignment +On Wednesday, add a screenshot of your progress on the site. You'll likely want to create an account to save your progress from day to day. + +Here's a screenshot of my progress prepping for the class: +![screenshot](http://www.unc.edu/~eah13/codingbat.jpg) diff --git a/_site/2013/08/28/codefromerinc.html b/_site/2013/08/28/codefromerinc.html index 3c108d1..4f85be0 100644 --- a/_site/2013/08/28/codefromerinc.html +++ b/_site/2013/08/28/codefromerinc.html @@ -60,7 +60,7 @@

Some code from Erin C.

- Erin is a second-year MSIS student. She works at the SILS Help Desk, stop on by! Find Erin Carter on Twitter, Github, and on the web. + Erin is a second-year MSIS student. She works at the SILS Help Desk, stop on by! Find Erin Carter on Twitter, Github, and on the web.
diff --git a/_site/2013/09/16/seventh-class.html b/_site/2013/09/16/seventh-class.html new file mode 100644 index 0000000..dfb2fa7 --- /dev/null +++ b/_site/2013/09/16/seventh-class.html @@ -0,0 +1,140 @@ + + + + + + Seventh Class Notes + + + + + + + + + + + + Fork me on GitHub + +
+
+ + + + +

Seventh Class Notes

+ +

+by Elliott Hauser +

+ +

16 Sep 2013

+ +
+

Announcements

+ +
    +
  • Vocab open session
  • +
  • Final project ideas: Examples & feedback
  • +
  • Finding Meetups: Meetup.com. Reactions? When you go to a meetup, post about it. Keep track of the link if you want. At the end of the semester I'll ask you for a link to each of these posts
  • +
  • Meetups for X group when you are in Y group
  • +
  • Self Study: Has anyone been studying ahead? Found any good resources? Learn X in Y Minutes
  • +
  • Look ahead: Contribution Guidelines. We'll come up with class contribution guidelines for our open source project together.
  • +
  • Look ahead: Git on the command line. Can't wait? Try git
  • +
  • Showoff: Jaleesa's Post & CSS pull request #257. Jaleesa didn't like how huge her screenshots were on the site. So she submitted a pull request changing the CSS of the site. Now all images are centered and have a maximum width. Nice work Jaleesa!
  • +
  • Milestones: Make sure you have one issue or pull request under each Milestone. If not, find the issue/pull request in question and @mention me to tag it to the right Milestone. Thanks!
  • +
+ +

Codingbat.com

+ +

This is a practice site. You'll find others like them around the internet. We'll be focused on the Python section. This week we'll complete a good many of these exercises and learn things along the way. The more complicated ones we'll use pseudocode to map out the answers, then code them.

+ +

Do them in this order:

+ +
    +
  1. Strings 1
  2. +
  3. List 1
  4. +
  5. Warmup 1 The warmup problems are more complicated but have solutions with them. Problems like this one are good at showing how multiple answers can solve the problem.
  6. +
+ +

Stuck? String Docs +List Docs

+ +

Fun fact: the done page will show you stats on how long it took you to get various problems. Don't worry about making mistakes- just make sure you're learning!

+ +

If you'd like to work ahead a little, continue on in this order:

+ +
    +
  1. Logic 1
  2. +
  3. Lists 2
  4. +
  5. Warmup 2
  6. +
+ +

If Docs

+ +

Assignment

+ +

On Wednesday, add a screenshot of your progress on the site. You'll likely want to create an account to save your progress from day to day.

+ +

Here's a screenshot of my progress prepping for the class: +screenshot

+ +
+ +
+ Elliott Hauser is a PhD Student in information science at UNC Chapel Hill. He's hacking education as one of the cofounders of Coursefork.org. Find Elliott Hauser on Twitter, Github, and on the web. +
+ +
+ + + comments powered by Disqus + + + + +
+
+ + + + + diff --git a/_site/css/main.css b/_site/css/main.css index cf489a4..cb51b28 100755 --- a/_site/css/main.css +++ b/_site/css/main.css @@ -147,6 +147,16 @@ ul.posts span { /* /*****************************************************************************/ + +/* Jaleesa's Edit */ + +.post img{ + max-width: 500px; + display: block; + margin-left: auto; + margin-right: auto; +} + /* standard */ .post pre { border: 1px solid #ddd; diff --git a/_site/ecarter/2013/09/09/erinc-turtle.html b/_site/ecarter/2013/09/09/erinc-turtle.html index bc7ff5d..746739c 100644 --- a/_site/ecarter/2013/09/09/erinc-turtle.html +++ b/_site/ecarter/2013/09/09/erinc-turtle.html @@ -66,7 +66,7 @@

Erin C.'s turtle drawing, box & circles

- Erin is a second-year MSIS student. She works at the SILS Help Desk, stop on by! Find Erin Carter on Twitter, Github, and on the web. + Erin is a second-year MSIS student. She works at the SILS Help Desk, stop on by! Find Erin Carter on Twitter, Github, and on the web.
diff --git a/_site/index.html b/_site/index.html index 150bc25..42d821e 100644 --- a/_site/index.html +++ b/_site/index.html @@ -35,6 +35,14 @@

The SILShack class blog - Fall 2013 + + +
  • 16 Sep 2013 » Seventh Class Notes by Elliott Hauser
  • + +
    + + +
  • 11 Sep 2013 » Post Sorting by Elliott Hauser
  • diff --git a/_site/people.html b/_site/people.html index 0391d11..0f2596d 100644 --- a/_site/people.html +++ b/_site/people.html @@ -40,6 +40,10 @@

    Elliott Hauser

      +
    • => Seventh Class Notes - 16 Sep 2013
    • + + +
    • => Post Sorting - 11 Sep 2013
    • @@ -175,7 +179,7 @@

      Programming for Information Professionals Participants

      Michelle Baxter

      -

      Grad student, pop culture enthusiast. Going to get ALL the bonus points! Find Michelle Baxter on Twitter, Github, and on the web.

      +

      Grad student, pop culture enthusiast. Find Michelle Baxter on Twitter, Github, and on the web.

      • Drawing With Turtle

      • @@ -202,7 +206,7 @@

        Sarah Breen

        Erin Carter

        -

        Erin is a second-year MSIS student. She works at the SILS Help Desk, stop on by! Find Erin Carter on Twitter, Github, and on the web.

        +

        Erin is a second-year MSIS student. She works at the SILS Help Desk, stop on by! Find Erin Carter on Twitter, Github, and on the web.

        +

        Josh Rice

        + +

        Josh is an MSIS student who plays on the UNC soccer team. Find Josh Rice on Twitter, Github, and on the web.

        +