Skip to content

Commit de31221

Browse files
committed
rebuilding site Fri Jan 22 20:37:42 EST 2016
1 parent daa74cd commit de31221

File tree

21 files changed

+319
-52
lines changed

21 files changed

+319
-52
lines changed

Diff for: config.toml

+2-12
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ canonifyurls = true
1313
page = "/:slug"
1414

1515
[params]
16-
name = "Cody"
16+
name = "Cody Whitby"
1717
description = "Intro to the Internet of Things - ARTS 391 - 004 Spring 2016"
1818
copyright = "✌ Spring 2016       ✎ [email protected]"
1919

@@ -25,14 +25,4 @@ canonifyurls = true
2525
[params.offcanvas]
2626
# Menu items
2727
title = "Cody Whitby"
28-
29-
subscribe = "Subscribe"
30-
followme = "Follow me on"
31-
32-
[[params.offcanvas.socialnetworks]]
33-
name = "Github"
34-
url = "//github.com/spf13"
35-
36-
[[params.offcanvas.socialnetworks]]
37-
name = "Twitter"
38-
url = "//twitter.com/spf13"
28+

Diff for: content/page/loaners.md

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
date = "2016-01-22T14:12:14-05:00"
33
description = ""
44
title = "Hardware Checkout"
5-
type = "page"
65
+++
76

87
I have a small collection of various boards and sensors that I'm always adding to and will make available to loan out if you agree to do your best not to break or lose anything. This could be useful for trying before buying or just to tinker with actual hardware.

Diff for: content/page/resources.md

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
date = "2016-01-22T12:33:21-05:00"
33
description = ""
44
title = "Resources"
5-
type = "page"
65
+++
76

87
### Hardware

Diff for: content/post/hello.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
+++
22
date = "2016-01-22T10:41:54-05:00"
33
title = "Hello World"
4-
54
+++
65

76
Hi everyone, this little site will be serving as a central repository for the course. That includes any assignments, resources, syllabus, discussions and sporadic posts of interesting or inspiring links.
87

98
Find a list of resources in the menu to the right ->
109

11-
All posts have comments enabled below \/, any comments made count towards class participation the same as in class discussions do. Assigned readings will be announced in class and posted here and it is required to post a brief comment on these. Comments at a minimum only need to be a sentence or two and can be a question about the material, any insights gained, replying to another comment or just quick thoughts on the subject. Also please use a Disqus username that allows me to know who is who.
10+
All posts have comments enabled below, any comments made count towards class participation the same as in class discussions do. Assigned readings will be announced in class and posted here and it is required to post a brief comment on these. Comments at a minimum only need to be a sentence or two and can be a question about the material, any insights gained, replying to another comment or just quick thoughts on the subject. Also please use a Disqus username that allows me to know who is who.
11+
12+
thanks thanks!

Diff for: content/post/what-is-code.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
+++
2+
date = "2016-01-22T20:02:57-05:00"
3+
description = ""
4+
title = "What is Code?"
5+
+++
6+
7+
![what is code](/img/whatiscode.png "what is code")
8+
9+
## [http://www.bloomberg.com/graphics/2015-paul-ford-what-is-code/](http://www.bloomberg.com/graphics/2015-paul-ford-what-is-code/)
10+
11+
This is not assigned reading, just one of probably many posts I'll make that in someways relate to our class. A really great dude [Paul Ford](https://twitter.com/ftrain) wrote it and you should check out other stuff he writes/does/tweets too.
12+
13+
Longer read but very worth it I think.

