zzot-semi-static 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. data/History.txt +6 -0
  2. data/Manifest.txt +30 -0
  3. data/README.markdown +84 -0
  4. data/VERSION.yml +4 -0
  5. data/bin/semi +6 -0
  6. data/lib/semi-static.rb +30 -0
  7. data/lib/semi-static/base.rb +74 -0
  8. data/lib/semi-static/categories.rb +74 -0
  9. data/lib/semi-static/cli.rb +126 -0
  10. data/lib/semi-static/convertable.rb +94 -0
  11. data/lib/semi-static/core_ext/hash.rb +19 -0
  12. data/lib/semi-static/index.rb +12 -0
  13. data/lib/semi-static/layout.rb +14 -0
  14. data/lib/semi-static/page.rb +58 -0
  15. data/lib/semi-static/post.rb +133 -0
  16. data/lib/semi-static/posts.rb +110 -0
  17. data/lib/semi-static/pygmentize.rb +54 -0
  18. data/lib/semi-static/site.rb +232 -0
  19. data/lib/semi-static/snippet.rb +12 -0
  20. data/lib/semi-static/statistics.rb +45 -0
  21. data/lib/semi-static/stylesheet.rb +33 -0
  22. data/test/helper.rb +111 -0
  23. data/test/ref/test_layout/default_layout.html +35 -0
  24. data/test/ref/test_layout/post_layout.html +85 -0
  25. data/test/ref/test_output/2005-03-27.html +5 -0
  26. data/test/ref/test_output/2005-03.html +4 -0
  27. data/test/ref/test_output/2005.html +5 -0
  28. data/test/ref/test_output/2008-11-24.html +5 -0
  29. data/test/ref/test_output/2008-11-26.html +5 -0
  30. data/test/ref/test_output/2008-11.html +5 -0
  31. data/test/ref/test_output/2008-12-04.html +5 -0
  32. data/test/ref/test_output/2008-12.html +4 -0
  33. data/test/ref/test_output/2008.html +6 -0
  34. data/test/ref/test_page/about.html +47 -0
  35. data/test/ref/test_page/colophon.html +45 -0
  36. data/test/ref/test_post/impressions.html +102 -0
  37. data/test/ref/test_post/lighting-up.html +102 -0
  38. data/test/ref/test_post/the-working-mans-typeface.html +88 -0
  39. data/test/source/indices/day.erb +7 -0
  40. data/test/source/indices/month.erb +10 -0
  41. data/test/source/indices/year.erb +10 -0
  42. data/test/source/layouts/default.haml +25 -0
  43. data/test/source/layouts/post.erb +36 -0
  44. data/test/source/pages/about.md +38 -0
  45. data/test/source/pages/colophon.md +36 -0
  46. data/test/source/pages/feed.xml.erb +26 -0
  47. data/test/source/posts/2005-03-27-a-bash-script-to-mess-with-the-containing-terminalapp-window.markdown +38 -0
  48. data/test/source/posts/2008-11-24-lighting-up.markdown +41 -0
  49. data/test/source/posts/2008-11-26-impressions.md +42 -0
  50. data/test/source/posts/2008-12-04-the-working-mans-typeface.html +15 -0
  51. data/test/source/scripts/jquery-1.3.js +4241 -0
  52. data/test/source/scripts/jquery-1.3.min.js +19 -0
  53. data/test/source/semi.yml +5 -0
  54. data/test/source/snippets/comment-links.html +17 -0
  55. data/test/source/snippets/comments.html +4 -0
  56. data/test/source/stylesheets/layout.sass +115 -0
  57. data/test/source/stylesheets/post.sass +21 -0
  58. data/test/source/stylesheets/screen.sass +11 -0
  59. data/test/source/stylesheets/syntax.css +60 -0
  60. data/test/source/stylesheets/text.sass +25 -0
  61. data/test/test_layout.rb +51 -0
  62. data/test/test_output.rb +61 -0
  63. data/test/test_page.rb +68 -0
  64. data/test/test_post.rb +96 -0
  65. metadata +183 -0
