Skip to content

Commit 58d8f09

Browse files
author
Steve Krouse
committed
fixed year on episdoes, thanks to irvin for the notice
1 parent 0092877 commit 58d8f09

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

favicon.ico

318 Bytes
Binary file not shown.

index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -138,11 +138,11 @@ <h4>Past Research</h4>
138138
<li><span class="date">2017 May 09 - </span><a target="_blank" href="https://medium.com/@stevekrouse/rose-project-april-2017-32af31b078b1">The Rose Project (April 2017)</a></li>
139139
<li><span class="date">2017 Mar 25 - </span><a target="_blank" href="https://medium.com/@stevekrouse/rose-983dc5e0908f">The Rose Project (March 2017)</a></li>
140140
<li><span class="date">2017 Jan 06 - </span><a target="_blank" href="https://medium.com/@stevekrouse/resources-for-creating-front-end-programming-languages-and-frameworks-in-2017-a0c097625f9d">Resources for creating front-end programming languages and frameworks in 2017</a></li>
141-
<li><span class="date">2016 Nov 19 - </span><a target="_blank" href="https://medium.com/@stevekrouse/types-are-shapes-d6af1e83192f">Types are shapes — a graphical programming exploration</a></li>
142-
<li><span class="date">2016 Aug 02 - </span><a target="_blank" href="https://medium.com/@stevekrouse/goodbye-seymour-cb712757264f">Goodbye, Seymour</a></li>
143-
<li><span class="date">2016 Jul 27 - </span><a target="_blank" href="https://medium.com/@stevekrouse/the-trick-to-teach-anonymous-functions-to-11-year-olds-558b697d7a53">The Trick to Teach Anonymous Functions to 11-Year-Olds</a></li>
144-
<li><span class="date">2016 Jul 25 - </span><a target="_blank" href="https://medium.freecodecamp.com/scratch-has-a-marketing-problem-f84626bd18ef">Scratch Has a Marketing Problem</a></li>
145-
<li><span class="date">2016 Jul 12 - </span><a target="_blank" href="https://medium.com/@stevekrouse/woof-d9adf2110fc6">WoofJS — making JavaScript learnable</a></li>
141+
<li><span class="date">2017 Nov 19 - </span><a target="_blank" href="https://medium.com/@stevekrouse/types-are-shapes-d6af1e83192f">Types are shapes — a graphical programming exploration</a></li>
142+
<li><span class="date">2017 Aug 02 - </span><a target="_blank" href="https://medium.com/@stevekrouse/goodbye-seymour-cb712757264f">Goodbye, Seymour</a></li>
143+
<li><span class="date">2017 Jul 27 - </span><a target="_blank" href="https://medium.com/@stevekrouse/the-trick-to-teach-anonymous-functions-to-11-year-olds-558b697d7a53">The Trick to Teach Anonymous Functions to 11-Year-Olds</a></li>
144+
<li><span class="date">2017 Jul 25 - </span><a target="_blank" href="https://medium.freecodecamp.com/scratch-has-a-marketing-problem-f84626bd18ef">Scratch Has a Marketing Problem</a></li>
145+
<li><span class="date">2017 Jul 12 - </span><a target="_blank" href="https://medium.com/@stevekrouse/woof-d9adf2110fc6">WoofJS — making JavaScript learnable</a></li>
146146

147147
</ul>
148148
</div>

journal.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Andre replied already! He is busy preparing for a bunch of conferences so might
2323
* http://futureofcoding.org/journal#my-first-full-day-with-eve
2424
* Imp + Jamie
2525
* http://futureofcoding.org/journal#august-25-2017-1216pm
26+
* Finding a time to chat soon. Think I may have found a kindred spirit and friend.
2627
* StreamSheets
2728
* http://futureofcoding.org/journal#august-28-2017-228pm
2829
* Waiting on Andre
@@ -815,8 +816,9 @@ Clearly, I should start with (8) because it will help me come up with other thin
815816
}
816817

817818
var all = document.getElementsByTagName("li");
818-
for (var i=0, max=all.length; i < max; i++) {
819-
var element = all[i]; element.innerHTML = urlify(element.innerHTML);
819+
for (var i=0, i < all.length; i++) {
820+
var element = all[i];
821+
element.innerHTML = urlify(element.innerHTML);
820822
}
821823

822824
</script>

0 commit comments

Comments
 (0)