Diff for: deploy.sh

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/bin/bash
2+
3+
echo -e "\033[0;32mDeploying updates to GitHub...\033[0m"
4+
5+
# Build the project.
6+
hugo
7+
8+
# Add changes to git.
9+
git add -A
10+
11+
# Commit changes.
12+
msg="rebuilding site `date`"
13+
if [ $# -eq 1 ]
14+
then msg="$1"
15+
fi
16+
git commit -m "$msg"
17+
18+
# Push source and build repos.
19+
git push origin master
20+
git subtree push --prefix=public [email protected]:streeetlamp/Intro-to-the-Internet-of-Things.git gh-pages

Diff for: layouts/_default/single.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ <h1 class="page-title" itemprop="name headline">{{ .Title }}</h1>
2020

2121
{{ if .NextInSection }}
2222
<a rel="next" href="{{ .NextInSection.Permalink }}" id="next">
23-
<span class="nav-title nav-title-next">{{ with .Site.Params.newer }}{{ . }}{{ end }}</span> &rarr;
23+
&rarr; <small>{{ .NextInSection.Title }}</small>
2424
</a>
2525
{{ end }}
2626
{{ if .PrevInSection }}
2727
<a rel="prev" href="{{ .PrevInSection.Permalink }}" id="prev">
28-
&larr; <span class="nav-title nav-title-prev">{{ with .Site.Params.older }}{{ . }}{{ end }}</span>
28+
&larr; <small>{{ .PrevInSection.Title }}</small>
2929
</a>
3030
{{ end }}
3131
</article>

Diff for: layouts/partials/off-canvas.html

+3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,12 @@
66
{{ with .Site.Params.offcanvas.title }}
77
<h1>{{ . }}</h1>
88
{{ end }}
9+
910
{{ with .Site.Params.offcanvas.bio }}
1011
<p>{{ . | markdownify }}</p>
1112
{{ end }}
13+
<small>ARTS 391 - 004</small>
14+
<p><small><a href="https://github.com/streeetlamp/Intro-to-the-Internet-of-Things" title="GitHub Repo">GitHub Repo</a></small></p>
1215
</div>
1316
<nav>
1417
<br>

Diff for: public/2016/01/22/hello-world/index.html

+12-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
1010
<meta http-equiv="content-language" content="en-us" />
1111
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
12-
<meta name="author" content="Cody">
12+
<meta name="author" content="Cody Whitby">
1313
<meta name="description" content="Intro to the Internet of Things - ARTS 391 - 004 Spring 2016">
1414
<meta name="generator" content="Hugo 0.15" />
1515

@@ -22,15 +22,18 @@
2222

2323
<div class="off-canvas">
2424
<figure class="avatar">
25-
<img src="http://streeetlamp.github.io/Intro-to-the-Internet-of-Things/img/tayne.gif" title="Cody">
25+
<img src="http://streeetlamp.github.io/Intro-to-the-Internet-of-Things/img/tayne.gif" title="Cody Whitby">
2626
</figure>
2727
<div class="bio">
2828

2929
<h1>Cody Whitby</h1>
3030

31+
3132

3233
3334

35+
<small>ARTS 391 - 004</small>
36+
<p><small><a href="https://github.com/streeetlamp/Intro-to-the-Internet-of-Things" title="GitHub Repo">GitHub Repo</a></small></p>
3437
</div>
3538
<nav>
3639
<br>
@@ -70,7 +73,9 @@ <h1 class="page-title" itemprop="name headline">Hello World</h1>
7073

7174
<p>Find a list of resources in the menu to the right -&gt;</p>
7275

73-
<p>All posts have comments enabled below \/, any comments made count towards class participation the same as in class discussions do. Assigned readings will be announced in class and posted here and it is required to post a brief comment on these. Comments at a minimum only need to be a sentence or two and can be a question about the material, any insights gained, replying to another comment or just quick thoughts on the subject. Also please use a Disqus username that allows me to know who is who.</p>
76+
<p>All posts have comments enabled below, any comments made count towards class participation the same as in class discussions do. Assigned readings will be announced in class and posted here and it is required to post a brief comment on these. Comments at a minimum only need to be a sentence or two and can be a question about the material, any insights gained, replying to another comment or just quick thoughts on the subject. Also please use a Disqus username that allows me to know who is who.</p>
77+
78+
<p>thanks thanks!</p>
7479

7580
</div>
7681

@@ -91,6 +96,10 @@ <h1 class="page-title" itemprop="name headline">Hello World</h1>
9196
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
9297

9398

99+
<a rel="next" href="http://streeetlamp.github.io/Intro-to-the-Internet-of-Things/2016/01/22/what-is-code" id="next">
100+
&rarr; <small>What is Code?</small>
101+
</a>
102+
94103

95104
</article>
96105
</section>

Diff for: public/2016/01/22/what-is-code/index.html

+125
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
<!DOCTYPE html>
2+
3+
4+
5+
<html class="no-js">
6+
<head>
7+
<title>What is Code? &middot; Intro to the Internet of Things</title>
8+
<meta charset="utf-8">
9+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
10+
<meta http-equiv="content-language" content="en-us" />
11+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
12+
<meta name="author" content="Cody Whitby">
13+
<meta name="description" content="Intro to the Internet of Things - ARTS 391 - 004 Spring 2016">
14+
<meta name="generator" content="Hugo 0.15" />
15+
16+
<!-- Stylesheets -->
17+
<link rel="stylesheet" type="text/css" href="http://streeetlamp.github.io/Intro-to-the-Internet-of-Things/css/main.css" />
18+
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.6/styles/tomorrow.min.css" />
19+
<link href="https://fonts.googleapis.com/css?family=Karla:400,400italic,700,700italic" rel="stylesheet" type="text/css">
20+
</head>
21+
<body>
22+
23+
<div class="off-canvas">
24+
<figure class="avatar">
25+
<img src="http://streeetlamp.github.io/Intro-to-the-Internet-of-Things/img/tayne.gif" title="Cody Whitby">
26+
</figure>
27+
<div class="bio">
28+
29+
<h1>Cody Whitby</h1>
30+
31+
32+
33+
34+
35+
<small>ARTS 391 - 004</small>
36+
<p><small><a href="https://github.com/streeetlamp/Intro-to-the-Internet-of-Things" title="GitHub Repo">GitHub Repo</a></small></p>
37+
</div>
38+
<nav>
39+
<br>
40+
<ul>
41+
42+
<li>
43+
<a href="http://streeetlamp.github.io/Intro-to-the-Internet-of-Things/hardware-checkout" itemprop="url">Hardware Checkout</a>
44+
</li>
45+
46+
<li>
47+
<a href="http://streeetlamp.github.io/Intro-to-the-Internet-of-Things/resources" itemprop="url">Resources</a>
48+
</li>
49+
50+
<li><a href="http://streeetlamp.github.io/Intro-to-the-Internet-of-Things/pdf/IoT-Spring-2016-Syllabus.pdf" title="Syllabus">Syllabus <small>[PDF]</small></a></li>
51+
</ul>
52+
</nav>
53+
</div>
54+
55+
<div class="site-wrapper">
56+
<header>
57+
<div class="h-wrap">
58+
59+
<h1 class="title glitch" data-text="Intro to the Internet of Things"><a href="http://streeetlamp.github.io/Intro-to-the-Internet-of-Things/">Intro to the Internet of Things</a></h1>
60+
61+
<a class="menu-icon" title="Menu"><span class="lines"></span></a>
62+
</div>
63+
</header>
64+
65+
<section class="single-wrap">
66+
<article class="single-content" itemscope itemtype="//schema.org/BlogPosting">
67+
<h1 class="page-title" itemprop="name headline">What is Code?</h1>
68+
69+
<time datetime="" itemprop="datePublished">January 22 2016</time>
70+
71+
<div itemprop="articleBody">
72+
73+
74+
<p><img src="http://streeetlamp.github.io/Intro-to-the-Internet-of-Things/img/whatiscode.png" alt="what is code" title="what is code" /></p>
75+
76+
<h2 id="http-www-bloomberg-com-graphics-2015-paul-ford-what-is-code-http-www-bloomberg-com-graphics-2015-paul-ford-what-is-code:7fd94d010a54627a621fa1261251ebab"><a href="http://www.bloomberg.com/graphics/2015-paul-ford-what-is-code/">http://www.bloomberg.com/graphics/2015-paul-ford-what-is-code/</a></h2>
77+
78+
<p>This is not assigned reading, just one of probably many posts I&rsquo;ll make that in someways relate to our class. A really great dude <a href="https://twitter.com/ftrain">Paul Ford</a> wrote it and you should check out other stuff he writes/does/tweets too.</p>
79+
80+
<p>Longer read but very worth it I think.</p>
81+
82+
</div>
83+
84+
<div id="disqus_thread"></div>
85+
<script type="text/javascript">
86+
var disqus_shortname = 'arts-iot';
87+
var disqus_identifier = 'http:\/\/streeetlamp.github.io\/Intro-to-the-Internet-of-Things\/2016\/01\/22\/what-is-code';
88+
var disqus_title = 'What is Code?';
89+
var disqus_url = 'http:\/\/streeetlamp.github.io\/Intro-to-the-Internet-of-Things\/2016\/01\/22\/what-is-code';
90+
91+
(function() {
92+
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
93+
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
94+
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
95+
})();
96+
</script>
97+
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
98+
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
99+
100+
101+
102+
<a rel="prev" href="http://streeetlamp.github.io/Intro-to-the-Internet-of-Things/2016/01/22/hello-world" id="prev">
103+
&larr; <small>Hello World</small>
104+
</a>
105+
106+
</article>
107+
</section>
108+
109+
<footer>
110+
111+
&#9996; Spring 2016 &nbsp; &nbsp; &nbsp; &#9998; [email protected]
112+
113+
</footer>
114+
</div>
115+
116+
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
117+
<script src="http://streeetlamp.github.io/Intro-to-the-Internet-of-Things/js/main.js"></script>
118+
119+
120+
121+
<!-- Syntax highlighting -->
122+
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.6/highlight.min.js"></script>
123+
<script>hljs.initHighlightingOnLoad();</script>
124+
</body>
125+
</html>

Diff for: public/404.html

+5-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
1010
<meta http-equiv="content-language" content="en-us" />
1111
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
12-
<meta name="author" content="Cody">
12+
<meta name="author" content="Cody Whitby">
1313
<meta name="description" content="Intro to the Internet of Things - ARTS 391 - 004 Spring 2016">
1414
<meta name="generator" content="Hugo 0.15" />
1515

@@ -22,15 +22,18 @@
2222

2323
<div class="off-canvas">
2424
<figure class="avatar">
25-
<img src="http://streeetlamp.github.io/Intro-to-the-Internet-of-Things/img/tayne.gif" title="Cody">
25+
<img src="http://streeetlamp.github.io/Intro-to-the-Internet-of-Things/img/tayne.gif" title="Cody Whitby">
2626
</figure>
2727
<div class="bio">
2828

2929
<h1>Cody Whitby</h1>
3030

31+
3132

3233
3334

35+
<small>ARTS 391 - 004</small>
36+
<p><small><a href="https://github.com/streeetlamp/Intro-to-the-Internet-of-Things" title="GitHub Repo">GitHub Repo</a></small></p>
3437
</div>
3538
<nav>
3639
<br>

0 commit comments

Comments
 (0)