@@ -0,0 +1,35 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
+ <html lang='en-US' xml:lang='en-US' xmlns='http://www.w3.org/1999/xhtml'>
3
+ <head>
4
+ <meta content='text/html; charset=utf-8' http-equiv='Content-type' />
5
+ <title>Layout Test</title>
6
+ <meta content='Josh Dady' name='author' />
7
+ </head>
8
+ <body>
9
+ <div id='site'>
10
+ <div id='header'>
11
+ <h1 class='title'>
12
+ <a href='/'>Test Website</a>
13
+ </h1>
14
+ <ul class='nav'>
15
+ <li class='nav-home'>
16
+ <a href='/'>Home</a>
17
+ </li>
18
+ <li class='nav-about'>
19
+ <a href='/about.html'>About</a>
20
+ </li>
21
+ <li class='nav-colophon'>
22
+ <a href='/colophon.html'>Colophon</a>
23
+ </li>
24
+ </ul>
25
+ </div>
26
+ <div id='body'><p>Hello World!</p></div>
27
+ <div id='footer'>
28
+ <p>
29
+ Copyright © 2003–2009 Josh Dady.
30
+ <a href='/terms.html'>Some rights reserved.</a>
31
+ </p>
32
+ </div>
33
+ </div>
34
+ </body>
35
+ </html>
@@ -0,0 +1,85 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
+ <html lang='en-US' xml:lang='en-US' xmlns='http://www.w3.org/1999/xhtml'>
3
+ <head>
4
+ <meta content='text/html; charset=utf-8' http-equiv='Content-type' />
5
+ <title>Test Post</title>
6
+ <meta content='Josh Dady' name='author' />
7
+ </head>
8
+ <body>
9
+ <div id='site'>
10
+ <div id='header'>
11
+ <h1 class='title'>
12
+ <a href='/'>Test Website</a>
13
+ </h1>
14
+ <ul class='nav'>
15
+ <li class='nav-home'>
16
+ <a href='/'>Home</a>
17
+ </li>
18
+ <li class='nav-about'>
19
+ <a href='/about.html'>About</a>
20
+ </li>
21
+ <li class='nav-colophon'>
22
+ <a href='/colophon.html'>Colophon</a>
23
+ </li>
24
+ </ul>
25
+ </div>
26
+ <div id='body'>
27
+ <div class='test_layout_post' id='test_layout_post_314159'>
28
+ <div class='post-header'>
29
+ <h2 class='post-title'>
30
+ <a class='permalink' href='/2009/01/13/test-post.html'>Test Post</a>
31
+ </h2>
32
+ <ul class='post-metadata'>
33
+ <li class='byline'>
34
+ By
35
+ <span class='author'>Josh Dady</span>
36
+ on
37
+ <span class='date'>January 13, 2009</span>
38
+ at
39
+ <span class='time'>11:52 AM</span>
40
+ </li>
41
+ <li class='link'>
42
+ <a class='permalink' href='/2009/01/13/test-post.html'>
43
+ Permalink
44
+ </a>
45
+ </li>
46
+ <li class='disqus_link'>
47
+ <a href='/2009/01/13/test-post.html#disqus_thread'>Comments</a>
48
+ </li>
49
+ </ul>
50
+ </div>
51
+ <div class='post-body'>
52
+ <p>Hello World!</p>
53
+ <script type="text/javascript" charset="utf-8">
54
+ var disqus_developer = 1;
55
+ </script>
56
+ <div id="disqus_thread"></div><script type="text/javascript" src="http://disqus.com/forums/zzot/embed.js"></script><noscript><a href="http://zzot.disqus.com/?url=ref">View the discussion thread.</a></noscript><a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
57
+ </div>
58
+ </div>
59
+ <script type="text/javascript" charset="utf-8">
60
+ var disqus_developer = 1;
61
+ </script>
62
+ <script type="text/javascript">
63
+ //<![CDATA[
64
+ (function() {
65
+ var links = document.getElementsByTagName('a');
66
+ var query = '?';
67
+ for(var i = 0; i < links.length; i++) {
68
+ if(links[i].href.indexOf('#disqus_thread') >= 0) {
69
+ query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&';
70
+ }
71
+ }
72
+ document.write('<script type="text/javascript" src="http://disqus.com/forums/zzot/get_num_replies.js' + query + '"></' + 'script>');
73
+ })();
74
+ //]]>
75
+ </script>
76
+ </div>
77
+ <div id='footer'>
78
+ <p>
79
+ Copyright © 2003–2009 Josh Dady.
80
+ <a href='/terms.html'>Some rights reserved.</a>
81
+ </p>
82
+ </div>
83
+ </div>
84
+ </body>
85
+ </html>
@@ -0,0 +1,5 @@
1
+ <h1>March 27, 2005</h1>
2
+
3
+ <ul>
4
+ <li><a href="/2005/03/27/a-bash-script-to-mess-with-the-containing-terminalapp-window.html">A bash script to mess with the containing Terminal.app window</a></li>
5
+ </ul>
@@ -0,0 +1,4 @@
1
+ <h1>March 2005</h1>
2
+ <ul>
3
+ <li><a href="/2005/03/27/">27</a></li>
4
+ </ul>
@@ -0,0 +1,5 @@
1
+ <h1>2005</h1>
2
+
3
+ <ul>
4
+ <li><a href="/2005/03/">March</a></li>
5
+ </ul>
@@ -0,0 +1,5 @@
1
+ <h1>November 24, 2008</h1>
2
+
3
+ <ul>
4
+ <li><a href="/2008/11/24/lighting-up.html">Lighting Up</a></li>
5
+ </ul>
@@ -0,0 +1,5 @@
1
+ <h1>November 26, 2008</h1>
2
+
3
+ <ul>
4
+ <li><a href="/2008/11/26/impressions.html">Impressions</a></li>
5
+ </ul>
@@ -0,0 +1,5 @@
1
+ <h1>November 2008</h1>
2
+ <ul>
3
+ <li><a href="/2008/11/24/">24</a></li>
4
+ <li><a href="/2008/11/26/">26</a></li>
5
+ </ul>
@@ -0,0 +1,5 @@
1
+ <h1>December 4, 2008</h1>
2
+
3
+ <ul>
4
+ <li><a href="/2008/12/04/the-working-mans-typeface.html">The Working Man's Typeface</a></li>
5
+ </ul>
@@ -0,0 +1,4 @@
1
+ <h1>December 2008</h1>
2
+ <ul>
3
+ <li><a href="/2008/12/04/"> 4</a></li>
4
+ </ul>
@@ -0,0 +1,6 @@
1
+ <h1>2008</h1>
2
+
3
+ <ul>
4
+ <li><a href="/2008/11/">November</a></li>
5
+ <li><a href="/2008/12/">December</a></li>
6
+ </ul>
@@ -0,0 +1,47 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
+ <html lang='en-US' xml:lang='en-US' xmlns='http://www.w3.org/1999/xhtml'>
3
+ <head>
4
+ <meta content='text/html; charset=utf-8' http-equiv='Content-type' />
5
+ <title>About this site</title>
6
+ <meta content='Josh Dady' name='author' />
7
+ </head>
8
+ <body>
9
+ <div id='site'>
10
+ <div id='header'>
11
+ <h1 class='title'>
12
+ <a href='/'>Test Website</a>
13
+ </h1>
14
+ <ul class='nav'>
15
+ <li class='nav-home'>
16
+ <a href='/'>Home</a>
17
+ </li>
18
+ <li class='nav-about'>
19
+ <a href='/about.html'>About</a>
20
+ </li>
21
+ <li class='nav-colophon'>
22
+ <a href='/colophon.html'>Colophon</a>
23
+ </li>
24
+ </ul>
25
+ </div>
26
+ <div id='body'>
27
+ <h1 id='about_this_site'>About this site</h1>
28
+
29
+ <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio.</p>
30
+
31
+ <h2 id='magna_aliquam_erat_volutpat'>Magna aliquam erat volutpat</h2>
32
+
33
+ <p>Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut.</p>
34
+
35
+ <p>Quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim.</p>
36
+
37
+ <p>Suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait.</p>
38
+ </div>
39
+ <div id='footer'>
40
+ <p>
41
+ Copyright © 2003–2009 Josh Dady.
42
+ <a href='/terms.html'>Some rights reserved.</a>
43
+ </p>
44
+ </div>
45
+ </div>
46
+ </body>
47
+ </html>
@@ -0,0 +1,45 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
+ <html lang='en-US' xml:lang='en-US' xmlns='http://www.w3.org/1999/xhtml'>
3
+ <head>
4
+ <meta content='text/html; charset=utf-8' http-equiv='Content-type' />
5
+ <title>Colophon</title>
6
+ <meta content='Josh Dady' name='author' />
7
+ </head>
8
+ <body>
9
+ <div id='site'>
10
+ <div id='header'>
11
+ <h1 class='title'>
12
+ <a href='/'>Test Website</a>
13
+ </h1>
14
+ <ul class='nav'>
15
+ <li class='nav-home'>
16
+ <a href='/'>Home</a>
17
+ </li>
18
+ <li class='nav-about'>
19
+ <a href='/about.html'>About</a>
20
+ </li>
21
+ <li class='nav-colophon'>
22
+ <a href='/colophon.html'>Colophon</a>
23
+ </li>
24
+ </ul>
25
+ </div>
26
+ <div id='body'>
27
+ <h1 id='colophon'>Colophon</h1>
28
+
29
+ <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis.</p>
30
+
31
+ <h2 id='tools'>Tools</h2>
32
+
33
+ <p>Aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet.</p>
34
+
35
+ <p>Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam.</p>
36
+ </div>
37
+ <div id='footer'>
38
+ <p>
39
+ Copyright © 2003–2009 Josh Dady.
40
+ <a href='/terms.html'>Some rights reserved.</a>
41
+ </p>
42
+ </div>
43
+ </div>
44
+ </body>
45
+ </html>
@@ -0,0 +1,102 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
+ <html lang='en-US' xml:lang='en-US' xmlns='http://www.w3.org/1999/xhtml'>
3
+ <head>
4
+ <meta content='text/html; charset=utf-8' http-equiv='Content-type' />
5
+ <title>Impressions</title>
6
+ <meta content='Josh Dady' name='author' />
7
+ </head>
8
+ <body>
9
+ <div id='site'>
10
+ <div id='header'>
11
+ <h1 class='title'>
12
+ <a href='/'>Test Website</a>
13
+ </h1>
14
+ <ul class='nav'>
15
+ <li class='nav-home'>
16
+ <a href='/'>Home</a>
17
+ </li>
18
+ <li class='nav-about'>
19
+ <a href='/about.html'>About</a>
20
+ </li>
21
+ <li class='nav-colophon'>
22
+ <a href='/colophon.html'>Colophon</a>
23
+ </li>
24
+ </ul>
25
+ </div>
26
+ <div id='body'>
27
+ <div class='semi_static_post' id='semi_static_post_2008_11_26_impressions'>
28
+ <div class='post-header'>
29
+ <h2 class='post-title'>
30
+ <a class='permalink' href='/2008/11/26/impressions.html'>Impressions</a>
31
+ </h2>
32
+ <ul class='post-metadata'>
33
+ <li class='byline'>
34
+ By
35
+ <span class='author'>Josh Dady</span>
36
+ on
37
+ <span class='date'>November 26, 2008</span>
38
+ </li>
39
+ <li class='link'>
40
+ <a class='permalink' href='/2008/11/26/impressions.html'>
41
+ Permalink
42
+ </a>
43
+ </li>
44
+ <li class='disqus_link'>
45
+ <a href='/2008/11/26/impressions.html#disqus_thread'>Comments</a>
46
+ </li>
47
+ </ul>
48
+ </div>
49
+ <div class='post-body'>
50
+ <p>Once I really started trying to catch up, it look less than a day. Here are a few observations I made along the way:</p>
51
+
52
+ <ul>
53
+ <li>Progressive lack of sleep<sup id='fnref:1'><a href='#fn:1' rel='footnote'>1</a></sup> combined with jetlag does not seem to help this process. The day that it took me only a small part of was Monday.</li>
54
+
55
+ <li>I&#8217;ve got quite a few feeds that can be disposed of quickly for various reasons: * A couple of them are (I assume) broken, because most or all of the feed pops up as unread whenever a new item is added or (sometimes) just because it feels like it. * For some sources, I have to subscribe to multiple, overlapping feeds to get all the stuff I&#8217;m interested in.<sup id='fnref:2'><a href='#fn:2' rel='footnote'>2</a></sup> * Some have such a low <abbr title='Signal/Noise'>S/N</abbr> ratio that I either don&#8217;t bother with them and hit <em>Mark All as Read</em><sup id='fnref:3'><a href='#fn:3' rel='footnote'>3</a></sup> or I tend to skim the item titles a page at a time looking for stuff I care about rather than spacing through everything.<sup id='fnref:4'><a href='#fn:4' rel='footnote'>4</a></sup></li>
56
+
57
+ <li>Unsurprisingly, you notice how much material is repeated feed after feed far more when you&#8217;re reading most of a week&#8217;s items rather than a couple of hours worth.</li>
58
+ </ul>
59
+
60
+ <p>At any rate, I&#8217;m back to my old daily process of asking myself why I&#8217;m subscribed to so many feeds that are full of crap.</p>
61
+ <div class='footnotes'><hr /><ol><li id='fn:1'>
62
+ <p>This has been a problem for the setup week for <a href='http://vwcaraoke.com/'>Caraoke&#8217;s</a> first showing every year we&#8217;ve done it.</p>
63
+ <a href='#fnref:1' rev='footnote'>&#8617;</a></li><li id='fn:2'>
64
+ <p><a href='http://www.wired.com/'>Wired</a> is the poster child in this category.</p>
65
+ <a href='#fnref:2' rev='footnote'>&#8617;</a></li><li id='fn:3'>
66
+ <p>Mail order sites dominate this category.</p>
67
+ <a href='#fnref:3' rev='footnote'>&#8617;</a></li><li id='fn:4'>
68
+ <p><a href='http://www.versiontracker.com/'>VersionTracker</a> is the poster child here.</p>
69
+ <a href='#fnref:4' rev='footnote'>&#8617;</a></li></ol></div>
70
+ <script type="text/javascript" charset="utf-8">
71
+ var disqus_developer = 1;
72
+ </script>
73
+ <div id="disqus_thread"></div><script type="text/javascript" src="http://disqus.com/forums/zzot/embed.js"></script><noscript><a href="http://zzot.disqus.com/?url=ref">View the discussion thread.</a></noscript><a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
74
+ </div>
75
+ </div>
76
+ <script type="text/javascript" charset="utf-8">
77
+ var disqus_developer = 1;
78
+ </script>
79
+ <script type="text/javascript">
80
+ //<![CDATA[
81
+ (function() {
82
+ var links = document.getElementsByTagName('a');
83
+ var query = '?';
84
+ for(var i = 0; i < links.length; i++) {
85
+ if(links[i].href.indexOf('#disqus_thread') >= 0) {
86
+ query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&';
87
+ }
88
+ }
89
+ document.write('<script type="text/javascript" src="http://disqus.com/forums/zzot/get_num_replies.js' + query + '"></' + 'script>');
90
+ })();
91
+ //]]>
92
+ </script>
93
+ </div>
94
+ <div id='footer'>
95
+ <p>
96
+ Copyright © 2003–2009 Josh Dady.
97
+ <a href='/terms.html'>Some rights reserved.</a>
98
+ </p>
99
+ </div>
100
+ </div>
101
+ </body>
102
+ </html>
@@ -0,0 +1,102 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
+ <html lang='en-US' xml:lang='en-US' xmlns='http://www.w3.org/1999/xhtml'>
3
+ <head>
4
+ <meta content='text/html; charset=utf-8' http-equiv='Content-type' />
5
+ <title>Lighting Up</title>
6
+ <meta content='Josh Dady' name='author' />
7
+ </head>
8
+ <body>
9
+ <div id='site'>
10
+ <div id='header'>
11
+ <h1 class='title'>
12
+ <a href='/'>Test Website</a>
13
+ </h1>
14
+ <ul class='nav'>
15
+ <li class='nav-home'>
16
+ <a href='/'>Home</a>
17
+ </li>
18
+ <li class='nav-about'>
19
+ <a href='/about.html'>About</a>
20
+ </li>
21
+ <li class='nav-colophon'>
22
+ <a href='/colophon.html'>Colophon</a>
23
+ </li>
24
+ </ul>
25
+ </div>
26
+ <div id='body'>
27
+ <div class='semi_static_post' id='semi_static_post_2008_11_24_lighting_up'>
28
+ <div class='post-header'>
29
+ <h2 class='post-title'>
30
+ <a class='permalink' href='/2008/11/24/lighting-up.html'>Lighting Up</a>
31
+ </h2>
32
+ <ul class='post-metadata'>
33
+ <li class='byline'>
34
+ By
35
+ <span class='author'>Josh Dady</span>
36
+ on
37
+ <span class='date'>November 24, 2008</span>
38
+ </li>
39
+ <li class='link'>
40
+ <a class='permalink' href='/2008/11/24/lighting-up.html'>
41
+ Permalink
42
+ </a>
43
+ </li>
44
+ <li class='disqus_link'>
45
+ <a href='/2008/11/24/lighting-up.html#disqus_thread'>Comments</a>
46
+ </li>
47
+ </ul>
48
+ </div>
49
+ <div class='post-body'>
50
+ <p>I sort of “went dark” this week. I was in Los Angeles for a few exhibits we worked on for the <a href='http://laautoshow.com/'>LA Auto Show</a>. We flew out Monday and returned Friday. At some point on Tuesday, I was definitely caught up in <a href='http://www.newsgator.com/individuals/netnewswireiphone/default.aspx'>NetNewsWire for iPhone</a>. By Friday morning it had been at least a couple of days.</p>
51
+
52
+ <p>Today, I started with over 3,700 items to read.</p>
53
+
54
+ <p>Here are my options on how to deal with this:</p>
55
+
56
+ <ol>
57
+ <li>Spend an unspecified number of days doing nothing but reading “news”. <sup id='fnref:1'><a href='#fn:1' rel='footnote'>1</a></sup></li>
58
+
59
+ <li><a href='http://www.google.com/search?hl=en&amp;client=safari&amp;rls=en-us&amp;q=%22rss+bankruptcy%22&amp;btnG=Search'>RSS Bankruptcy</a>. While we&#8217;ve all heard of the <a href='http://www.google.com/search?hl=en&amp;client=safari&amp;rls=en-us&amp;q=%22email+bankruptcy%22&amp;btnG=Search'>email</a> variety, I figured someone, somewhere had already filed under <em>Chapter RSS</em> — I was right.</li>
60
+
61
+ <li>Unsubscribed from a lot of feeds, combined with #1 or #2.</li>
62
+ </ol>
63
+
64
+ <p>You could certainly argue that gathering that many items in a few days clearly indicates #3 be applied immediately,<sup id='fnref:2'><a href='#fn:2' rel='footnote'>2</a></sup> I&#8217;m starting out with #1 interleaved with the rest of my life because its the least destructive. More to come.</p>
65
+ <div class='footnotes'><hr /><ol><li id='fn:1'>
66
+ <p>Some of it certainly qualifies as news. A lot of it doesn&#8217;t.</p>
67
+ <a href='#fnref:1' rev='footnote'>&#8617;</a></li><li id='fn:2'>
68
+ <p>…and I&#8217;d be somewhat inclined to agree</p>
69
+ <a href='#fnref:2' rev='footnote'>&#8617;</a></li></ol></div>
70
+ <script type="text/javascript" charset="utf-8">
71
+ var disqus_developer = 1;
72
+ </script>
73
+ <div id="disqus_thread"></div><script type="text/javascript" src="http://disqus.com/forums/zzot/embed.js"></script><noscript><a href="http://zzot.disqus.com/?url=ref">View the discussion thread.</a></noscript><a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
74
+ </div>
75
+ </div>
76
+ <script type="text/javascript" charset="utf-8">
77
+ var disqus_developer = 1;
78
+ </script>
79
+ <script type="text/javascript">
80
+ //<![CDATA[
81
+ (function() {
82
+ var links = document.getElementsByTagName('a');
83
+ var query = '?';
84
+ for(var i = 0; i < links.length; i++) {
85
+ if(links[i].href.indexOf('#disqus_thread') >= 0) {
86
+ query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&';
87
+ }
88
+ }
89
+ document.write('<script type="text/javascript" src="http://disqus.com/forums/zzot/get_num_replies.js' + query + '"></' + 'script>');
90
+ })();
91
+ //]]>
92
+ </script>
93
+ </div>
94
+ <div id='footer'>
95
+ <p>
96
+ Copyright © 2003–2009 Josh Dady.
97
+ <a href='/terms.html'>Some rights reserved.</a>
98
+ </p>
99
+ </div>
100
+ </div>
101
+ </body>
102
+ </html>