nokogiri 1.3.3 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of nokogiri might be problematic. Click here for more details.

Files changed (201) hide show
  1. data/CHANGELOG.ja.rdoc +48 -3
  2. data/CHANGELOG.rdoc +42 -0
  3. data/Manifest.txt +44 -29
  4. data/README.ja.rdoc +0 -2
  5. data/README.rdoc +4 -7
  6. data/Rakefile +42 -6
  7. data/bin/nokogiri +7 -5
  8. data/ext/nokogiri/extconf.rb +5 -21
  9. data/ext/nokogiri/html_document.c +14 -50
  10. data/ext/nokogiri/html_element_description.c +7 -7
  11. data/ext/nokogiri/html_entity_lookup.c +6 -4
  12. data/ext/nokogiri/html_sax_parser_context.c +92 -0
  13. data/ext/nokogiri/html_sax_parser_context.h +11 -0
  14. data/ext/nokogiri/nokogiri.c +9 -3
  15. data/ext/nokogiri/nokogiri.h +16 -20
  16. data/ext/nokogiri/xml_attr.c +1 -1
  17. data/ext/nokogiri/xml_attribute_decl.c +67 -0
  18. data/ext/nokogiri/xml_attribute_decl.h +9 -0
  19. data/ext/nokogiri/xml_cdata.c +6 -5
  20. data/ext/nokogiri/xml_comment.c +3 -2
  21. data/ext/nokogiri/xml_document.c +93 -23
  22. data/ext/nokogiri/xml_document_fragment.c +1 -3
  23. data/ext/nokogiri/xml_dtd.c +63 -6
  24. data/ext/nokogiri/xml_element_content.c +123 -0
  25. data/ext/nokogiri/xml_element_content.h +10 -0
  26. data/ext/nokogiri/xml_element_decl.c +69 -0
  27. data/ext/nokogiri/xml_element_decl.h +9 -0
  28. data/ext/nokogiri/xml_entity_decl.c +97 -0
  29. data/ext/nokogiri/xml_entity_decl.h +10 -0
  30. data/ext/nokogiri/xml_entity_reference.c +1 -1
  31. data/ext/nokogiri/xml_io.c +10 -3
  32. data/ext/nokogiri/xml_io.h +1 -0
  33. data/ext/nokogiri/xml_namespace.c +2 -2
  34. data/ext/nokogiri/xml_node.c +139 -34
  35. data/ext/nokogiri/xml_node.h +0 -1
  36. data/ext/nokogiri/xml_node_set.c +23 -16
  37. data/ext/nokogiri/xml_processing_instruction.c +1 -1
  38. data/ext/nokogiri/xml_reader.c +78 -50
  39. data/ext/nokogiri/xml_sax_parser.c +109 -168
  40. data/ext/nokogiri/xml_sax_parser.h +33 -0
  41. data/ext/nokogiri/xml_sax_parser_context.c +155 -0
  42. data/ext/nokogiri/xml_sax_parser_context.h +10 -0
  43. data/ext/nokogiri/xml_sax_push_parser.c +11 -6
  44. data/ext/nokogiri/xml_syntax_error.c +63 -12
  45. data/ext/nokogiri/xml_text.c +4 -3
  46. data/ext/nokogiri/xml_xpath.c +1 -1
  47. data/ext/nokogiri/xml_xpath_context.c +12 -25
  48. data/ext/nokogiri/xslt_stylesheet.c +3 -3
  49. data/lib/nokogiri.rb +4 -4
  50. data/lib/nokogiri/css/generated_tokenizer.rb +1 -0
  51. data/lib/nokogiri/css/node.rb +1 -9
  52. data/lib/nokogiri/css/xpath_visitor.rb +11 -21
  53. data/lib/nokogiri/ffi/html/document.rb +0 -9
  54. data/lib/nokogiri/ffi/html/sax/parser_context.rb +38 -0
  55. data/lib/nokogiri/ffi/io_callbacks.rb +4 -2
  56. data/lib/nokogiri/ffi/libxml.rb +44 -10
  57. data/lib/nokogiri/ffi/structs/common_node.rb +1 -1
  58. data/lib/nokogiri/ffi/structs/xml_attribute.rb +27 -0
  59. data/lib/nokogiri/ffi/structs/xml_dtd.rb +3 -1
  60. data/lib/nokogiri/ffi/structs/xml_element.rb +26 -0
  61. data/lib/nokogiri/ffi/structs/xml_element_content.rb +17 -0
  62. data/lib/nokogiri/ffi/structs/xml_entity.rb +32 -0
  63. data/lib/nokogiri/ffi/structs/xml_enumeration.rb +12 -0
  64. data/lib/nokogiri/ffi/structs/xml_parser_context.rb +19 -0
  65. data/lib/nokogiri/ffi/structs/xml_sax_push_parser_context.rb +4 -3
  66. data/lib/nokogiri/ffi/structs/xml_syntax_error.rb +1 -1
  67. data/lib/nokogiri/ffi/xml/attribute_decl.rb +27 -0
  68. data/lib/nokogiri/ffi/xml/comment.rb +2 -2
  69. data/lib/nokogiri/ffi/xml/document.rb +29 -12
  70. data/lib/nokogiri/ffi/xml/document_fragment.rb +0 -5
  71. data/lib/nokogiri/ffi/xml/dtd.rb +14 -3
  72. data/lib/nokogiri/ffi/xml/element_content.rb +43 -0
  73. data/lib/nokogiri/ffi/xml/element_decl.rb +19 -0
  74. data/lib/nokogiri/ffi/xml/entity_decl.rb +27 -0
  75. data/lib/nokogiri/ffi/xml/node.rb +45 -5
  76. data/lib/nokogiri/ffi/xml/node_set.rb +1 -1
  77. data/lib/nokogiri/ffi/xml/reader.rb +45 -24
  78. data/lib/nokogiri/ffi/xml/sax/parser.rb +27 -34
  79. data/lib/nokogiri/ffi/xml/sax/parser_context.rb +67 -0
  80. data/lib/nokogiri/ffi/xml/sax/push_parser.rb +5 -4
  81. data/lib/nokogiri/ffi/xml/syntax_error.rb +31 -16
  82. data/lib/nokogiri/ffi/xml/text.rb +2 -2
  83. data/lib/nokogiri/html.rb +1 -0
  84. data/lib/nokogiri/html/document.rb +39 -24
  85. data/lib/nokogiri/html/sax/parser.rb +2 -2
  86. data/lib/nokogiri/html/sax/parser_context.rb +16 -0
  87. data/lib/nokogiri/version.rb +1 -1
  88. data/lib/nokogiri/xml.rb +6 -1
  89. data/lib/nokogiri/xml/attr.rb +5 -0
  90. data/lib/nokogiri/xml/attribute_decl.rb +18 -0
  91. data/lib/nokogiri/xml/builder.rb +121 -13
  92. data/lib/nokogiri/xml/character_data.rb +7 -0
  93. data/lib/nokogiri/xml/document.rb +43 -29
  94. data/lib/nokogiri/xml/document_fragment.rb +26 -6
  95. data/lib/nokogiri/xml/dtd.rb +5 -5
  96. data/lib/nokogiri/xml/element_content.rb +36 -0
  97. data/lib/nokogiri/xml/element_decl.rb +13 -0
  98. data/lib/nokogiri/xml/entity_decl.rb +15 -0
  99. data/lib/nokogiri/xml/fragment_handler.rb +22 -11
  100. data/lib/nokogiri/xml/namespace.rb +6 -0
  101. data/lib/nokogiri/xml/node.rb +33 -15
  102. data/lib/nokogiri/xml/node_set.rb +66 -44
  103. data/lib/nokogiri/xml/pp.rb +2 -0
  104. data/lib/nokogiri/xml/pp/character_data.rb +18 -0
  105. data/lib/nokogiri/xml/pp/node.rb +56 -0
  106. data/lib/nokogiri/xml/reader.rb +8 -0
  107. data/lib/nokogiri/xml/sax.rb +1 -1
  108. data/lib/nokogiri/xml/sax/document.rb +18 -1
  109. data/lib/nokogiri/xml/sax/parser.rb +15 -8
  110. data/lib/nokogiri/xml/sax/parser_context.rb +16 -0
  111. data/lib/nokogiri/xml/sax/push_parser.rb +0 -3
  112. data/lib/nokogiri/xml/syntax_error.rb +4 -0
  113. data/lib/nokogiri/xslt/stylesheet.rb +1 -1
  114. data/test/css/test_nthiness.rb +1 -1
  115. data/test/css/test_parser.rb +1 -1
  116. data/test/css/test_tokenizer.rb +1 -1
  117. data/test/css/test_xpath_visitor.rb +1 -1
  118. data/test/ffi/test_document.rb +1 -1
  119. data/test/files/shift_jis.html +10 -0
  120. data/test/files/staff.dtd +10 -0
  121. data/test/helper.rb +12 -3
  122. data/test/html/sax/test_parser.rb +1 -1
  123. data/test/html/sax/test_parser_context.rb +48 -0
  124. data/test/html/test_builder.rb +8 -2
  125. data/test/html/test_document.rb +23 -1
  126. data/test/html/test_document_encoding.rb +15 -1
  127. data/test/html/test_document_fragment.rb +10 -1
  128. data/test/html/test_element_description.rb +1 -2
  129. data/test/html/test_named_characters.rb +1 -1
  130. data/test/html/test_node.rb +61 -1
  131. data/test/html/test_node_encoding.rb +27 -0
  132. data/test/test_convert_xpath.rb +1 -3
  133. data/test/test_css_cache.rb +1 -1
  134. data/test/test_gc.rb +1 -1
  135. data/test/test_memory_leak.rb +1 -1
  136. data/test/test_nokogiri.rb +3 -3
  137. data/test/test_reader.rb +29 -1
  138. data/test/test_xslt_transforms.rb +1 -1
  139. data/test/xml/node/test_save_options.rb +1 -1
  140. data/test/xml/node/test_subclass.rb +1 -1
  141. data/test/xml/sax/test_parser.rb +64 -3
  142. data/test/xml/sax/test_parser_context.rb +56 -0
  143. data/test/xml/sax/test_push_parser.rb +11 -1
  144. data/test/xml/test_attr.rb +1 -1
  145. data/test/xml/test_attribute_decl.rb +82 -0
  146. data/test/xml/test_builder.rb +95 -1
  147. data/test/xml/test_cdata.rb +1 -1
  148. data/test/xml/test_comment.rb +7 -1
  149. data/test/xml/test_document.rb +147 -6
  150. data/test/xml/test_document_encoding.rb +1 -1
  151. data/test/xml/test_document_fragment.rb +55 -5
  152. data/test/xml/test_dtd.rb +40 -5
  153. data/test/xml/test_dtd_encoding.rb +3 -1
  154. data/test/xml/test_element_content.rb +56 -0
  155. data/test/xml/test_element_decl.rb +73 -0
  156. data/test/xml/test_entity_decl.rb +83 -0
  157. data/test/xml/test_entity_reference.rb +1 -1
  158. data/test/xml/test_namespace.rb +21 -1
  159. data/test/xml/test_node.rb +70 -4
  160. data/test/xml/test_node_attributes.rb +1 -1
  161. data/test/xml/test_node_encoding.rb +1 -1
  162. data/test/xml/test_node_set.rb +136 -2
  163. data/test/xml/test_parse_options.rb +1 -1
  164. data/test/xml/test_processing_instruction.rb +1 -1
  165. data/test/xml/test_reader_encoding.rb +1 -1
  166. data/test/xml/test_relax_ng.rb +1 -1
  167. data/test/xml/test_schema.rb +1 -1
  168. data/test/xml/test_syntax_error.rb +27 -0
  169. data/test/xml/test_text.rb +13 -1
  170. data/test/xml/test_unparented_node.rb +1 -1
  171. data/test/xml/test_xpath.rb +1 -1
  172. metadata +57 -40
  173. data/ext/nokogiri/html_sax_parser.c +0 -57
  174. data/ext/nokogiri/html_sax_parser.h +0 -11
  175. data/lib/action-nokogiri.rb +0 -38
  176. data/lib/nokogiri/decorators.rb +0 -2
  177. data/lib/nokogiri/decorators/hpricot.rb +0 -3
  178. data/lib/nokogiri/decorators/hpricot/node.rb +0 -56
  179. data/lib/nokogiri/decorators/hpricot/node_set.rb +0 -54
  180. data/lib/nokogiri/decorators/hpricot/xpath_visitor.rb +0 -30
  181. data/lib/nokogiri/ffi/html/sax/parser.rb +0 -21
  182. data/lib/nokogiri/hpricot.rb +0 -92
  183. data/lib/nokogiri/xml/entity_declaration.rb +0 -11
  184. data/lib/nokogiri/xml/sax/legacy_handlers.rb +0 -65
  185. data/test/hpricot/files/basic.xhtml +0 -17
  186. data/test/hpricot/files/boingboing.html +0 -2266
  187. data/test/hpricot/files/cy0.html +0 -3653
  188. data/test/hpricot/files/immob.html +0 -400
  189. data/test/hpricot/files/pace_application.html +0 -1320
  190. data/test/hpricot/files/tenderlove.html +0 -16
  191. data/test/hpricot/files/uswebgen.html +0 -220
  192. data/test/hpricot/files/utf8.html +0 -1054
  193. data/test/hpricot/files/week9.html +0 -1723
  194. data/test/hpricot/files/why.xml +0 -19
  195. data/test/hpricot/load_files.rb +0 -11
  196. data/test/hpricot/test_alter.rb +0 -68
  197. data/test/hpricot/test_builder.rb +0 -20
  198. data/test/hpricot/test_parser.rb +0 -350
  199. data/test/hpricot/test_paths.rb +0 -15
  200. data/test/hpricot/test_preserved.rb +0 -77
  201. data/test/hpricot/test_xml.rb +0 -30
@@ -1,17 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
- <head>
5
- <title>Sample XHTML</title>
6
- <link rel='stylesheet' href='test1.css' />
7
- <link rel='stylesheet' href='test2.css' />
8
- <link rel='stylesheet' href='test3.css' />
9
- </head>
10
- <body id='body1'>
11
- <p>Sample XHTML for <a id="link1" href="http://code.whytheluckystiff.net/mouseHole/">MouseHole 2</a>.</p>
12
- <p class='ohmy'>Please filter <a id="link2" href="http://hobix.com/">me</a>!</p>
13
- <p>The third paragraph</p>
14
- <p class="last final"><b>THE FINAL PARAGRAPH</b></p>
15
- </body>
16
- </html>
17
-
@@ -1,2266 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
- <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
3
- <html>
4
- <head>
5
-
6
- <script>
7
- /*
8
- Random-Order content script
9
- By JavaScript Kit (http://www.javascriptkit.com)
10
- This notice must stay intact for use
11
- */
12
-
13
- //1) Specify content(s) to display and rotate
14
- // You can specify multiple "sets", each displayed in diff. areas of your page
15
-
16
- var content=new Array() //sample set 1
17
-
18
-
19
-
20
- //content[0]='<a href="http://boingboing.net/cgi-bin/clicker.cgi?http://www.bustedtees.com/in/boingboing/125x"><img src="http://boingboing.net/busted_tees/rotate.php" width="125" height="125" border="1"></a>'
21
-
22
-
23
- content[0]='<a href="http://boingboing.net/cgi-bin/clicker.cgi?http://makezine.com/offer/"><img src="http://boingboing.net/images/125x125_MAKE-ColdFusion-DIY.gif" width="125" height="125" border=1></a>'
24
-
25
-
26
- function randomorder(targetarray, spacing){
27
-
28
- var randomorder=new Array()
29
- var the_one
30
- var z=0
31
- for (i=0;i<targetarray.length;i++)
32
- randomorder[i]=i
33
-
34
- while (z<targetarray.length){
35
- the_one=Math.floor(Math.random()*targetarray.length)
36
- if (targetarray[the_one]!="_selected!"){
37
- document.write(targetarray[the_one]+spacing)
38
- targetarray[the_one]="_selected!"
39
- z++
40
- }
41
- }
42
- }
43
- </script>
44
-
45
-
46
-
47
-
48
- <title>Boing Boing: A Directory of Wonderful Things</title>
49
- <meta http-equiv="content-type" content="text/html; charset=utf-8">
50
- <link rel="alternate" type="application/atom+xml" title="Atom" href="http://www.boingboing.net/atom.xml">
51
- <link rel="alternate" type="application/rss+xml" title="RSS" href="http://www.boingboing.net/index.rdf">
52
- <link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.boingboing.net/rsd.xml">
53
- <meta name="Description" content="A weblog about pop culture">
54
- <meta name="Keywords" content="blog, weblog, search, directory, community, web directory, web search, search engine, boing boing, mark frauenfelder, cory doctorow, david pescovitz, xeni jardin, john battelle, pop culture">
55
- <style type="text/css" media="all">
56
- @import url(http://www.boingboing.net/table.css);
57
- </style>
58
- </head>
59
-
60
- <body bgcolor="#ffffff">
61
- <div align="center">
62
- <table width="800" border="0" cellspacing="0" cellpadding="4" bgcolor="white">
63
- <tr>
64
- <td colspan="3" align="center" width="800" height="90">
65
- <table width="811" border="0" cellspacing="0" cellpadding="0">
66
- <tr>
67
- <td width="4" height="90" rowspan="4"></td>
68
- <td width="338" height="4"></td>
69
- <td width="468" height="10" rowspan="2"></td>
70
- <td width="1" height="4"><spacer type="block" width="1" height="4"></td>
71
- </tr>
72
- <tr>
73
- <td width="338" height="74" rowspan="2" valign="top" align="left"><a href="http://boingboing.net/"><img src="http://boingboing.net/images/bbhead10xb.gif" alt="Boing Boing" width="330" height="72" border="0"></a></td>
74
- <td width="1" height="6"><spacer type="block" width="1" height="6"></td>
75
- </tr>
76
- <tr>
77
- <td width="468" height="68" valign="top" align="left">
78
-
79
- <script language='JavaScript' type='text/javascript' src='http://static.fmpub.net/js/1/adx.js'></script>
80
- <script language='JavaScript' type='text/javascript'>
81
- <!--
82
- if (!document.phpAds_used) document.phpAds_used = ',';
83
- phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11);
84
-
85
- document.write ("<" + "script language='JavaScript' type='text/javascript' src='");
86
- document.write ("http://dynamic.fmpub.net/adserver/adjs.php?n=" + phpAds_random);
87
- document.write ("&amp;what=zone:26&amp;block=1&amp;blockcampaign=1");
88
- document.write ("&amp;exclude=" + document.phpAds_used);
89
- if (document.referrer)
90
- document.write ("&amp;referer=" + escape(document.referrer));
91
- document.write ("'><" + "/script>");
92
- //-->
93
- </script><noscript><a href='http://dynamic.fmpub.net/adserver/adclick.php?n=a3449322' target='_blank'><img src='http://dynamic.fmpub.net/adserver/adview.php?what=zone:26&amp;n=a3449322' border='0' alt=''></a></noscript>
94
-
95
-
96
-
97
-
98
- </td>
99
- <td width="1" height="68"><spacer type="block" width="1" height="68"></td>
100
- </tr>
101
- <tr>
102
- <td width="806" height="18" colspan="3" valign="top"><div id="sidebar-a">
103
-
104
-
105
- <!-- SiteSearch Google -->
106
- <FORM method=GET action="http://www.google.com/search">
107
- <a href="http://boingboing.net/suggest.html">suggest a link</a> | <a
108
- href="http://www.boingboing.net/censorroute.html">defeat censorware</a> | <a href="http://feeds.feedburner.com/boingboing/iBag">rss</a> | <a href="http://boingboing.net/archive.html">archives</a> | <a href="http://www.spreadshirt.com/shop.php?sid=3533">store</a> | <a href="http://boingboing.net/markf.html">mark</a> | <a href="http://www.craphound.com/">cory</a> | <a href="http://pesco.net/">david</a> | <a href="http://xeni.net/">xeni</a> | <a href="http://battellemedia.com/">john</a></font> <br>
109
- <input type=hidden name=ie value=UTF-8>
110
- <input type=hidden name=oe value=UTF-8><br>
111
- <INPUT TYPE=text name=q size=31 maxlength=255 value="">
112
- <INPUT type=submit name=btnG VALUE="Search Boing Boing">
113
- <font size=-1>
114
- <input type=hidden name=domains value="boingboing.net">
115
- <br> <input type=hidden name=sitesearch value="boingboing.net" checked>
116
- </FORM>
117
- <!-- SiteSearch Google -->
118
-
119
-
120
-
121
-
122
-
123
-
124
-
125
- </td>
126
- <td width="1" height="18"><spacer type="block" width="1" height="18"></td>
127
- </tr>
128
- <tr>
129
- <td width="4" height="1"><spacer type="block" width="4" height="1"></td>
130
- <td width="338" height="1"><spacer type="block" width="338" height="1"></td>
131
- <td width="468" height="1"><spacer type="block" width="468" height="1"></td>
132
- <td width="1" height="1"></td>
133
- </tr>
134
- </table>
135
- </td>
136
- </tr>
137
- <tr></div>
138
- <td width="125" valign="top">
139
-
140
-
141
- <div id="sidebar-a">
142
- <span class="class1"><!-- Sponsors -->
143
- Sponsored by:
144
-
145
- <p>
146
- <script language='JavaScript' type='text/javascript'>
147
- <!--
148
- if (!document.phpAds_used) document.phpAds_used = ',';
149
- phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11);
150
-
151
- document.write ("<" + "script language='JavaScript' type='text/javascript' src='");
152
- document.write ("http://dynamic.fmpub.net/adserver/adjs.php?n=" + phpAds_random);
153
- document.write ("&amp;what=zone:134");
154
- document.write ("&amp;exclude=" + document.phpAds_used);
155
- if (document.referrer)
156
- document.write ("&amp;referer=" + escape(document.referrer));
157
- document.write ("'><" + "/script>");
158
- //-->
159
- </script><noscript><a href='http://dynamic.fmpub.net/adserver/adclick.php?n=a54e22a0' target='_blank'><img src='http://dynamic.fmpub.net/adserver/adview.php?what=zone:134&amp;n=a54e22a0' border='0' alt=''></a></noscript>
160
- </p>
161
- <p>
162
- <!-- skyscraper from FM -->
163
- <script language='JavaScript' type='text/javascript' src='http://static.fmpub.net/js/1/adx.js'></script>
164
- <script language='JavaScript' type='text/javascript'>
165
- <!--
166
- if (!document.phpAds_used) document.phpAds_used = ',';
167
- phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11);
168
-
169
- document.write ("<" + "script language='JavaScript' type='text/javascript' src='");
170
- document.write ("http://dynamic.fmpub.net/adserver/adjs.php?n=" + phpAds_random);
171
- document.write ("&amp;what=zone:151&amp;block=1&amp;blockcampaign=1");
172
- document.write ("&amp;exclude=" + document.phpAds_used);
173
- if (document.referrer)
174
- document.write ("&amp;referer=" + escape(document.referrer));
175
- document.write ("'><" + "/script>");
176
- //-->
177
- </script><noscript><a href='http://dynamic.fmpub.net/adserver/adclick.php?n=a9d78648' target='_blank'><img src='http://dynamic.fmpub.net/adserver/adview.php?what=zone:151&n=a9d78648' border='0' alt=''></a></noscript>
178
- </p>
179
- <p><a href="http://boingboing.net/cgi-bin/clicker.cgi?http://www.spreadshirt.com/shop.php?sid=3533"><img src="http://boingboing.net/images/ads/spreadshirtbb/JB.jpg" width="150" height="60"
180
- alt="Boing Boing store" border="0"></a><br clear="all">
181
-
182
- <!--<p><a href="http://boingboing.net/cgi-bin/clicker.cgi?http://www.paraview.com/hart/phaselock_code.htm"><img src="http://boingboing.net/images/ads/FreE_bookIII.gif" width="150" height="60"
183
- alt="Quikbook" border="0"></a>-->
184
-
185
- <br clear="all">
186
-
187
- <p>
188
- <script language='JavaScript' type='text/javascript'>
189
- <!--
190
- if (!document.phpAds_used) document.phpAds_used = ',';
191
- phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11);
192
-
193
- document.write ("<" + "script language='JavaScript' type='text/javascript' src='");
194
- document.write ("http://dynamic.fmpub.net/adserver/adjs.php?n=" + phpAds_random);
195
- document.write ("&amp;what=zone:61&amp;block=1&amp;blockcampaign=1");
196
- document.write ("&amp;exclude=" + document.phpAds_used);
197
- if (document.referrer)
198
- document.write ("&amp;referer=" + escape(document.referrer));
199
- document.write ("'><" + "/script>");
200
- //-->
201
- </script><noscript><a href='http://dynamic.fmpub.net/adserver/adclick.php?n=aa70f9dd' target='_blank'><img src='http://dynamic.fmpub.net/adserver/adview.php?what=zone:61&amp;n=aa70f9dd' border='0' alt=''></a></noscript>
202
- </p>
203
-
204
- <p>
205
- <script language='JavaScript' type='text/javascript'>
206
- <!--
207
- if (!document.phpAds_used) document.phpAds_used = ',';
208
- phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11);
209
-
210
- document.write ("<" + "script language='JavaScript' type='text/javascript' src='");
211
- document.write ("http://dynamic.fmpub.net/adserver/adjs.php?n=" + phpAds_random);
212
- document.write ("&amp;what=zone:95");
213
- document.write ("&amp;exclude=" + document.phpAds_used);
214
- if (document.referrer)
215
- document.write ("&amp;referer=" + escape(document.referrer));
216
- document.write ("'><" + "/script>");
217
- //-->
218
- </script><noscript><a href='http://dynamic.fmpub.net/adserver/adclick.php?n=a4964b17' target='_blank'><img src='http://dynamic.fmpub.net/adserver/adview.php?what=zone:95&amp;n=a4964b17' border='0' alt=''></a></noscript>
219
- </p>
220
-
221
-
222
-
223
- <!-- end Sponsors -->
224
-
225
- </p>
226
- <hr class="c1" noshade size="3">
227
-
228
-
229
-
230
-
231
-
232
- <script type="text/javascript" language="javascript" charset="utf-8">
233
- // <![CDATA[
234
-
235
- var personal_tiles = Array('censorware.gif', 'labnotesbear21.gif', 'mp.gif', 'scimattersbadge.jpg','searchblog.gif', 'someonebadge.jpg', 'ambiencedorebanner1.jpg', 'thesearch.jpg', 'thumbtackad.gif');
236
-
237
- var personal_urls = Array();
238
- personal_urls['censorware.gif'] = 'http://www.boingboing.net/censorroute.html';
239
- personal_urls['labnotesbear21.gif'] = 'http://www.coe.berkeley.edu/labnotes';
240
- personal_urls['mp.gif'] = 'http://madprofessor.net/';
241
- personal_urls['scimattersbadge.jpg'] = 'http://sciencematters.berkeley.edu/';
242
- personal_urls['searchblog.gif'] = 'http://battellemedia.com/';
243
- personal_urls['someonebadge.jpg'] = 'http://boingboing.net/cgi-bin/clicker.cgi?http://craphound.com/someone';
244
- personal_urls['ambiencedorebanner1.jpg'] = 'http://www.ambiencedore.com/';
245
- personal_urls['thesearch.jpg'] = 'http://btob.barnesandnoble.com/index.asp?sourceID=0041452904&btob=Y&r=1';
246
- personal_urls['thumbtackad.gif'] = 'http://boingboing.net/cgi-bin/clicker.cgi?http://www.thumbtackpress.com/browse/index.php?cPath=77';
247
-
248
-
249
- function drawBannerCode(item){
250
- document.write('<p><a href="' + personal_urls[item] + '"><img src="http://boingboing.net/images/' + item + '" border="0" width="150" height="60"/></a></p>' );
251
- }
252
-
253
-
254
- function randumbly(a, b){
255
- return (Math.round(Math.random())-0.5);
256
- }
257
-
258
- personal_tiles.sort( randumbly );
259
-
260
- // ]]>
261
- </script>
262
-
263
-
264
- <div id="two_tiles">
265
- <script type="text/javascript" language="javascript" charset="utf-8">
266
- // <![CDATA[
267
- for(i=0;i<2;i++){
268
- drawBannerCode(personal_tiles[i]);
269
- }
270
- // ]]>
271
- </script>
272
- <script type="text/javascript" language="javascript" charset="utf-8">
273
- // <![CDATA[
274
- for(i=2;i<personal_tiles.length;i++){
275
- drawBannerCode(personal_tiles[i]);
276
- }
277
- // ]]>
278
- </script>
279
- </div>
280
-
281
-
282
-
283
- <!-- End BB editors' plugs -->
284
-
285
- <hr class="c1" noshade size="3">
286
-
287
- <!-- EFF Bloggers Rights Badge Added CD 11/16/5 -->
288
- <BR />
289
- <A HREF="http://www.eff.org/bloggers/join/">
290
- <IMG SRC="http://www.eff.org/bloggers/badges/blog_150x60.gif"
291
- ALT="Support Bloggers' Rights!"
292
- WIDTH="150" HEIGHT="60" BORDER="0">
293
- <BR />
294
- Support Bloggers' Rights!</A>
295
- <BR />
296
-
297
- <!-- Hosting plug -->
298
-
299
-
300
- <p><a href="http://www.laughingsquid.com"><img src="http://boingboing.net/images/ls_logo.png" width="70" height="70" border="0"></a> <!-- end Hosting plug --><p>
301
- <a href="http://www.boingboing.net/2005/02/17/howto_get_something_.html">HOWTO: Get a link posted to Boing Boing</a>
302
- <!-- Winksite plug --></p>
303
- <p><a href="http://winksite.com/html/ms_bl_ext_l.cfm?susid=2906">Boing Boing Mobile powered by Winksite</a> <!-- end Winksite plug --></p>
304
- <p><a href=""><a href="http://fark.com">Fark rules!</a>
305
-
306
- <p><a href="http://creativecommons.org/licenses/by-nc/1.0"><img alt="Creative Commons License" border="0" src="http://creativecommons.org/images/public/somerights.gif"></a><br>
307
- This work is licensed under a <a href="http://creativecommons.org/licenses/by-nc/1.0">Creative Commons License</a>. <!-- end Creative Commons License --><!-- Trademark and Copyright --></p>
308
-
309
- <p><a href="http://www.boingboing.net/stats/">Stats</a> <a href="http://www.boingboing.net/2005/01/04/boingboing_traffic_s.html">(About our stats)</a>
310
-
311
- <p>
312
- <a href="http://feeds.feedburner.com/boingboing/iBag"><img src="http://feeds.feedburner.com/~fc/boingboing/iBag?bg=&amp;fg=&amp;anim=" height="26" width="88" style="border:0" alt="" /></a>
313
-
314
- <P><a href="http://www.boingboing.net/policies.html">Policies</a>
315
-
316
- <p>
317
- <a href="http://www.boingboing.net/2005/01/21/five_years_worth_of_.html">Our first five years' worth of posts in one file</a>
318
- <p>
319
- <p>Copyright 2006 Happy Mutants LLC. Some rights reserved. Boing Boing is a trademark of Happy Mutants LLC in the United States [and other countries]. <!-- End Trademark and Copyright --></p>
320
-
321
- </div>
322
- </td>
323
-
324
- <td valign="top" width="500">
325
- <div id="content">
326
-
327
- <h2>
328
- Wednesday, June 14, 2006
329
- </h2>
330
-
331
- <a name="027906">
332
- </a>
333
- <h3>
334
- Slipstream Science Fiction anthology defies genre conventions
335
- </h3>
336
- James Patrick Kelly and John Kessel gave a great interview to Sci Fi Weekly about their new anthology, <a href="http://www.amazon.com/exec/obidos/ASIN/189239135X/downandoutint-20">Feeling Very Strange: The Slipstream Anthology</a>. The book has a top-notch table-of-contents, stories that defy genre conventions and make your head spin in a good way.
337
-
338
- <blockquote>
339
- <img src="http://craphound.com/images/feelingverystrangecover.jpg" width="230" height="348" align="left">
340
- We make the point in our introduction that slipstream isn't really a genre at the moment and may never be one. What it is, in our opinion, is a literary effect--in the same way that horror or comedy are literary effects achieved by many different kinds of dissimilar stories. What is that effect? We borrowed the term cognitive dissonance from the psychologists. When we are presented with two contradictory cognitions--impressions, feelings, beliefs--we experience cognitive dissonance, a kind of psychic discomfort that we normally try to ease by discounting one of the cognitions as false or illusory and promoting the other to reality. But in some cases we aren't well served by this convenient sorting out.
341
- <p>
342
- We think that what slipstream stories do is to embrace cognitive dissonance. F. Scott Fitzgerald once said that "The test of a first-rate intelligence is the ability to hold two opposing ideas in mind at the same time and still retain the ability to function." We believe that such an ability is necessary to cope with life in the 21st century and that stories that ask us to exercise that ability are an expression of the zeitgeist. Do you really need a definitive answer as to whether an electron is a wave or a particle? Why? Maybe it's time to make room for uncertainty in contemporary fiction, even if the stories do make you feel very strange. Slipstream may use metafictional techniques to estrange us from consensus reality, they may rewrite history, they may mash up different styles or genres. But that's the point, as we see it. Slipstream has no rules, it has only results.
343
-
344
- <br clear="all">
345
- </blockquote>
346
-
347
- <a href="http://www.scifi.com/sfw/interviews/sfw12963.html">Link</a>
348
-
349
- (<i>via <a href="http://blog.wired.com/sterling/">Beyond the Beyond</a></i>)
350
-
351
- <br clear="all">
352
- <p class="posted">posted by
353
- Cory Doctorow at
354
- 03:43:28 AM
355
- <a href="http://www.boingboing.net/2006/06/14/slipstream_science_f.html">permalink
356
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/14/slipstream_science_f.html">blogs' comments</a>
357
-
358
- <br clear="all">
359
- </p>
360
- <p></p>
361
-
362
-
363
-
364
- <a name="027905">
365
- </a>
366
- <h3>
367
- College kids reportedly taking more smart drugs
368
- </h3>
369
- High-achieving college kids are reportedly dipping into "brain-steroids" -- drugs like Ritalin and Provigil, which focus attention. No one really knows how widespread this practice is, since it's uncommon for anyone to get busted for peddling smart drugs, and the side-effects of "abuse" are minimal.
370
- <p>
371
- This strikes me as the canonical <a href="http://www.boingboing.net/2006/04/28/human_enhancement_te.html">cognitive liberty</a> fight: why shouldn't you be allowed to make an informed decision about what state of mind you'd like to be in? Why will the law allow people to kill brain and liver cells with stupefying booze, but not smart drugs?
372
-
373
- <blockquote>
374
- "What was a surprise, though, was the alarming rate of senior business majors who have used" the drugs, he writes. Almost 90 percent reported at least occasional use of "smart pills" at crunch times such as final exams, including Adderall, Ritalin, Strattera and others. Of those, three-quarters did not have a legitimate prescription, obtaining the pills from friends. "We were shocked," Salantrie writes. He says that in his report, he was "attempting to bring to light the secondary market for Adderall" specifically because "most of the university is not aware" of its extent, he says.
375
- </blockquote>
376
-
377
- <a href="http://www.washingtonpost.com/wp-dyn/content/article/2006/06/10/AR2006061001181_pf.html">Link</a>
378
-
379
- (<i>via <a href="http://futurismic.com">Futurismic</a></i>)
380
-
381
- <br clear="all">
382
- <p class="posted">posted by
383
- Cory Doctorow at
384
- 03:33:51 AM
385
- <a href="http://www.boingboing.net/2006/06/14/college_kids_reporte.html">permalink
386
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/14/college_kids_reporte.html">blogs' comments</a>
387
-
388
- <br clear="all">
389
- </p>
390
- <p></p>
391
-
392
-
393
-
394
- <a name="027904">
395
- </a>
396
- <h3>
397
- UFO sighting picture photoshopping contest
398
- </h3>
399
- <img src="http://craphound.com/images/londonbridgeufo.jpg" width="344" height="259" align="left">
400
-
401
- The next Worth1000 photoshopping contest challenges artists to fake UFO-sightings photos. The quality of entries here is a little uneven, but the best of the lot are real gems.
402
-
403
- <a href="http://www.worth1000.com/cache/contest/contestcache.asp?contest_id=10724&display=photoshop#entries">Link</a>
404
-
405
- <br clear="all">
406
-
407
- <br clear="all">
408
- <p class="posted">posted by
409
- Cory Doctorow at
410
- 03:26:59 AM
411
- <a href="http://www.boingboing.net/2006/06/14/ufo_sighting_picture.html">permalink
412
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/14/ufo_sighting_picture.html">blogs' comments</a>
413
-
414
- <br clear="all">
415
- </p>
416
- <p></p>
417
-
418
-
419
-
420
- <a name="027903">
421
- </a>
422
- <h3>
423
- Rube Goldberg machine built out of sticks and stones
424
- </h3>
425
- <img src="http://craphound.com/images/sticksstonesrubegoldberg.jpg" width="294" height="228" align="left">
426
-
427
- There's a feature on today's Make video podcast about a giant, elaborate Rube Goldberg machine assembled out of sticks and stones in a forest. The video features some jaw-dropping, Mousetrap-style action, and the use of found forest-floor materials makes it all the more Wile E Coyote. The video features tips on setting up your own woodsy contraption.
428
-
429
-
430
- <a href="http://www.makezine.com/blog/archive/2006/06/make_podcast_rube_goldberg_con_2.html?CMP=OTC-0D6B48984890">Link</a>
431
-
432
- <br clear="all">
433
-
434
- <br clear="all">
435
- <p class="posted">posted by
436
- Cory Doctorow at
437
- 02:59:42 AM
438
- <a href="http://www.boingboing.net/2006/06/14/rube_goldberg_machin.html">permalink
439
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/14/rube_goldberg_machin.html">blogs' comments</a>
440
-
441
- <br clear="all">
442
- </p>
443
- <p></p>
444
-
445
-
446
-
447
- <a name="027902">
448
- </a>
449
- <h3>
450
- Lampooning the American dismissal of Gitmo suicides
451
- </h3>
452
- Fafblog today features a scathing, brilliant satirical look at the US characterization of the Guantanamo Bay suicides as an attack on America. Fafblog is consistently the best political satire/commentary on the net, the Web equivalent of Jon Stewart and Stephen Colbert, and they're finally back after a too-long hiatus. The characterization of the Gitmo suicides as an act of terrorism is so ugly and disingenuous that it begged to be punctured. I'm thankful that Fafblog is back to perform that service.
453
-
454
- <blockquote>
455
-
456
- Run for your lives - America is under attack! Just days ago three prisoners at Guantanamo Bay committed suicide in a savage assault on America's freedom to not care about prisoner suicides! Oh sure, the "Blame Atrocities First" crowd will tell you these prisoners were "driven to despair," that they "had no rights," that they were "held and tortured without due process or judicial oversight in a nightmarish mockery of justice." But what they won't tell you is that they only committed suicide as part of a diabolical ruse to trick the world into thinking our secret torture camp is the kind of secret torture camp that drives its prisoners to commit suicide! This fiendish attempt to slander the great American institution of the gulag is nothing less than an act of asymmetrical warfare against the United States - a noose is just a suicide bomb with a very small blast radius, people! - and when faced with a terrorist attack, America must respond. Giblets demands immediate retaliatory airstrikes on depressed Muslim torture victims throughout the mideast!
457
- <p>
458
- "Oh but Giblets there are dozens of innocent prisoners in Guantanamo" you say because you are a namby-pamby appeasenik who suckles at the teat of terror. Well if these Guantanamo prisoners are so innocent then what are they doing in Guantanamo? Sneaking into our secret military prisons as part of an elaborate plot to make it look like we're holding them in our secret military prisons, that's what! And once they get there they can chain themselves to the floor, break their bones on helpless guards' fists, and waterboard themselves to their heart's content to further their sinister Salafi scheme to sully the reputation of secret American torture facilities everywhere!
459
-
460
- </blockquote>
461
-
462
- <a href="http://fafblog.blogspot.com/2006/06/610-changed-everything-run-for-your.html">Link</a>
463
-
464
- <br clear="all">
465
- <p class="posted">posted by
466
- Cory Doctorow at
467
- 02:55:02 AM
468
- <a href="http://www.boingboing.net/2006/06/14/lampooning_the_ameri.html">permalink
469
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/14/lampooning_the_ameri.html">blogs' comments</a>
470
-
471
- <br clear="all">
472
- </p>
473
- <p></p>
474
-
475
-
476
-
477
- <a name="027901">
478
- </a>
479
- <h3>
480
- Neil Gaiman tribute CD sneak-peek
481
- </h3>
482
- A new Neil Gaiman tribute CD is <a href="http://www.amazon.com/exec/obidos/ASIN/B000FP2IXM/downandoutint-20">coming out in July</a>. One of the tracks is already available -- "Mr Punch" by Future Bible Heroes, and it's a delight. Apparently, Stephin Merritt (from Future Bible Heroes) is also doing a Lemony Snickett-inspired CD in October.
483
-
484
- <blockquote>
485
- <img src="http://craphound.com/images/gaimaintributedisc.jpg" width="196" height="194" align="left">
486
- Track Listing:<br>
487
- 1 Rasputina - Coraline<br>
488
- 2 ThouShaltNot - When Everyone Forgets<br>
489
- 3 Tapping The Vein - Trader Boy<br>
490
- 4 Lunascape - Raven Star<br>
491
- 5 Deine Lakaien - A Fish Called Prince<br>
492
- 6 Thea Gilmore - Even Gods Do<br>
493
- 7 Rose Berlin (feat. Curve) - Coraline<br>
494
- 8 Schandmaul - Magda Treadgolds Märchen<br>
495
- 9 Hungry Lucy - We Won't Go<br>
496
- 10 Voltaire w/The Oddz - Come Sweet Death<br>
497
- 11 Future Bible Heroes - Mr. Punch<br>
498
- 12 Razed in Black - The Endless<br>
499
- 13 The Cruxshadows - Wake the White Queen<br>
500
- 14 Ego Likeness - You Better Leave the Stars Alone<br>
501
- 15 Azam Ali - The Cold Black Key<br>
502
- 16 Joachim Witt - Vandemar<br>
503
- 17 Tori Amos - Sister Named Desire (New Master)
504
- <br clear="all">
505
- </blockquote>
506
-
507
- <a href="http://www.fabulist.org/archives/2006/06/future_bible_he.html">Link</a>
508
-
509
- (<i>Thanks, Gary!</i>)
510
-
511
- <br clear="all">
512
- <p class="posted">posted by
513
- Cory Doctorow at
514
- 02:50:59 AM
515
- <a href="http://www.boingboing.net/2006/06/14/neil_gaiman_tribute_.html">permalink
516
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/14/neil_gaiman_tribute_.html">blogs' comments</a>
517
-
518
- <br clear="all">
519
- </p>
520
- <p></p>
521
-
522
-
523
-
524
- <a name="027900">
525
- </a>
526
- <h3>
527
- Block DRM license plate
528
- </h3>
529
- <img src="http://craphound.com/images/blockdrmplate.jpg" width="157" height="93" align="left">
530
-
531
- Tom spotted this DC license plate, reading BLK DRM. He thinks it's an anti-DRM lobbyist's plate, which is plausible, though with the acronym soup in Washington, it could stand for just about anything.
532
-
533
- <a href="http://dc.metblogs.com/archives/2006/06/blk_drm.phtml">Link</a>
534
-
535
- (<i>Thanks, <a href="http://www.tombridge.com">Tom</a></i>)
536
-
537
- <br clear="all">
538
-
539
- <br clear="all">
540
- <p class="posted">posted by
541
- Cory Doctorow at
542
- 02:43:40 AM
543
- <a href="http://www.boingboing.net/2006/06/14/block_drm_license_pl.html">permalink
544
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/14/block_drm_license_pl.html">blogs' comments</a>
545
-
546
- <br clear="all">
547
- </p>
548
- <p></p>
549
-
550
-
551
- <h2>
552
- Tuesday, June 13, 2006
553
- </h2>
554
-
555
- <a name="027899">
556
- </a>
557
- <h3>
558
- Chairs upholstered with lush photos
559
- </h3>
560
- <img src="http://craphound.com/images/clothukchair.jpg" width="216" height="331" align="left">
561
-
562
- ClothUK makes easy chairs and other soft furnishings upholstered with fabric that's printed with the lush, oversized photo of your choice. Not cheap, tho!
563
-
564
- <a href="http://www.clothuk.com/">Link</a>
565
-
566
- (<i>via <a href="http://wonderlandblog.com/">Wonderland</a></i>)
567
-
568
- <br clear="all">
569
-
570
- <br clear="all">
571
- <p class="posted">posted by
572
- Cory Doctorow at
573
- 06:21:37 PM
574
- <a href="http://www.boingboing.net/2006/06/13/chairs_upholstered_w.html">permalink
575
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/chairs_upholstered_w.html">blogs' comments</a>
576
-
577
- <br clear="all">
578
- </p>
579
- <p></p>
580
-
581
-
582
-
583
- <a name="027898">
584
- </a>
585
- <h3>
586
- Corruptibles: Copyright's tech-fighting supervillains
587
- </h3>
588
- <img src="http://craphound.com/images/corruptibles.jpg" width="252" height="190" align="left">
589
-
590
- EFF has just launched a new video: The Corruptibles -- the story of Copyright Supervillains who patrol the Broadcast Flag future, blowing up our free and open devices. It's a great, funny viral short, and well worth a watch.
591
-
592
-
593
-
594
- <a href="http://www.eff.org/corrupt/">Link</a>
595
-
596
- <br clear="all">
597
-
598
- <br clear="all">
599
- <p class="posted">posted by
600
- Cory Doctorow at
601
- 06:14:53 PM
602
- <a href="http://www.boingboing.net/2006/06/13/corruptibles_copyrig.html">permalink
603
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/corruptibles_copyrig.html">blogs' comments</a>
604
-
605
- <br clear="all">
606
- </p>
607
- <p></p>
608
-
609
-
610
-
611
- <a name="027897">
612
- </a>
613
- <h3>
614
- WIPO meets to screw up podcasting, Barcelona, June 21
615
- </h3>
616
- The United Nations' World Intellectual Property Organization has called a last-minute meeting on June 21 in Barcelona, out of the normal diplomatic venues to try to ram through the Broadcasting Treaty. This treaty gives broadcasters (not creators or copyright holders) the right to tie up the use of audiovisual material for 50 years after broadcasting it, even if the programs are in the public domain, Creative Commons licensed, or not copyrightable.
617
- <p>
618
- The Barcelona meeting brings together lots of latinamerican broadcasters -- who no doubt <em>love</em> the idea of a new monopoly right that they get for free merely for broadcasting a work. Bringing these casters in is a way of undermining the effective opposition to the treaty that's come from countries like Brazil and Chile.
619
- <p>
620
- No public interest groups are on the bill to give a counterpoint (of course not -- WIPO is the kind of place where public interest groups' handouts are <a href="http://www.eff.org/deeplinks/archives/002117.php">thrown in the toilets' trashcans</a>).
621
- <p>
622
- This meeting is especially deadly, because it looks like they're trying to sneak podcasting back into the treaty, after agreeing to take it out at the last big meeting in Geneva.
623
- <p>
624
- The good news is, it's open to the public. If you're a digital rights activist in Barcelona -- or just someone who cares about how big corporations are taking away your rights to use works freely -- then you need to be at this meeting.
625
-
626
- <blockquote>
627
- Webcasting will clearly be part of next week's discussions. That much is clear from the title of next week's event: "From the Rome Convention to Podcasting". One of the invited speakers is from Yahoo! Europe, one of the proponents of new rights for webcasters. This, despite the fact that webcasting and simulcasting were taken out of the "traditional" Broadcasting Treaty and put on the slow track last month in response to concerns expressed by the majority of WIPO member states.
628
- <p>
629
- The good news: unlike earlier meetings, this one is open to the public, with prior registration requested. So if you care about the proposed treaties and can get to the Barcelona meeting, this is your opportunity to stand up and be counted for the public interest.
630
- <p>
631
- If you’re in the U.S., please tell your Congressional representatives to hold hearings on the proposed treaties before it’s too late. And if you need a reminder about the harm that these treaties could wreak on access to knowledge and technological innovation, read Jamie Boyle’s piece in today’s Financial Times.
632
-
633
- </blockquote>
634
-
635
- <a href="http://www.eff.org/deeplinks/archives/004739.php">Link</a>
636
- <p>
637
- <font color="red">Update:</font> Jamie Boyle has an excellent <a href="http://news.ft.com/cms/s/fa07af4a-fadc-11da-b4d0-0000779e2340.html">column</a> that explains how this treaty (which the US is fighting for) would be unconstitutional in the USA.
638
-
639
- <br clear="all">
640
- <p class="posted">posted by
641
- Cory Doctorow at
642
- 06:09:34 PM
643
- <a href="http://www.boingboing.net/2006/06/13/wipo_meets_to_screw_.html">permalink
644
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/wipo_meets_to_screw_.html">blogs' comments</a>
645
-
646
- <br clear="all">
647
- </p>
648
- <p></p>
649
-
650
-
651
-
652
- <a name="027896">
653
- </a>
654
- <h3>
655
- From the Boing Boing archives, circa 1999
656
- </h3>
657
- I came across this funny list of "Things to Do," written by "fifth Boing Boinger" Stefan Jones, which was published on the pre-blog version of boingboing.net.
658
-
659
- <blockquote>1. Get $25 worth of paper currency from one of those countries where $25 worth of currency fills up two wheel barrows. Divide it into five lots and send them, along with an incomprehensible letter, to the addresses listed in an email chain letter.
660
-
661
- <P>2. Build some gigantic rat traps, with wooden bases at least 2' x 3' and baited with an entire blocks of government cheese. Plant the traps, in sprung state, near a local chemical company. Wear giant rat foot shoes while doing this.
662
-
663
- <P>3. Get a supply of those little plastic ties used to seal hotel minibars after they are loaded with a full complement of overpriced goodies. Bring them and a supply of useful things (socks, condoms, aspirin) and strange things (McGruff the Crime Dog coloring books, bottles of Moxie, a can of Hormel Calf Brains in Milk Gravy) while travelling. Put the things in the minibar before sealing it up. <br clear="all"></blockquote>
664
-
665
- <a href="http://www.boingboing.net/todo.html">Link</a>
666
-
667
- <br clear="all">
668
- <p class="posted">posted by
669
- Mark Frauenfelder at
670
- 04:57:07 PM
671
- <a href="http://www.boingboing.net/2006/06/13/from_the_boing_boing.html">permalink
672
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/from_the_boing_boing.html">blogs' comments</a>
673
-
674
- <br clear="all">
675
- </p>
676
- <p></p>
677
-
678
-
679
-
680
- <a name="027895">
681
- </a>
682
- <h3>
683
- Surreal English lessons video from Japan
684
- </h3>
685
-
686
- <img src="http://www.boingboing.net/Picture%203-10.jpg" height="169" width="228" border="0" align="left" hspace="4" vspace="4" alt="Picture 3-10" />
687
- Very odd video of Japanese dancing girls and salarymen uttering defensive rebuttals in English. <a href="http://www.youtube.com/watch?v=J5qoMfBJUeI">Link</a> <em>(via <a href="http://www.sharpeworld.com/">Sharpeworld</a>)</em>
688
-
689
- <br clear="all">
690
- <p class="posted">posted by
691
- Mark Frauenfelder at
692
- 01:44:02 PM
693
- <a href="http://www.boingboing.net/2006/06/13/surreal_english_less.html">permalink
694
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/surreal_english_less.html">blogs' comments</a>
695
-
696
- <br clear="all">
697
- </p>
698
- <p></p>
699
-
700
-
701
-
702
- <a name="027894">
703
- </a>
704
- <h3>
705
- Sexed robots video
706
- </h3>
707
-
708
- Here's a video of two adorable, autonomous "sexed robots."
709
-
710
- <blockquote><img src="http://www.boingboing.net/_zLab_zLabPics_sexedMaleAndFemale.jpg" height="169" width="244" border="0" align="left" hspace="4" vspace="4" alt=" Zlab Zlabpics Sexedmaleandfemale" />
711
- The sexed robots are autonomous wheeled platforms fitted with nylon genital organs, respectively male and female. They are programmed to explore their environment, occasionally entering a "in heat" mode, where they will try and locate a partner in the same state. If a partner is located, the robots will attempt to mate.<br clear="all"></blockquote>
712
-
713
- <a href="http://www.zprod.org/zLab/sexedRobots.html">Link</a> NSFW? <em>(via <a href="http://www.sharpeworld.com/">Sharpeworld</a>)</em>
714
-
715
- <br clear="all">
716
- <p class="posted">posted by
717
- Mark Frauenfelder at
718
- 01:38:27 PM
719
- <a href="http://www.boingboing.net/2006/06/13/sexed_robots_video.html">permalink
720
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/sexed_robots_video.html">blogs' comments</a>
721
-
722
- <br clear="all">
723
- </p>
724
- <p></p>
725
-
726
-
727
-
728
- <a name="027893">
729
- </a>
730
- <h3>
731
- Burroughs' Encyclopaedia of Astounding Facts and Useful Information, 1889
732
- </h3>
733
- Manybooks.net, which converts Project Gutenberg titles into useful formats for reading on Palm devics, iPods, and ebook readers, recently made available a fantastic compendium called <em>Burroughs' Encyclopaedia of Astounding Facts and Useful Information, 1889: Universal Assistant and Treasure-House of Information to be Consulted on Every Question That Arises in Everyday Life by Young and Old Alike!</em>.
734
-
735
- <p>It's an amazing combination of a proto-Ripley's, a cookbook, etiquette guide, and almanac.
736
-
737
- <blockquote><img src="http://www.boingboing.net/200606131251.jpg" height="169" width="127" border="0" align="left" hspace="4" vspace="4" alt="200606131251" />
738
-
739
-
740
- WONDERS OF MINUTE WORKMANSHIP.
741
-
742
- <P>In the twentieth year of Queen Elizabeth, a blacksmith named Mark Scaliot, made a lock consisting of eleven pieces of iron, steel and brass, all which, together with a key to it, weighed but one grain of gold. He also made a chain of gold, consisting of forty-three links, and, having fastened this to the before-mentioned lock and key, he put the chain about the neck of a flea, which drew them all with ease. All these together, lock and key, chain and flea, weighed only one grain and a half.
743
-
744
- <P>Oswaldus Norhingerus, who was more famous even than Scaliot for his minute contrivances, is said to have made 1,600 dishes of turned ivory, all perfect and complete in every part, yet so small, thin and slender, that all of them were included at once in a cup turned out of a pepper-corn of the common size. Johannes Shad, of Mitelbrach, carried this wonderful work with him to Rome, and showed it to Pope Paul V., who saw and counted them all by the help of a pair of spectacles. They were so little as to be almost invisible to the eye.
745
-
746
- <P>Johannes Ferrarius, a Jesuit, had in his posession cannons of wood, with their carriages, wheels, and all other military furniture, all of which were also contained in a pepper-corn of the ordinary size.<br clear="all"></blockquote>
747
-
748
- <a href="http://manybooks.net/titles/burroughsb1409114091-8.html">Link</a>
749
-
750
- <br clear="all">
751
- <p class="posted">posted by
752
- Mark Frauenfelder at
753
- 12:57:03 PM
754
- <a href="http://www.boingboing.net/2006/06/13/burroughs_encyclopae.html">permalink
755
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/burroughs_encyclopae.html">blogs' comments</a>
756
-
757
- <br clear="all">
758
- </p>
759
- <p></p>
760
-
761
-
762
-
763
- <a name="027892">
764
- </a>
765
- <h3>
766
- Door looks like you walk through it
767
- </h3>
768
-
769
- <img src="http://www.boingboing.net/200606131240.jpg" height="169" width="94" border="0" align="left" hspace="4" vspace="4" alt="200606131240" />
770
-
771
-
772
- Fukuda&#8217;s Automatic Door opens around your body as you pass through it. The idea is to save energy and keep the room clean. <a href="http://www.popgadget.net/2006/06/automatic_door_1.php">Link</a>
773
-
774
- <br clear="all">
775
- <p class="posted">posted by
776
- Mark Frauenfelder at
777
- 12:39:56 PM
778
- <a href="http://www.boingboing.net/2006/06/13/door_looks_like_you_.html">permalink
779
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/door_looks_like_you_.html">blogs' comments</a>
780
-
781
- <br clear="all">
782
- </p>
783
- <p></p>
784
-
785
-
786
-
787
- <a name="027891">
788
- </a>
789
- <h3>
790
- AOL's efforts to keep you from quitting your account
791
- </h3>
792
- Listen to this recording of a guy who called AOL to try to cancel his account and the AOL jerk who tries to keep him from canceling. Just disgusting. <a href="http://www.duggmirror.com/technology/MP3_Recording:_Trying_to_cancel_AOL/">Link</a> <em>(via <a href="http://digg.com/technology/MP3_Recording%3A_Trying_to_cancel_AOL">Digg</a>)</em>
793
-
794
- <br clear="all">
795
- <p class="posted">posted by
796
- Mark Frauenfelder at
797
- 12:27:01 PM
798
- <a href="http://www.boingboing.net/2006/06/13/aols_efforts_to_keep.html">permalink
799
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/aols_efforts_to_keep.html">blogs' comments</a>
800
-
801
- <br clear="all">
802
- </p>
803
- <p></p>
804
-
805
-
806
-
807
- <a name="027889">
808
- </a>
809
- <h3>
810
- LA's South Central Farm under police siege right now
811
- </h3>
812
- The police have closed on South Central Farm, the largest community garden in the USA. The farms were planted after the Rodney King uprising, when the land was given to the neighborhood, and it has been reclaimed and cultivated by 350 families. The city reneged on its promise and sold the land to a developer, who has now moved on it with bulldozers and a riot squad.
813
-
814
- <blockquote>
815
- The South Central Farm is currently under attack. An early morning raid began this 5-hour long eviction that is still in process. Trees are being cut down, bulldozers are leveling the families’ food, hundreds of protesters are on site rallying with tears in their eyes as the nation’s largest urban farm is destroyed before them. The L.A.P.D. is on tactical alert as fire ladders and cherry pickers are being brought in to remove the tree-sitters. The 350 families created this oasis 14 years ago in the wake of the 1992 uprising when this land was offered to the community by the then Mayor as a form of mitigation.
816
- </blockquote>
817
-
818
- <a href="http://www.boingboing.net/2006/05/19/last_chance_to_save_.html">
819
-
820
- <a href="http://www.southcentralfarmers.com/index.php?option=com_content&task=view&id=160&Itemid=2">Link</a>, <a href="http://flickr.com/photos/tags/southcentralfarm">Flickr's southcentralfarm tag</a>
821
-
822
- (<i>Thanks to everyone who wrote in with this link</i>)
823
- <p>
824
- <font color="red">Update:</font> Elan sez, "the land for the farm was originally taken from Ralph Horowitz through eminent domain with the intension of using it for a trash incinerator. When the incinerator fell through, the city was required to sell it back to the Horowitz (after a ten year period of first refusal)."
825
-
826
- <br clear="all">
827
- <p class="posted">posted by
828
- Cory Doctorow at
829
- 11:48:42 AM
830
- <a href="http://www.boingboing.net/2006/06/13/las_south_central_fa.html">permalink
831
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/las_south_central_fa.html">blogs' comments</a>
832
-
833
- <br clear="all">
834
- </p>
835
- <p></p>
836
-
837
-
838
-
839
- <a name="027888">
840
- </a>
841
- <h3>
842
- Stephen Hawking writing a kids' book
843
- </h3>
844
- Stephen Hawking and his daughter are collaborating on a kids' novel that is "a bit like Harry Potter, but without the magic."
845
-
846
- <blockquote>
847
- His daughter Lucy said their forthcoming project would be aimed at people like her own eight-year-old son.
848
- <p>
849
- "It is a story for children, which explains the wonders of the universe," she said.
850
-
851
-
852
- </blockquote>
853
-
854
- <a href="http://news.bbc.co.uk/1/hi/entertainment/5075516.stm">Link</a>
855
-
856
- (<i>via <a href="http://fark.com">Fark</a></i>)
857
-
858
- <br clear="all">
859
- <p class="posted">posted by
860
- Cory Doctorow at
861
- 11:42:15 AM
862
- <a href="http://www.boingboing.net/2006/06/13/stephen_hawking_writ.html">permalink
863
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/stephen_hawking_writ.html">blogs' comments</a>
864
-
865
- <br clear="all">
866
- </p>
867
- <p></p>
868
-
869
-
870
-
871
- <a name="027887">
872
- </a>
873
- <h3>
874
- ScienceMatters@Berkeley, June issue
875
- </h3>
876
-
877
- My new issue of ScienceMatters@Berkeley is online. In this issue:
878
- <blockquote><img src="http://www.boingboing.net/images/_archives_volume3_issue21_images_oster3.jpg" height="148" width="136" border="1" align="left" hspace="4" vspace="4" alt=" Archives Volume3 Issue21 Images Oster3" /><br>
879
- * Start Your Protein Engines<br><br>
880
- * The New New Math of String Theory<br><br>
881
- * Molecular Rules of Engagement<br clear="all"></blockquote>
882
- <a href="http://sciencematters.berkeley.edu/archives/volume3/issue21/index.php">Link</a>
883
-
884
- <br clear="all">
885
- <p class="posted">posted by
886
- David Pescovitz at
887
- 11:42:06 AM
888
- <a href="http://www.boingboing.net/2006/06/13/sciencemattersberkel.html">permalink
889
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/sciencemattersberkel.html">blogs' comments</a>
890
-
891
- <br clear="all">
892
- </p>
893
- <p></p>
894
-
895
-
896
-
897
- <a name="027886">
898
- </a>
899
- <h3>
900
- iPod dock/speakers built into bumwad dispenser
901
- </h3>
902
- <img src="http://craphound.com/images/bumwadipoddock.jpg" width="262" height="272" align="left">
903
-
904
- This iPod dock and speakers built into a bumwad dispenser isn't as weird as it seems at first blush -- lots of us have a radio in the bathroom; this is a way of listening to your iPod without sacrificing your limited counterspace to an electronics footprint.
905
-
906
- <a href="http://www.atechflash.com/products-icarta.html">Link</a>
907
-
908
- (<i>via <a href="http://popgadget.net/">Popgadget</a></i>)
909
-
910
- <br clear="all">
911
-
912
- <br clear="all">
913
- <p class="posted">posted by
914
- Cory Doctorow at
915
- 11:38:34 AM
916
- <a href="http://www.boingboing.net/2006/06/13/ipod_dockspeakers_bu.html">permalink
917
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/ipod_dockspeakers_bu.html">blogs' comments</a>
918
-
919
- <br clear="all">
920
- </p>
921
- <p></p>
922
-
923
-
924
-
925
- <a name="027885">
926
- </a>
927
- <h3>
928
- Cory's Someone to Town shortlisted for Canada's sf book award
929
- </h3>
930
- <img src="http://craphound.com/images/someonecovermainsite.jpg" width="127" height="192" align="left">
931
- I'm pleased as punch to say that my novel, <a href="http://craphound.com/someone/">Someone Comes to Town, Someone Leave Town</a> has been shortlisted for the Sunburst, Canada's national science fiction award. The Sunburst jury honored me with the award in 2004 for my short story collection <a href="http://craphound.com/place">A Place So Foreign and Eight More</a> and this is a double-helping of delight.
932
- <p>
933
- Someone Comes to Town... comes out in a <a href="http://www.amazon.com/exec/obidos/ASIN/0765312808/downandoutint-20">new trade paperback edition</a> this week, too!
934
-
935
- <a href="http://www.sunburstaward.org/2006_shortlist.html">Link</a>
936
-
937
- <br clear="all">
938
-
939
-
940
- <br clear="all">
941
- <p class="posted">posted by
942
- Cory Doctorow at
943
- 10:59:36 AM
944
- <a href="http://www.boingboing.net/2006/06/13/corys_someone_to_tow.html">permalink
945
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/corys_someone_to_tow.html">blogs' comments</a>
946
-
947
- <br clear="all">
948
- </p>
949
- <p></p>
950
-
951
-
952
-
953
- <a name="027884">
954
- </a>
955
- <h3>
956
- People are happier when they're older?
957
- </h3>
958
- A new study suggests that people may think that the happiest days of their lives are when they're young, but that belief doesn't jibe with reality. University of Michigan and VA Ann Arbor healthcare Systems researchers polled 540 adults in the 21-40 age group and 60+ age group. They rated their own happiness right now, predicted how happy they'd be in the future, and also how happy they think others are in those age groups. The results were published in the Journal of Happiness Studies, which is a delightful name for a scientific publication. From the University of Michigan Health System:
959
- <blockquote>"Overall, people got it wrong, believing that most people become less happy as they age, when in fact this study and others have shown that people tend to become happier over time," says lead author Heather Lacey, Ph.D., a VA postdoctoral fellow and member of the U-M Medical School's Center for Behavioral and Decision Sciences in Medicine. "Not only do younger people believe that older people are less happy, but older people believe they and others must have been happier 'back then'. Neither belief is accurate..."<br><br>
960
-
961
- "People often believe that happiness is a matter of circumstance, that if something good happens, they will experience long-lasting happiness, or if something bad happens, they will experience long-term misery," (says co-author Peter Ubel). "But instead, people's happiness results more from their underlying emotional resources -- resources that appear to grow with age. People get better at managing life's ups and downs, and the result is that as they age, they become happier -- even though their objective circumstances, such as their health, decline."</blockquote>
962
- <a href="http://www.med.umich.edu/opm/newspage/2006/happiness.htm">Link</a>
963
-
964
- <br clear="all">
965
- <p class="posted">posted by
966
- David Pescovitz at
967
- 10:58:28 AM
968
- <a href="http://www.boingboing.net/2006/06/13/people_are_happier_w.html">permalink
969
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/people_are_happier_w.html">blogs' comments</a>
970
-
971
- <br clear="all">
972
- </p>
973
- <p></p>
974
-
975
-
976
-
977
- <a name="027883">
978
- </a>
979
- <h3>
980
- The incredible sound-mimicking lyrebird
981
- </h3>
982
-
983
- <img src="http://www.boingboing.net/lyrebirdclmgh.jpg" height="154" width="213" border="0" align="left" hspace="4" vspace="4" alt="Lyrebird" title="Lyrebird" />
984
- Here's a video clip of a male Australian lyrebird, which sings complex songs to attract mates. Lyrebirds' songs are composed of sounds they hear, including sounds from machines, such as a camera's shutter mechanism and film drive, a car alarm, and logging equipment. This bird is like a tape recorder. <a href="http://www.devilducky.com/media/46386/">Link</a> <em>(thanks, <a href="http://positiveapeindex.blogspot.com/">Coop</a>!)</em>
985
-
986
- <br clear="all">
987
- <p class="posted">posted by
988
- Mark Frauenfelder at
989
- 10:53:26 AM
990
- <a href="http://www.boingboing.net/2006/06/13/the_incredible_sound.html">permalink
991
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/the_incredible_sound.html">blogs' comments</a>
992
-
993
- <br clear="all">
994
- </p>
995
- <p></p>
996
-
997
-
998
-
999
- <a name="027882">
1000
- </a>
1001
- <h3>
1002
- Aymara people's "reversed" concept of time
1003
- </h3>
1004
- The Aymara, an indigenous group in the Andes highlands, have a concept of time that's opposite our own spatial metaphor. A new study by cognitive scientists explains how the Aymara consider the past to be ahead and the future behind them. According to the study, this is the first documented culture that seems not to have mapped time with the properties of space "as if (the future) were in front of ego and the past in back." From UCSD:
1005
- <blockquote>The linguistic evidence seems, on the surface, clear: The Aymara language recruits “nayra,” the basic word for “eye,” “front” or “sight,” to mean “past” and recruits “qhipa,” the basic word for “back” or “behind,” to mean “future.” So, for example, the expression “nayra mara” – which translates in meaning to “last year” – can be literally glossed as “front year..."<br><br>The Aymara, especially the elderly who didn’t command a grammatically correct Spanish, indicated space behind themselves when speaking of the future – by thumbing or waving over their shoulders – and indicated space in front of themselves when speaking of the past – by sweeping forward with their hands and arms, close to their bodies for now or the near past and farther out, to the full extent of the arm, for ancient times. In other words, they used gestures identical to the familiar ones – only exactly in reverse.
1006
- <br><br>
1007
- “These findings suggest that cognition of such everyday abstractions as time is at least partly a cultural phenomenon,” (University of California, San Diego professor Rafael) Nunez said. “That we construe time on a front-back axis, treating future and past as though they were locations ahead and behind, is strongly influenced by the way we move, by our dorsoventral morphology, by our frontal binocular vision, etc. Ultimately, had we been blob-ish amoeba-like creatures, we wouldn’t have had the means to create and bring forth these concepts.
1008
- <br><br>
1009
- “But the Aymara counter-example makes plain that there is room for cultural variation. With the same bodies – the same neuroanatomy, neurotransmitters and all – here we have a basic concept that is utterly different,” he said.
1010
- </blockquote><a href="http://ucsdnews.ucsd.edu/newsrel/soc/backsfuture06.asp">Link</a>
1011
-
1012
- <br clear="all">
1013
- <p class="posted">posted by
1014
- David Pescovitz at
1015
- 10:05:40 AM
1016
- <a href="http://www.boingboing.net/2006/06/13/aymara_peoples_rever.html">permalink
1017
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/aymara_peoples_rever.html">blogs' comments</a>
1018
-
1019
- <br clear="all">
1020
- </p>
1021
- <p></p>
1022
-
1023
-
1024
-
1025
- <a name="027881">
1026
- </a>
1027
- <h3>
1028
- Webby Awards last night, with Prince
1029
- </h3>
1030
- <blockquote>
1031
- <img src="http://www.boingboing.net/images/prince.jpg" height="200" width="296" border="1" align="left" hspace="4" vspace="4" alt="Prince" /><br clear="all">
1032
- </blockquote>Prince performed an acoustic number at last night's Webby Awards in NYC. Prince won a Lifetime Achievement Award. His five word acceptance speech: "Everything you think is true." Also in attendance were Robert Kahn, Gorillaz, Arianna Huffington, and dozens of other interesting folks. Rob Corddry hosted. Congrats to all the <a href="http://www.webbyawards.com/webbys/current.php?season=10">winners</a> and our friends at the Webby Awards for what sounds like an amazing ceremony! Check Rocketboom for the edit of the evening.<br clear="all"> <a href="http://www.rocketboom.com/vlog/archives/2006/06/rb_06_jun_13.html">Link </a>
1033
-
1034
- <br clear="all">
1035
- <p class="posted">posted by
1036
- David Pescovitz at
1037
- 09:19:33 AM
1038
- <a href="http://www.boingboing.net/2006/06/13/webby_awards_last_ni.html">permalink
1039
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/webby_awards_last_ni.html">blogs' comments</a>
1040
-
1041
- <br clear="all">
1042
- </p>
1043
- <p></p>
1044
-
1045
-
1046
-
1047
- <a name="027880">
1048
- </a>
1049
- <h3>
1050
- Electrical substations disguised as houses
1051
- </h3>
1052
- Toronto Hydro, the electrical authority in Toronto, has spent decades building electrical substations that are disguised as typical family houses:
1053
-
1054
- <blockquote>
1055
- <img src="http://craphound.com/images/fakehydrohouse.jpg" width="268" height="208" align="left">
1056
- In 1987, Canadian photographer Robin Collyer began documenting houses that aren't houses at all – they're architecturally-disguised electrical substations, complete with windows, blinds, and bourgeois landscaping.
1057
- <p>
1058
- "During the 1950s and 1960s," Collyer explains in a recent issue of Cabinet Magazine, "the Hydro-Electric public utilities in the metropolitan region of Toronto built structures known as 'Bungalow-Style Substations.' These stations, which have transforming and switching functions, were constructed in a manner that mimics the style and character of the different neighborhoods."
1059
- <br clear="all">
1060
- </blockquote>
1061
-
1062
- <a href="http://bldgblog.blogspot.com/2006/06/transformer-houses.html">Link</a>
1063
-
1064
- <br clear="all">
1065
- <p class="posted">posted by
1066
- Cory Doctorow at
1067
- 04:53:31 AM
1068
- <a href="http://www.boingboing.net/2006/06/13/electrical_substatio.html">permalink
1069
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/electrical_substatio.html">blogs' comments</a>
1070
-
1071
- <br clear="all">
1072
- </p>
1073
- <p></p>
1074
-
1075
-
1076
-
1077
- <a name="027879">
1078
- </a>
1079
- <h3>
1080
- Candyland board made from 100k beads
1081
- </h3>
1082
- <img src="http://craphound.com/images/candyalndbeads.jpg" width="332" height="331" align="left">
1083
-
1084
- Peggy Dembicer cloned a 1978 Candyland game-board using over 100,000 novelty beads. She's documented the finished project on Flickr, with details of some of the finer work.
1085
-
1086
- <a href="http://www.flickr.com/photos/dembicer/tags/candyland/">Link</a>
1087
-
1088
- (<i>via <a href="http:/makezine.com/blog/">Make Blog</a></i>)
1089
-
1090
- <br clear="all">
1091
-
1092
- <br clear="all">
1093
- <p class="posted">posted by
1094
- Cory Doctorow at
1095
- 12:10:49 AM
1096
- <a href="http://www.boingboing.net/2006/06/13/candyland_board_made.html">permalink
1097
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/13/candyland_board_made.html">blogs' comments</a>
1098
-
1099
- <br clear="all">
1100
- </p>
1101
- <p></p>
1102
-
1103
-
1104
- <h2>
1105
- Monday, June 12, 2006
1106
- </h2>
1107
-
1108
- <a name="027878">
1109
- </a>
1110
- <h3>
1111
- Stanford prof sues James Joyce estate for right to study Joyce
1112
- </h3>
1113
- A prof at Stanford University is suing the estate of James Joyce over the estate's long practice of destroying documents vital to Joyce scholarship, and of intimidating academics and creators who want to study and extend the works of Joyce. Carol Shloss, a Joyce scholar, has worked for 15 years on a book about the ways in which the book Finnegans Wake was inspired by Joyce's mentally ill daughter. Joyce's grandson, Stephen Joyce, have allegedly destroyed documents relating to this to undermine her book.
1114
- <p>
1115
- This isn't the first time that Stephen Joyce has hurt the cause of scholarship about his grandfather. He threatened to sue the Irish Museum over its exhibition of Joyce's papers. He threatened to sue pubs in Ireland for allowing people to read aloud from Joyce's novels on Bloomsday, the celebration of Ulysses. He told symphonic composers that they couldn't put Joyce quotations in their symphonies.
1116
- <p>
1117
- Most tragically, there was a brief moment when Stephen Joyce was irrelevant. The works of James Joyce were in the public domain until the EU copyright directive extended copyright by 20 years, putting Joyce's books back into the care of his capricious grandson for decades.
1118
- <p>
1119
- There's a whole body of scholarship devoted to tracking the ways in which Stephen Joyce has made himself the enemy of academics and Joyce lovers. The best work to start with is Matthew Rimmer's <a href="http://papers.ssrn.com/sol3/papers.cfm?abstract_id=759244">Bloomsday: Copyright Estates and Cultural Festivals</a>.
1120
-
1121
- <blockquote>
1122
- Before the book was published, publisher Farrar, Straus and Giroux removed several supporting citations from Shloss' tome to avoid a lawsuit, according to Olson. Shloss wants to post that information as an electronic appendix to answer several critics who charged that "To Dance in the Wake" was interesting, but thin on documentary evidence, Olson said.
1123
- <p>
1124
- "It's painful once you've written something ... that you think is complete and good, to have it hacked up," Olson said. "There is a desire to bring it forth in the way she originally intended."
1125
- <p>
1126
- Shloss prepared the Web site last year but never made it public because she worried about being sued, Olson said. Among the items excised from the book are quotations from "Finnegans Wake" she thinks support her thesis, as well as letters between James Joyce and his daughter, according to Olson.
1127
- <p>
1128
- Shloss wants the court to declare she's entitled to use information the estate controls under laws that allow authors to quote copyrighted works if they do it in "a scholarly transformative manner."
1129
- </blockquote>
1130
-
1131
- <a href="http://news.yahoo.com/s/ap/20060613/ap_on_en_ot/james_joyce_lawsuit">Link</a>
1132
-
1133
- (<i>Thanks, <a href="http://vidiot.typepad.com">Vidiot</a>!</i>)<p>
1134
- <font color="red">Update:</font> <a href="http://www.newyorker.com/fact/content/articles/060619fa_fact">This New Yorker article</a> on the case is full of great color and background, and includes the fact that Larry Lessig, founder of the Creative Commons project, is arguing the case.
1135
-
1136
- <br clear="all">
1137
- <p class="posted">posted by
1138
- Cory Doctorow at
1139
- 10:52:01 PM
1140
- <a href="http://www.boingboing.net/2006/06/12/stanford_prof_sues_j.html">permalink
1141
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/stanford_prof_sues_j.html">blogs' comments</a>
1142
-
1143
- <br clear="all">
1144
- </p>
1145
- <p></p>
1146
-
1147
-
1148
-
1149
- <a name="027877">
1150
- </a>
1151
- <h3>
1152
- HOWTO turn a NES controller into a cell-phone
1153
- </h3>
1154
- <img src="http://craphound.com/images/nesphone2.jpg" width="388" height="162"><br>
1155
-
1156
- Diyhappy took apart a Nokia 3200 -- which had interchangeable faceplates and was thus readily uncased -- and rebuilt it inside an old Nintendo Entertainment System controller. He dremelled out holes for the buttons and the screen and voila, the NES mobile phone.
1157
-
1158
-
1159
- <a href="http://www.diyhappy.com/nes-controller-cellphone-mod/">Link</a>
1160
-
1161
- (<i>Thanks, <a href="http://gthing.net">Sam</a>!</i>)
1162
-
1163
- <br clear="all">
1164
- <p class="posted">posted by
1165
- Cory Doctorow at
1166
- 10:39:04 PM
1167
- <a href="http://www.boingboing.net/2006/06/12/howto_turn_a_nes_con.html">permalink
1168
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/howto_turn_a_nes_con.html">blogs' comments</a>
1169
-
1170
- <br clear="all">
1171
- </p>
1172
- <p></p>
1173
-
1174
-
1175
-
1176
- <a name="027876">
1177
- </a>
1178
- <h3>
1179
- HOWTO make cufflinks out of Ethernet connectors
1180
- </h3>
1181
- <img src="http://craphound.com/images/rj45cufflink.jpg" width="246" height="229" align="left">
1182
-
1183
- Mark got invited to a fancy party and couldn't find his cufflinks, so he hacked a pair out of some Ethernet connectors and bits of wire; and thus the crimp-your-own cufflink was born. He's written up his mod in detail for others who want to follow suit.
1184
-
1185
- <a href="http://geektechnique.org/projectlab/651/geek-chique-how-to-make-cuff-links">Link</a>
1186
-
1187
- (<i>Thanks, <a href="http://geektechnique.org">Mark</a>!</i>)
1188
-
1189
- <br clear="all">
1190
-
1191
- <br clear="all">
1192
- <p class="posted">posted by
1193
- Cory Doctorow at
1194
- 10:32:58 PM
1195
- <a href="http://www.boingboing.net/2006/06/12/howto_make_cufflinks.html">permalink
1196
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/howto_make_cufflinks.html">blogs' comments</a>
1197
-
1198
- <br clear="all">
1199
- </p>
1200
- <p></p>
1201
-
1202
-
1203
-
1204
- <a name="027875">
1205
- </a>
1206
- <h3>
1207
- Inside China's iPod sweat-shops
1208
- </h3>
1209
- A British paper sent a reporter to "iPod City," the plant in Longhua, China, where iPods are assembled by women who earn $50/month for working 15 hour days.
1210
- <p>
1211
- My guess is that this is no worse than the conditions in which Powerbooks, Thinkpads, Zens, Linksys routers, etc are manufactured, but Christ, this is depressing.
1212
-
1213
- <blockquote>
1214
- The Mail visited some of these factories and spoke with staff there. It reports that Foxconn's Longhua plant houses 200,000 workers, remarking: "This iPod City has a population bigger than Newcastle's."
1215
- <p>
1216
- The report claims Longhua's workers live in dormitories that house 100 people, and that visitors from the outside world are not permitted. Workers toil for 15-hours a day to make the iconic music player, the report claims. They earn £27 per month. The report reveals that the iPod nano is made in a five-storey factory (E3) that is secured by police officers.
1217
- <p>
1218
- Another factory in Suzhou, Shanghai, makes iPod shuffles. The workers are housed outside the plant, and earn £54 per month - but they must pay for their accommodation and food, "which takes up half their salaries", the report observes.
1219
-
1220
-
1221
- </blockquote>
1222
-
1223
- <a href="http://www.macworld.co.uk/news/index.cfm?RSS&NewsID=14915">Link</a>
1224
-
1225
- (<i>Thanks, <a href="http://home.blarg.net/~ars/raysho.html">Tony</a>!</i>)
1226
- <p>
1227
- <font color="red">Update:</font> A former Nokia employee adds, "Add Nokia phones to your list. The type label may say 'Made in Finland' (top-notch models) or 'Made in Hungary' (mid-range ones), but Nokia cellphone engines (ie. the actual hardware) are manufactured by Foxconn in Longhua, China... unless they've found a cheaper supplier. Yes, I actually worked at the plant for a few months between real jobs."
1228
-
1229
- <p>
1230
- <font color="red">Update 2:</font> Apple has <a href="http://www.macworld.co.uk/news/index.cfm?RSS&NewsID=14935">promised to investigate the labor conditions</a> in its iPod factories.
1231
-
1232
- <br clear="all">
1233
- <p class="posted">posted by
1234
- Cory Doctorow at
1235
- 10:29:26 PM
1236
- <a href="http://www.boingboing.net/2006/06/12/inside_chinas_ipod_s.html">permalink
1237
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/inside_chinas_ipod_s.html">blogs' comments</a>
1238
-
1239
- <br clear="all">
1240
- </p>
1241
- <p></p>
1242
-
1243
-
1244
-
1245
- <a name="027874">
1246
- </a>
1247
- <h3>
1248
- Dave Alvin profile
1249
- </h3>
1250
-
1251
- <a href="http://www.amazon.com/exec/obidos/ASIN/B000F7CL1Y/boingboing/"><img src="http://www.boingboing.net/200606122126.jpg" height="169" width="168" border="0" align="left" hspace="4" vspace="4" alt="200606122126" /></a>
1252
- <a href="http://www.colinberry.com">Colin Berry</a>'s Dave Alvin piece, which ran on KQED's "California Report" a couple weeks ago, is now available online.
1253
-
1254
- <P>Colin says: "Dave's new album [<a href="http://www.amazon.com/exec/obidos/ASIN/B000F7CL1Y/boingboing/">West of the West</a>] is a tribute to California songwriters, including Tom Waits, Kate Wolf, Merle Haggard, Los Lobos, and others. I hung with him in the studio and talked to him (and some of the original songwriters) during the making of it."
1255
-
1256
- <a href="http://www.kqed.org/epArchive/R606021630/e">Link</a>
1257
-
1258
- <br clear="all">
1259
- <p class="posted">posted by
1260
- Mark Frauenfelder at
1261
- 09:26:09 PM
1262
- <a href="http://www.boingboing.net/2006/06/12/dave_alvin_profile.html">permalink
1263
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/dave_alvin_profile.html">blogs' comments</a>
1264
-
1265
- <br clear="all">
1266
- </p>
1267
- <p></p>
1268
-
1269
-
1270
-
1271
- <a name="027873">
1272
- </a>
1273
- <h3>
1274
- Tim Biskup's tiny sculpture
1275
- </h3>
1276
-
1277
- <img src="http://www.boingboing.net/IKI-Happy_o.jpg" height="169" width="225" border="0" align="left" hspace="4" vspace="4" alt="Iki-Happy O" />
1278
- <img src="http://www.boingboing.net/IKI-Sad_o.jpg" height="169" width="225" border="0" align="left" hspace="4" vspace="4" alt="Iki-Sad O" />
1279
- <br clear="all">Tim Biskup has created a tiny bronze sculpture to sell at his Laguna Art Museum retrospective (along with Gary Baseman).
1280
-
1281
- <blockquote>Iki stands 2.25" tall, has dual faces, is limited to 44 signed and numbered pieces,&#160; and comes in a letterpressed packaging. Iki will be available at the Saturday opening (6.17.06, 8 - 10 PM)&#160; of Tim's joint retrospective Pervasion show with Gary Baseman at the Laguna Art Museum. <br clear="all"></blockquote><a href="http://www.vinylpulse.com/">Link</a> <em>(Thanks, Scott!)
1282
- </em>
1283
-
1284
- <br clear="all">
1285
- <p class="posted">posted by
1286
- Mark Frauenfelder at
1287
- 09:21:26 PM
1288
- <a href="http://www.boingboing.net/2006/06/12/tim_biskups_tiny_scu.html">permalink
1289
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/tim_biskups_tiny_scu.html">blogs' comments</a>
1290
-
1291
- <br clear="all">
1292
- </p>
1293
- <p></p>
1294
-
1295
-
1296
-
1297
- <a name="027872">
1298
- </a>
1299
- <h3>
1300
- Covers from '60s French satirical magazine: Hara Kiri
1301
- </h3>
1302
-
1303
- <img src="http://www.boingboing.net/harakiriefas.jpg" height="169" width="179" border="0" align="left" hspace="4" vspace="4" alt="Hara Kiri" title="Hara Kiri" />
1304
- Here are a bunch of cover scans of a magazine I didn't know about until today. According to Wikipedia, <em>Hara Kiri</em> was created in 1960 and "in 1961 and 1966 they were temporarily banned by the French Government." <a href="http://easydreamer.blogspot.com/2006/06/hara-kiri-covers.html">Link</a>
1305
-
1306
-
1307
-
1308
- <br clear="all">
1309
- <p class="posted">posted by
1310
- Mark Frauenfelder at
1311
- 06:57:48 PM
1312
- <a href="http://www.boingboing.net/2006/06/12/covers_from_60s_fren.html">permalink
1313
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/covers_from_60s_fren.html">blogs' comments</a>
1314
-
1315
- <br clear="all">
1316
- </p>
1317
- <p></p>
1318
-
1319
-
1320
-
1321
- <a name="027871">
1322
- </a>
1323
- <h3>
1324
- Negativland performing in LA tonight
1325
- </h3>
1326
- Mark from <a href="http://negativland.com/">Negativland</a> says:
1327
-
1328
- <blockquote>This is very late notice, but we (Negativland) want to let you and all
1329
- Boingboingers know that we are playing live in LA. this Monday night,
1330
- June 12th, at the Silent Movie Theater! Yes. We are. It's at 611
1331
- North Fairfax Ave. Hollywood Box office- 323-655-2520. Tickets are
1332
- $22. The doors are at 9pm and the show starts at 10pm sharp!
1333
-
1334
- <P>This is a very rare appearance for us in L.A, and at a really cool and
1335
- intimate venue. The show is we are performing is called "It's All In
1336
- Your Head FM", and we hope you can attend! It's about monotheism, but
1337
- in stereo. With blindfolds handed out at the door. Really.<br clear="all"></blockquote>
1338
- <a href="http://www.calendarlive.com/music/367181,0,6883663.event">Link</a>
1339
-
1340
- <br clear="all">
1341
- <p class="posted">posted by
1342
- Mark Frauenfelder at
1343
- 06:24:05 PM
1344
- <a href="http://www.boingboing.net/2006/06/12/negativland_performi.html">permalink
1345
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/negativland_performi.html">blogs' comments</a>
1346
-
1347
- <br clear="all">
1348
- </p>
1349
- <p></p>
1350
-
1351
-
1352
-
1353
- <a name="027870">
1354
- </a>
1355
- <h3>
1356
- Meme Therapy interviews Rudy Rucker
1357
- </h3>
1358
- Meme Therapy has a long and interesting review with one of my very favorite authors, Rudy Rucker.
1359
-
1360
- <blockquote>MT: What aspects of writing do you enjoy the most?
1361
-
1362
- <P>
1363
- <img src="http://www.boingboing.net/200606121734.jpg" height="169" width="220" border="0" align="left" hspace="4" vspace="4" alt="200606121734" />
1364
- RR: I like leaving the daily world and going to another world, a world that I had a hand in designing. You&#8217;ll notice that in most of my novels, the main character in fact leaves the world where I start him out and goes to another world. Another planet, another dimension, another sheet of reality. It&#8217;s an objective correlative for what I&#8217;m doing when I leave this mundane world and go into the world of my novel.
1365
-
1366
- <P>Writing is so much work. Every part of writing a novel is hard. The planning, the sitting down and creating, the revising. I guess the most fun part is when it seems to pour out and I&#8217;m having a good day. When I&#8217;m doing that, I stop worrying for a while, I forget myself and I&#8217;m happy and proud and even exalted and amazed to see what&#8217;s coming down or going up.
1367
-
1368
- <P>More precisely, that fun part is &#8220;the narcotic moment of creative bliss.&#8221; I just heard John Malkovich deliver that phrase, playing the role of an artist/art prof in Art School Confidential. That&#8217;s very right on; the operative word is &#8220;narcotic,&#8221; it&#8217;s definitely something you get addicted to over the years. Really I go to all this trouble writing a novel day after day month after month because, in a way, I&#8217;m trying to get high. Or see God. Or make love to the Muse. Waiting for the narcotic moment of creative bliss.<br clear="all"></blockquote>
1369
-
1370
- <a href="http://memetherapy.blogspot.com/2006/06/rudy-rucker.html">Link</a>
1371
-
1372
- <br clear="all">
1373
- <p class="posted">posted by
1374
- Mark Frauenfelder at
1375
- 05:35:13 PM
1376
- <a href="http://www.boingboing.net/2006/06/12/meme_therapy_intervi.html">permalink
1377
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/meme_therapy_intervi.html">blogs' comments</a>
1378
-
1379
- <br clear="all">
1380
- </p>
1381
- <p></p>
1382
-
1383
-
1384
-
1385
- <a name="027869">
1386
- </a>
1387
- <h3>
1388
- Transparent street signs
1389
- </h3>
1390
-
1391
- <img src="http://www.boingboing.net/images/_city_of_chicago_images_images_image04.jpg" height="200" width="266" border="1" align="left" hspace="4" vspace="4" alt=" City Of Chicago Images Images Image04" />
1392
- Two years ago, artist Cayetano Ferrer took photos of the scene behind several Chicago street signs and then pasted the prints on top of the signs to achieve an amazing transparency effect. (As the Wooster Collective blog <a href="http://www.woostercollective.com/2006/06/amnesty_internationals_see_through_signs.html">points out</a>, Amnesty International's recent ad campaign employs a similar technique. And it's also the idea behind the "<a href="http://www.boingboing.net/2005/03/23/transparent_screen_i.html">Transparent Screen</a>" trick for your computer display.)<br clear="all">
1393
- <a href="http://www.cayetanoferrer.com/city_of_chicago/images/index.htm">Link</a> to Ferrer's "City of Chicago" image gallery, <a href="http://amnesty.ch/f/eminf/2006/celaexiste/01.html">Link</a> to Amnesty International campaign <em>(via <a href="http://www.neatorama.com/2006/06/10/transparent-street-signs-by-cayetano-ferrer/">Neatorama</a>)</em>
1394
-
1395
- <br clear="all">
1396
- <p class="posted">posted by
1397
- David Pescovitz at
1398
- 03:41:34 PM
1399
- <a href="http://www.boingboing.net/2006/06/12/transparent_street_s.html">permalink
1400
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/transparent_street_s.html">blogs' comments</a>
1401
-
1402
- <br clear="all">
1403
- </p>
1404
- <p></p>
1405
-
1406
-
1407
-
1408
- <a name="027868">
1409
- </a>
1410
- <h3>
1411
- Illustrations from Rabelais's Gargantua and Pantagruel
1412
- </h3>
1413
-
1414
-
1415
- Bibliodyssey has posted two mind-blowing selections of surrealist characters from a 1565 publication called "<em>Les Songes Drolatiques de Pantagruel, ou sont contenues plusieurs figures de l’invention de maistre François Rabelais : & derniere oeuvre d’iceluy, pour la recreation des bons esprits</em>." While Rabelais is often credited with drawing the characters to accompany his text, they were apparently most likely drawn by François Desprez. The absurd monsters remind me of the wonderful phantasmagoric work of <a href="http://www.jimwoodring.com/">Jim Woodring</a>. <blockquote><img src="http://www.boingboing.net/images/_blogger_1717_1584_1600_Rabelais-Pantegruel-by-Francois-Desprez-11-1.jpg" height="255" width="300" border="1" align="left" hspace="4" vspace="4" alt=" Blogger 1717 1584 1600 Rabelais-Pantegruel-By-Francois-Desprez-11-1" />
1416
- <br clear="all"></blockquote>
1417
- From Bibliodyssey:
1418
-
1419
- <blockquote>Franciscan friar, doctor, traveller, model for the Thelemic magickal writings of Aleister Crowley, humanist, Benedictine monk, alchemist, teacher, leader of the French renaissance, heretic, greek scholar and groundbreaking satirical writer, François Rabelais (?1483/1493-1553) issued his magnum opus 'The life of Gargantua and Pantagruel' as a five book series over 20 years up to 1564.
1420
- <br><br>
1421
- The books chart the humorous adventures of giants Gargantua and his son, Pantagruel in a scatalogical and often bawdy manner. Rabelais wrote in the epic tradition of Homer, and beyond the burlesque, there is an underlying serious examination of society, politics, education and philosophy whilst introducing 500 new words to the french lanugage.</blockquote> <a href="http://bibliodyssey.blogspot.com/2006/06/pantagruel-i.html">Link</a> and
1422
- <a href="http://bibliodyssey.blogspot.com/2006/06/pantagruel-ii.html">Link</a>
1423
-
1424
- <br clear="all">
1425
- <p class="posted">posted by
1426
- David Pescovitz at
1427
- 02:52:18 PM
1428
- <a href="http://www.boingboing.net/2006/06/12/illustrations_from_r.html">permalink
1429
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/illustrations_from_r.html">blogs' comments</a>
1430
-
1431
- <br clear="all">
1432
- </p>
1433
- <p></p>
1434
-
1435
-
1436
-
1437
- <a name="027867">
1438
- </a>
1439
- <h3>
1440
- Cartoonist Chris Ware on the piano
1441
- </h3>
1442
-
1443
- <img src="http://www.boingboing.net/warepianogdshk.jpg" height="94" width="150" border="0" align="left" hspace="4" vspace="4" alt="Chris Ware on piano" title="Chris Ware on piano" />
1444
- This isn't fair. Not only is Chris Ware a supremely gifted cartoonist, he can also play ragtime piano like nobody's business. <a href="http://www.youtube.com/watch?v=TvSNXyNw26g&#38;search=chris%20ware">Link</a> <em>(via <a href="http://www.fantagraphics.com/blog/">Flog!</a>)</em>
1445
-
1446
- <P><font color="red">Reader comment:</font>
1447
-
1448
- Rob DeRose says:
1449
-
1450
- <blockquote>Chris Ware shares his love of ragtime with MacArthur Genius Grant winner Reginald Robinson. In fact Chris heard Reginald playing in the winter garden of the Chicago Central Library one day and became fast friends. <a href="http://www.npr.org/templates/story/story.php?storyId=4051423">Here's a story from NPR</a> on how the two of them found an entirely new song of Scott Joplin's. (its the fourth of four mini-segments.)
1451
-
1452
-
1453
- <P>I've been a fan of Reginald ever since I saw him accompany the Squirrel Nut Zippers (in-between their first &#38; second album) here in Chicago. If you get a chance to see him, by all means go. A nice Trib <a href="http://www.chicagotribune.com/news/specials/chi-050430ragtime,1,4472596.story">article</a> about him. His <a href="http://www.amazon.com/exec/obidos/ASIN/b000006ah7/boingboing/">CD on Amazon</a>.
1454
-
1455
- <P>The Chicago Library's <a href="http://www.flickr.com/photos/superhappyindustries/85532969/">winter garden</a>, where he used to practice, and where he &#38; Chris Ware met (it's the nicest part of the building.)<br clear="all"></blockquote>
1456
-
1457
- <br clear="all">
1458
- <p class="posted">posted by
1459
- Mark Frauenfelder at
1460
- 02:22:04 PM
1461
- <a href="http://www.boingboing.net/2006/06/12/cartoonist_chris_war.html">permalink
1462
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/cartoonist_chris_war.html">blogs' comments</a>
1463
-
1464
- <br clear="all">
1465
- </p>
1466
- <p></p>
1467
-
1468
-
1469
-
1470
- <a name="027866">
1471
- </a>
1472
- <h3>
1473
- Walt Disney's 1956 time-capsule letter to the future
1474
- </h3>
1475
- The Disney company has unearthed a 1956 time-capsule containing a letter from Walt Disney to the future, on stationary bearing the legend "NO AGREEMENT WILL BE BINDING ON THIS CORPORATION UNLESS IN WRITING AND SIGNED BY AN OFFICER." Walt's letter to the future speculates about the future of entertainment and is at once profoundly wrong and profoundly right.
1476
- <p>
1477
- Walt predicts that the world will be overturned by technology, all the old order remade. At the same time, he assumes that what will come in on the tails of 1956's mass media will be...more mass media! Even though Walt himself predated truly national media, he can't conceive of the age of mass media waning and being replaced by a mass medium -- a channel like the net -- crowded with a never-ending confusion of micro-media. Walt, in other words, didn't predict the long tail.
1478
-
1479
- <blockquote>
1480
- [...O]f one thing I'm sure. People will need and demand amusement, refreshment and pleasant relaxation from daily tasks as much in your day as they have in ours and in all the generations of mankind into the remote past. What the exact nature and implementation of these mass entertainments may be, doesn't make much difference, it seems to me.
1481
- <p>
1482
- Humanity, as history informs us, changes very slowly in character and basic interests. People need to play as much as they need toll. They never cease to be fascinated by they own powers and passions, their base or noble emotions, their faiths and struggles and triumphs against handicap -- all things that make them laugh and weep and comfort one another in love and sacrifice out of the depths of their being...
1483
- <p>
1484
- Mindful of the phenomenal discoveries and applications of science to all our activities and institutions, it seems no mere guess that public entertainment will have become machined and powered by atomic and solar energies long before you read this capsule.
1485
- <p>
1486
- The extension of radar and other as yet untapped sources of cosmic force may well have changed the entire technique of communication, in the theatre and television fields as well as in other areas of informational broadcast.
1487
- <p>
1488
- Millions of people in massive assemblies around the world may now be viewing the same staged or natural event, scanned by some incredibly potent scope, in the same amount of time. They may even be viewing presently obscured vistas on neighboring planets as one might look at neighbors across our Los Angeles Streets.
1489
- <p>
1490
- Omniscience will have drawn closer to finite senses and perceptions, for our entertainment as for our livelihood -- yours, I should say, who will read this in your 21st Century.
1491
- </blockquote>
1492
-
1493
- <a href="http://craphound.com.nyud.net:8080/walts1956letter.pdf">200K PDF Link</a>
1494
-
1495
- (<i>Thanks, Anonymous Source!</i>)
1496
-
1497
- <br clear="all">
1498
- <p class="posted">posted by
1499
- Cory Doctorow at
1500
- 02:01:45 PM
1501
- <a href="http://www.boingboing.net/2006/06/12/walt_disneys_1956_ti.html">permalink
1502
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/walt_disneys_1956_ti.html">blogs' comments</a>
1503
-
1504
- <br clear="all">
1505
- </p>
1506
- <p></p>
1507
-
1508
-
1509
-
1510
- <a name="027865">
1511
- </a>
1512
- <h3>
1513
- Plans for Barney Fife statue toppled by Knotts' estate
1514
- </h3>
1515
- A couple of Barney Fife fans who put down $8,000 to erect a statue of Barney Fife (played by Mick Jagger lookalike Don Knotts) in downtown Mount Airy, NC (the model for Mayberry) received a letter from CBS attorneys telling them to halt the project.
1516
-
1517
- <blockquote>
1518
- <a href="http://www.thewvsr.com/knottsstatue.htm"><img src="http://www.boingboing.net/images/_knottsstatue.jpg" height="200" width="144" border="0" align="left" hspace="4" vspace="4" alt=" Knottsstatue" /></a>
1519
- [CBS attorney] Mallory Levitt explained to [would-be statue erector Tom] Hellebrand and the <em>Mount Airy News</em> that although Paramount/CBS owned the rights to the character of Barney Fife, the group didn't have the authority to give permission for a likeness of Don Knotts.
1520
-
1521
- <P>"That right belongs to the Knotts estate," she said.
1522
-
1523
- <P>Levitt told Hellebrand she contacted the actor's estate and business associates of Andy Griffith, and none wanted to go through with the project.</blockquote>
1524
-
1525
- The project website, <a href="http://donknottsstatue.com">donknottsstatue.com</a>, has a note about the cancellation of the project: "The tears on our pillows bespeak the pain that is in our hearts." The project leaders will be selling a full-size replica of a Mayberry Squad car and a golf cart made to look like a squad car on eBay to recoup their expenses.
1526
-
1527
- <a href="http://www.latimes.com/entertainment/la-et-knotts12jun12,1,5882347.story">Link</a> <em>(Thanks for the correct, url, <a href="http://www.newhousenews.com/sefton.html">Dru</a>!)</em>
1528
-
1529
- <br clear="all">
1530
- <p class="posted">posted by
1531
- Mark Frauenfelder at
1532
- 01:20:09 PM
1533
- <a href="http://www.boingboing.net/2006/06/12/plans_for_barney_fif.html">permalink
1534
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/plans_for_barney_fif.html">blogs' comments</a>
1535
-
1536
- <br clear="all">
1537
- </p>
1538
- <p></p>
1539
-
1540
-
1541
-
1542
- <a name="027864">
1543
- </a>
1544
- <h3>
1545
- Ol' Glory energy drink
1546
- </h3>
1547
-
1548
- <img src="http://www.boingboing.net/images/_72_165796068_94c49e9c84.jpg" height="200" width="150" border="1" align="left" hspace="4" vspace="4" alt=" 72 165796068 94C49E9C84" />
1549
- At the <a href="http://www.iftf.org/">Institute for the Future</a> this morning, my colleague Mike Love is chugging this delicious and patriotic energy drink. Their tag line: "Makes you feel better all over than anywhere else." Ummm.... <br clear="all"><a href="http://www.olglory.com/">Link</a> to Ol' Glory site, <a href="http://www.flickr.com/photos/mikelove/165796068/in/photostream/">Link</a> to Mike's photo on Flickr
1550
-
1551
- <br clear="all">
1552
- <p class="posted">posted by
1553
- David Pescovitz at
1554
- 11:41:56 AM
1555
- <a href="http://www.boingboing.net/2006/06/12/ol_glory_energy_drin.html">permalink
1556
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/ol_glory_energy_drin.html">blogs' comments</a>
1557
-
1558
- <br clear="all">
1559
- </p>
1560
- <p></p>
1561
-
1562
-
1563
-
1564
- <a name="027863">
1565
- </a>
1566
- <h3>
1567
- theFLOWmarket sells consumer awareness
1568
- </h3>
1569
-
1570
- <img src="http://www.boingboing.net/images/flowmarket.jpg" height="182" width="192" border="1" align="left" hspace="4" vspace="4" alt="Flowmarket" />
1571
- <img src="http://www.boingboing.net/images/gmo.jpg" height="182" width="197" border="1" align="left" hspace="4" vspace="4" alt="Gmo" />
1572
- <br clear="all">
1573
- theFLOWmarket is a supermarket-as-artwork that sells consumer awareness in the form of imaginary products like "commercial free-space," "exploitation free produce," "symptom removers," "factory farming antibiotics," "renewable energy," and "a feeling of safety." The nicely-packaged products are available for sale at prices from $5 to $20. theFLOWmarket is open for business at the <a href="http://www.ddc.dk/">Danish Design Centre</a> in Copenhagen.
1574
- <a href="http://www.theflowmarket.com">Link</a> to Flash site <em>(Thanks, Lindsay Tiemeyer!)</em>
1575
-
1576
- <br clear="all">
1577
- <p class="posted">posted by
1578
- David Pescovitz at
1579
- 11:34:06 AM
1580
- <a href="http://www.boingboing.net/2006/06/12/theflowmarket_sells_.html">permalink
1581
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/theflowmarket_sells_.html">blogs' comments</a>
1582
-
1583
- <br clear="all">
1584
- </p>
1585
- <p></p>
1586
-
1587
-
1588
-
1589
- <a name="027862">
1590
- </a>
1591
- <h3>
1592
- Pea-head smashes art gallery window, gets busted
1593
- </h3>
1594
- Roq La Rue gallery Kirsten Anderson has a funny story about an idiot that smashed a window at her new gallery in Seattle, called BLVD. He might just be the stupidest brick-wielder on in the known universe. Read on...
1595
-
1596
- <blockquote>
1597
- <img src="http://www.boingboing.net/blvddshf.jpg" height="169" width="159" border="0" align="left" hspace="4" vspace="4" alt="BLVD broken window" title="BLVD broken window" />
1598
- [A]fter I left and Damion was closing up, some drunk mouth-breathing knuckle-dragger starts banging on the door demanding to be let in. After Damion tells him that the gallery was closed, the Moron says "I'm going to smash your door in with a brick!" Damion at the time was talking to a couple of bad asses who offered to kick the guy's ass for us and looks like we should have taken them up on it, as an hour later, the guy pulls up to the gallery in his car, double parks, pulls a brick out of his car, and smashes BLVD's door a couple times. Cool huh? No one was in the gallery -- but the guy who lives upstairs heard it and called Damion. Also -- there is a bar a few storefronts away from us and I guess the folks on the patio saw it all. But it gets better. Moron turns to go back to his car and finds he's locked himself out. Har har! So he tries to smash his own car window in with the brick, which doesn't work... so he goes into the Rendevous to use the payphone to call a locksmith which is where he got nabbed by the cops. What a maroon. So anyway. Today is happy fun door repair day.</blockquote>
1599
-
1600
- <a href="http://www.drmenlo.com/roqlarue/2006_06_04_roqlarue_archive.html#114996664525479859">Link</a>
1601
-
1602
- <br clear="all">
1603
- <p class="posted">posted by
1604
- Mark Frauenfelder at
1605
- 11:04:18 AM
1606
- <a href="http://www.boingboing.net/2006/06/12/peahead_smashes_art_.html">permalink
1607
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/peahead_smashes_art_.html">blogs' comments</a>
1608
-
1609
- <br clear="all">
1610
- </p>
1611
- <p></p>
1612
-
1613
-
1614
-
1615
- <a name="027861">
1616
- </a>
1617
- <h3>
1618
- Prescription stimulants on campus
1619
- </h3>
1620
- In yesterday's Washington Post, Joel Garreau, author of <a href="http://www.garreau.com/main.cfm?action=book&id=2">Radical Evolution</a>, writes about the popularity of drugs like Adderall and Provigil to increase focus and wakefulness during academically stressful times. From the article:
1621
- <blockquote>"I'm a varsity athlete in crew," says Katharine Malone, a George Washington University junior. "So we're pretty careful about what we put in our bodies. So among my personal friends, I'd say the use is only like 50 or 60 percent..."<br><br>
1622
- For a senior project this semester, Christopher Salantrie conducted a random survey of 150 University of Delaware students at the university's Morris Library and Trabant Student Center.
1623
- <br><br>
1624
- "With rising competition for admissions and classes becoming harder and harder by the day, a hypothesis was made that at least half of students at the university have at one point used/experienced such 'smart drugs,' " Salantrie writes in his report. He found his hunch easy to confirm.
1625
- <br><br>
1626
- "What was a surprise, though, was the alarming rate of senior business majors who have used" the drugs, he writes. Almost 90 percent reported at least occasional use of "smart pills" at crunch times such as final exams, including Adderall, Ritalin, Strattera and others. Of those, three-quarters did not have a legitimate prescription, obtaining the pills from friends."</blockquote>
1627
- <a href="http://www.washingtonpost.com/wp-dyn/content/article/2006/06/10/AR2006061001181_pf.html">Link</a> <em>(Thanks, <a href="http://www.iftf.org/people/jtester.html">Jason Tester</a>!)</em>
1628
-
1629
- <br clear="all">
1630
- <p class="posted">posted by
1631
- David Pescovitz at
1632
- 09:51:50 AM
1633
- <a href="http://www.boingboing.net/2006/06/12/prescription_stimula.html">permalink
1634
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/prescription_stimula.html">blogs' comments</a>
1635
-
1636
- <br clear="all">
1637
- </p>
1638
- <p></p>
1639
-
1640
-
1641
-
1642
- <a name="027860">
1643
- </a>
1644
- <h3>
1645
- Vintage pulp covers for classic novels
1646
- </h3>
1647
- <img src="http://craphound.com/images/aliceinwonderlandpulpcover.jpg" width="234" height="332" align="left">
1648
-
1649
- Slate <a href="http://www.slate.com/id/2142392/">commissioned designers</a> to produce six vintage pulp-fiction covers for classic novels like Moby Dick ("Primitive Pirate Passions Were a Prelude to Death!"), The Iliad ("Gore! Greeks! Glory!") and Alice in Wonderland ("One girl's drug-induced descent into dreamland debauchery"). The results are lovely.
1650
-
1651
- <a href="http://www.slate.com/id/2142392/slideshow/2142443/fs/0//entry/2142437/">Link</a>
1652
-
1653
- (<i>Thanks, Fipi Lele!</i>)
1654
-
1655
- <br clear="all">
1656
-
1657
- <br clear="all">
1658
- <p class="posted">posted by
1659
- Cory Doctorow at
1660
- 08:33:24 AM
1661
- <a href="http://www.boingboing.net/2006/06/12/vintage_pulp_covers_.html">permalink
1662
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/vintage_pulp_covers_.html">blogs' comments</a>
1663
-
1664
- <br clear="all">
1665
- </p>
1666
- <p></p>
1667
-
1668
-
1669
-
1670
- <a name="027859">
1671
- </a>
1672
- <h3>
1673
- LotR video clip with voices replaced by foolish groans
1674
- </h3>
1675
- <img src="http://craphound.com/images/groaninglotrvo.jpg" width="247" height="197" align="left">
1676
-
1677
- In this youtube, "CJ" has taken a clip from the Lord of the Rings trilogy in which Frodo awakens in the Elf stronghold and greets his comrades and replaced all the voices with idiotic groaning and moaning and squealing, apparently voiced by someone named Olaf. The net effect is surprisingly funny!
1678
-
1679
- <a href="http://www.youtube.com/watch?v=4QAlt4Sfl7Q">Link</a>
1680
-
1681
- (<i>Thanks, <a href="http://wonderlandblog.com/">Alice</a>!</i>)
1682
-
1683
- <br clear="all">
1684
-
1685
- <br clear="all">
1686
- <p class="posted">posted by
1687
- Cory Doctorow at
1688
- 04:36:17 AM
1689
- <a href="http://www.boingboing.net/2006/06/12/lotr_video_clip_with.html">permalink
1690
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/lotr_video_clip_with.html">blogs' comments</a>
1691
-
1692
- <br clear="all">
1693
- </p>
1694
- <p></p>
1695
-
1696
-
1697
-
1698
- <a name="027858">
1699
- </a>
1700
- <h3>
1701
- William Gibson blogging fiction excerpts
1702
- </h3>
1703
- Since June 1, William GIbson has been posting irregular chunks of prose to his blog, stuff that appears to be excerpts from a novel-in-progress. It's fascinating stuff, little vignettes that hint at a really exciting bigger picture.
1704
-
1705
- <blockquote>
1706
- Vianca sat cross-legged on Tito’s floor, wearing a disposable hairnet and white knit cotton gloves, with his Sony plasma screen across her knees, going over it with an Armor All wipe. When she’d wiped it completely down, it would go back into its factory packaging, which in turn would be wiped down. Tito, in his own hairnet and gloves, sat opposite her, wiping the keys of his Casio. A carton of cleaning supplies had been waiting for them in the hall, beside a new and expensive-looking vacuum-cleaner Vianca said was German. Nothing came out of this vacuum but air, she said, so there would no stray hairs or other traces left behind. Tito had helped his cousin Eusebio with exactly this procedure, though Eusebio had mainly had books, each of which had needed, according to protocol, to be flipped through for forgotten insertions and then wiped. The reasons for Eusebio’s departure had never been made clear to him. That too was protocol.
1707
- </blockquote>
1708
-
1709
- <a href="http://www.williamgibsonbooks.com/blog/2006_06_01_archive.asp#115009429631653094">Link 1</a>,
1710
-
1711
- <a href="http://www.williamgibsonbooks.com/blog/2006_06_01_archive.asp#115001070629765696">Link 2</a>,
1712
-
1713
- <a href="http://www.williamgibsonbooks.com/blog/2006_06_01_archive.asp#114922706834176317">Link 3</a>
1714
-
1715
- <br clear="all">
1716
- <p class="posted">posted by
1717
- Cory Doctorow at
1718
- 12:29:17 AM
1719
- <a href="http://www.boingboing.net/2006/06/12/william_gibson_blogg.html">permalink
1720
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/12/william_gibson_blogg.html">blogs' comments</a>
1721
-
1722
- <br clear="all">
1723
- </p>
1724
- <p></p>
1725
-
1726
-
1727
- <h2>
1728
- Sunday, June 11, 2006
1729
- </h2>
1730
-
1731
- <a name="027857">
1732
- </a>
1733
- <h3>
1734
- Japanese anti-foreigner comic warns against human rights act
1735
- </h3>
1736
- <img src="http://craphound.com/images/japanhumanrightsmanga.jpg" width="396" height="284"><br>
1737
-
1738
- Coal sez, "I've just translated and posted a rather well rendered manga from an 'emergency publication' in Japan about the dangers of protecting human rights. Japan is a little behind in legal recognition of basic human rights (including but not limited to racial discrimination etc.), and it seems the emergence of a bill to make protection of rights enforceable has a few people worried. The level of alarmism I think is particularly amusing, if that's the right word. What's also noteworthy is the constant demonising of trouble-making foreigners, and the pity the writer tries to inspire for the poor landlord who can no longer refuse to rent his house to Chinese etc. You can't make this stuff up!"
1739
-
1740
-
1741
- <a href="http://libationkowloon.blogspot.com/2006/06/protecting-human-rights-is-dangerous.html">Link</a>
1742
-
1743
- (<i>Thanks, <a href="http://www.blogger.com/profile/18842296">Coal</a>!</i>)
1744
-
1745
- <br clear="all">
1746
- <p class="posted">posted by
1747
- Cory Doctorow at
1748
- 10:54:13 PM
1749
- <a href="http://www.boingboing.net/2006/06/11/japanese_antiforeign.html">permalink
1750
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/11/japanese_antiforeign.html">blogs' comments</a>
1751
-
1752
- <br clear="all">
1753
- </p>
1754
- <p></p>
1755
-
1756
-
1757
-
1758
- <a name="027856">
1759
- </a>
1760
- <h3>
1761
- iPod Nano boombox built into flashlight casing
1762
- </h3>
1763
- <img src="http://craphound.com/images/flashlightipodboombox.jpg" width="203" height="194" align="left">
1764
-
1765
- Here's a monaural boombox built into the housing for a big Eveready flashlight. The speaker fits over the mouth, and it sits over a miniature amp scavegened from a set of desktop speakers and an iPod Nano with a wireless remote.
1766
-
1767
- <a href="http://www.flickr.com/photos/37156089@N00/164912076/">Link to parts-list</a>, <a href="http://www.flickr.com/photos/37156089@N00/164912074">Link to finished item</a>
1768
-
1769
- <br clear="all">
1770
-
1771
- <br clear="all">
1772
- <p class="posted">posted by
1773
- Cory Doctorow at
1774
- 10:12:36 PM
1775
- <a href="http://www.boingboing.net/2006/06/11/ipod_nano_boombox_bu.html">permalink
1776
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/11/ipod_nano_boombox_bu.html">blogs' comments</a>
1777
-
1778
- <br clear="all">
1779
- </p>
1780
- <p></p>
1781
-
1782
-
1783
-
1784
- <a name="027855">
1785
- </a>
1786
- <h3>
1787
- New Barenaked Ladies single as free, remixable multitracks
1788
- </h3>
1789
- <img src="http://craphound.com/images/bnleasy.jpg" width="261" height="182" align="left">
1790
- The Canadian band Barenaked Ladies have pre-released a track from their upcoming album Barenaked Ladies Are Me, in a four-track mix that's ready for remixing, and free. They're planning to do more of the same with their future releases.
1791
- <p>
1792
- I used to see BNL play at my local shopping mall, the Scarborough Town Centre, when all they'd released was an indie cassette tape with an amazing cover of Public Enemy's "Fight the Power" on it, and I'm so amazingly glad to see them still making great music. What's more, the band's frontman, Steve Page, is also <a href="http://www.boingboing.net/2006/05/01/barenaked_ladies_fro.html">fronting a group of Canadian musicians</a> who've spoken out against DRM and suing fans and other music label shenanigans.
1793
- <p>
1794
- Best of all -- they're releasing the next album as a 15-song digital version as well as a 13-song CD, so I can get their music without having to take another piece of slow-decaying, space-hogging media into my already overcrowded home.
1795
-
1796
- <a href="http://www.bnlblog.com/entry.asp?dDate=6/6/2006">Link</a>
1797
-
1798
- (<i>Thanks, <a href="http://www.boosman.com/blog">Frank</a>!</i>)
1799
-
1800
- <br clear="all">
1801
-
1802
- <br clear="all">
1803
- <p class="posted">posted by
1804
- Cory Doctorow at
1805
- 11:27:33 AM
1806
- <a href="http://www.boingboing.net/2006/06/11/new_barenaked_ladies.html">permalink
1807
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/11/new_barenaked_ladies.html">blogs' comments</a>
1808
-
1809
- <br clear="all">
1810
- </p>
1811
- <p></p>
1812
-
1813
-
1814
-
1815
- <a name="027854">
1816
- </a>
1817
- <h3>
1818
- Images from anti-DRM protest at the San Fran Apple Store
1819
- </h3>
1820
- <img src="http://craphound.com/images/applestoredemosanfranquinn.jpg" width="323" height="242" align="left">
1821
- Here are some photos and a video from yesterday's <a href="http://www.boingboing.net/2006/06/09/antiitunes_drm_demon.html">anti-DRM protest</a> at the Apple Store in San Francisco.
1822
-
1823
- <a href="http://video.google.com/videoplay?docid=-2392063294481206153">Video Link</a>, <a href="http://www.flickr.com/photos/quinn/tags/drmprotest/">Photos Link</a>
1824
-
1825
- <br clear="all">
1826
-
1827
- <br clear="all">
1828
- <p class="posted">posted by
1829
- Cory Doctorow at
1830
- 11:19:28 AM
1831
- <a href="http://www.boingboing.net/2006/06/11/images_from_antidrm_.html">permalink
1832
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/11/images_from_antidrm_.html">blogs' comments</a>
1833
-
1834
- <br clear="all">
1835
- </p>
1836
- <p></p>
1837
-
1838
-
1839
- <h2>
1840
- Saturday, June 10, 2006
1841
- </h2>
1842
-
1843
- <a name="027853">
1844
- </a>
1845
- <h3>
1846
- Responses to Jaron Lanier's crit of online collectivism
1847
- </h3>
1848
- Two weeks ago, Edge.org published Jaron Lanier's essay "<a href="http://edge.org/3rd_culture/lanier06/lanier06_index.html">Digital Maoism: The Hazards of the New Online Collectivism</a>," critiquing the importance people are now placing on Wikipedia and other examples of the "hive mind," as people called it in the cyberdelic early 1990s. It's an engaging essay to be sure, but much more thought-provoking to me are the responses from the likes of Clay Shirky, Dan Gillmor, Howard Rheingold, our own Cory Doctorow, Douglas Rushkoff, and, of course, Jimmy Wales.<br><br> From <a href="http://www.rushkoff.com/">Douglas Rushkoff</a>:
1849
-
1850
-
1851
- <blockquote>I have a hard time fearing that the participants of Wikipedia or even the call-in voters of American Idol will be in a position to remake the social order anytime, soon. And I'm concerned that any argument against collaborative activity look fairly at the real reasons why some efforts turn out the way they do. Our fledgling collective intelligences are not emerging in a vacuum, but on media platforms with very specific biases.
1852
- <br><br>
1853
- First off, we can't go on pretending that even our favorite disintermediation efforts are revolutions in any real sense of the word. Projects like Wikipedia do not overthrow any elite at all, but merely replace one elite — in this case an academic one — with another: the interactive media elite...<br><br>
1854
-
1855
- While it may be true that a large number of current websites and group projects contain more content aggregation (links) than original works (stuff), that may as well be a critique of the entirety of Western culture since post-modernism. I'm as tired as anyone of art and thought that exists entirely in the realm of context and reference — but you can't blame Wikipedia for architecture based on winks to earlier eras or a music culture obsessed with sampling old recordings instead of playing new compositions.
1856
- <br><br>
1857
- Honestly, the loudest outcry over our Internet culture's inclination towards re-framing and the "meta" tend to come from those with the most to lose in a society where "credit" is no longer a paramount concern. Most of us who work in or around science and technology understand that our greatest achievements are not personal accomplishments but lucky articulations of collective realizations. Something in the air... Claiming authorship is really just a matter of ego and royalties.
1858
- </blockquote>
1859
- From <a href="http://www.craphound.com/">Cory Doctorow</a>:
1860
- <blockquote>Wikipedia isn't great because it's like the Britannica. The Britannica is great at being authoritative, edited, expensive, and monolithic. Wikipedia is great at being free, brawling, universal, and instantaneous.</blockquote>
1861
-
1862
- From <a href="http://en.wikipedia.org/wiki/Jimmy_Wales">Jimmy Wales</a> (italics indicate quotes from Jaron's original essay):
1863
-
1864
-
1865
- <blockquote><em> "A core belief of the wiki world is that whatever problems exist in the wiki will be incrementally corrected as the process unfolds."
1866
- </em><br><br>
1867
- My response is quite simple: this alleged "core belief" is not one which is held by me, nor as far as I know, by any important or prominent Wikipedians. Nor do we have any particular faith in collectives or collectivism as a mode of writing. Authoring at Wikipedia, as everywhere, is done by individuals exercising the judgment of their own minds.
1868
- <br><br>
1869
- <em> "The best guiding principle is to always cherish individuals first."
1870
- </em><br><br>
1871
- Indeed.</blockquote>
1872
- <a href="http://edge.org/discourse/digital_maoism.html">Link</a><br><br>
1873
- <font color="red">UPDATE:</font> Jaron Lanier writes us that he's received a lot of negative feedback from people who he thinks may not have actually read his original essay:
1874
- <blockquote>
1875
- In the essay i criticized the desire (that has only recently become influential) to create an "oracle effect" out of anonymity on the internet - that's the thing i identified as being a new type of collectivism, but i did not make that accusation against the wikipedia - or against social cooperation on the net, which is something i was an early true believer in- if i remember those weird days well, i think i even made up some of the rhetoric and terminology that is still associated with net advocacy today- anyway, i specifically exempted many internet gatherings from my criticism, including the wikipedia, boingboing, google, cool tools... and also the substance of the essay was not accusatory but constructive- the three rules i proposed for creating effective feedback links to the "hive mind" being one example.</blockquote>
1876
-
1877
- <br clear="all">
1878
- <p class="posted">posted by
1879
- David Pescovitz at
1880
- 10:07:03 PM
1881
- <a href="http://www.boingboing.net/2006/06/10/responses_to_jaron_l.html">permalink
1882
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/10/responses_to_jaron_l.html">blogs' comments</a>
1883
-
1884
- <br clear="all">
1885
- </p>
1886
- <p></p>
1887
-
1888
-
1889
-
1890
- <a name="027852">
1891
- </a>
1892
- <h3>
1893
- Spanish castle optical effect
1894
- </h3>
1895
- This has been going around for a couple of days, but I just found out about it. It's a neat optical effect -- you stare at a color negative of a photo for 30 seconds (or even just 15), then move the mouse over the photo, keeping your eyes on the black dot. The photo appears in color, until you move your eyes. <a href="http://www.johnsadowski.com/big_spanish_castle.html#">Link</a>
1896
-
1897
- <br clear="all">
1898
- <p class="posted">posted by
1899
- Mark Frauenfelder at
1900
- 08:38:10 AM
1901
- <a href="http://www.boingboing.net/2006/06/10/spanish_castle_optic.html">permalink
1902
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/10/spanish_castle_optic.html">blogs' comments</a>
1903
-
1904
- <br clear="all">
1905
- </p>
1906
- <p></p>
1907
-
1908
-
1909
- <h2>
1910
- Friday, June 9, 2006
1911
- </h2>
1912
-
1913
- <a name="027851">
1914
- </a>
1915
- <h3>
1916
- EFF podcast: How we kept caching legal
1917
- </h3>
1918
- Danny sez, "Line Noise is the new EFF podcast (<a href="http://www.eff.org/rss/linenoisemp3.xml">RSS</a> or <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=157893980">iTunes</a>); this week's episode is a chat with EFF's IP attorney Fred von Lohmann on the background to the Section 115 Reform Act (<a href="http://www.boingboing.net/2006/06/05/24h_to_stop_new_copy.html">previously on Boing Boing</a>. He explains how a good bill was used to sneak in bad precedents - including the insane idea that all temporarily cached copies on the Net and in RAM should be copyrightable and subject to licensing.
1919
- <p>
1920
- "Good news on that, by the way -- thanks to your calls and comments, the committee have slowed the pace of this fast-track bill, and are <a href="http://www.eff.org/deeplinks/archives/004732.php"> now working to fix the bill's language</a>. Everyone from the Copyright Office to <a href="http://www.publicknowledge.org/articles/52">Radio Shack and BellSouth</a> have now commented on the problems, so there's an excellent chance of a clear resolution."
1921
-
1922
- <a href="http://www.eff.org/deeplinks/archives/004733.php">Link</a>
1923
-
1924
- <br clear="all">
1925
- <p class="posted">posted by
1926
- Cory Doctorow at
1927
- 11:55:41 PM
1928
- <a href="http://www.boingboing.net/2006/06/09/eff_podcast_how_we_k.html">permalink
1929
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/09/eff_podcast_how_we_k.html">blogs' comments</a>
1930
-
1931
- <br clear="all">
1932
- </p>
1933
- <p></p>
1934
-
1935
-
1936
-
1937
- <a name="027849">
1938
- </a>
1939
- <h3>
1940
- Why do these people have characters on their foreheads?
1941
- </h3>
1942
- Nick of <a href="http://www.squareamerica.com/">Square America</a> invites you to solve a mystery.
1943
-
1944
- <blockquote><img src="http://www.boingboing.net/_blogger_5842_2554_1600_f2.jpg" height="169" width="169" border="0" align="left" hspace="4" vspace="4" alt=" Blogger 5842 2554 1600 F2" /> I got this lot of slides about three years ago and I've never been able to figure out just what is going on. There are about 50 slides in all- all dating from between 1959 and 1969 and all of young women. Some, like the ones here have letters written on their foreheads, others have press type with their names on it affixed to either their temples or foreheads. Were the slides taken by a dermatologist or plastic surgeon or were these young women part of some now forgotten experiment.<br clear="all"></blockquote> <a href="http://swapatorium.blogspot.com/2006/06/faces.html">Link</a>
1945
-
1946
-
1947
- <br clear="all">
1948
- <p class="posted">posted by
1949
- Mark Frauenfelder at
1950
- 03:28:19 PM
1951
- <a href="http://www.boingboing.net/2006/06/09/why_do_these_people_.html">permalink
1952
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/09/why_do_these_people_.html">blogs' comments</a>
1953
-
1954
- <br clear="all">
1955
- </p>
1956
- <p></p>
1957
-
1958
-
1959
-
1960
- <a name="027848">
1961
- </a>
1962
- <h3>
1963
- Trailer for 2007 Disney Pixar movie: Ratatouille
1964
- </h3>
1965
-
1966
- <img src="http://www.boingboing.net/Picture%202-9.jpg" height="169" width="241" border="0" align="left" hspace="4" vspace="4" alt="Picture 2-9" />
1967
- Apple has the trailer for the next Disney Pixar movie coming out in 2007. It's called Ratatouille and it appears to be about a Parisian rat (without a phony French accent) who, unlike other rats in his family, insists on eating only the finest food served in Paris' best restaurants.
1968
-
1969
- <P>The quality of the video is really nice. Don't you wish YouTube looked half as nice as this? <a href="http://www.apple.com/trailers/disney/ratatouille/">Link</a>
1970
-
1971
- <br clear="all">
1972
- <p class="posted">posted by
1973
- Mark Frauenfelder at
1974
- 02:48:18 PM
1975
- <a href="http://www.boingboing.net/2006/06/09/trailer_for_2007_dis.html">permalink
1976
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/09/trailer_for_2007_dis.html">blogs' comments</a>
1977
-
1978
- <br clear="all">
1979
- </p>
1980
- <p></p>
1981
-
1982
-
1983
-
1984
- <a name="027847">
1985
- </a>
1986
- <h3>
1987
- More great old illustrations from BilbiOdyssey
1988
- </h3>
1989
-
1990
- <img src="http://www.boingboing.net/_blogger_1717_1584_1600_Begnino-Bossi-1771-petitot.jpg" height="169" width="125" border="0" align="left" hspace="4" vspace="4" alt=" Blogger 1717 1584 1600 Begnino-Bossi-1771-Petitot" />
1991
- <img src="http://www.boingboing.net/_blogger_1717_1584_1600_Heemskerck-.-Lyons.jpg" height="169" width="222" border="0" align="left" hspace="4" vspace="4" alt=" Blogger 1717 1584 1600 Heemskerck-.-Lyons" /><br clear="all">
1992
-
1993
- Why are so many drawings from earlier centuries so deliciously weird? Here are a couple I came across on one of my favorite blogs, BibliOdyssey. <a href="http://bibliodyssey.blogspot.com/2006/06/in-clearing.html">Link</a>
1994
-
1995
- <br clear="all">
1996
- <p class="posted">posted by
1997
- Mark Frauenfelder at
1998
- 02:28:39 PM
1999
- <a href="http://www.boingboing.net/2006/06/09/more_great_old_illus.html">permalink
2000
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/09/more_great_old_illus.html">blogs' comments</a>
2001
-
2002
- <br clear="all">
2003
- </p>
2004
- <p></p>
2005
-
2006
-
2007
-
2008
- <a name="027846">
2009
- </a>
2010
- <h3>
2011
- Play the World Cup with a stream of urine
2012
- </h3>
2013
-
2014
- <img src="http://www.boingboing.net/200606091411.jpg" height="169" width="157" border="0" align="left" hspace="4" vspace="4" alt="200606091411" />Funny photo of a urinal with a small ball and goal in it. <a href="http://blog.wfmu.org/freeform/2006/06/worlde_cup_the_.html">Link</a>
2015
-
2016
- <br clear="all">
2017
- <p class="posted">posted by
2018
- Mark Frauenfelder at
2019
- 02:12:35 PM
2020
- <a href="http://www.boingboing.net/2006/06/09/play_the_world_cup_w.html">permalink
2021
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/09/play_the_world_cup_w.html">blogs' comments</a>
2022
-
2023
- <br clear="all">
2024
- </p>
2025
- <p></p>
2026
-
2027
-
2028
-
2029
- <a name="027845">
2030
- </a>
2031
- <h3>
2032
- Wired News tells how to watch FIFA World Cup for free online
2033
- </h3>
2034
- <img src="http://www.boingboing.net/WORLDCUP-1.jpg" alt="Worldcup-1" align="left" border="0" height="169" hspace="4" vspace="4" width="137"> A while back, law firm <a href="http://www.boingboing.net/2005/06/17/executive_vs_secreta.html">Baker &#38; McKenzie</a> sent Boing Boing a snippy <a href="http://www.google.com/url?sa=t&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fwww.boingboing.net%2F2006%2F06%2F03%2Fhideous_company_send.html&amp;ei=Zd6JRKz0HrTOYc_7nbUI&amp;sig2=SsNxlSSgw1s3SiERH3bbkg">letter</a> warning us not to do something we wouldn't do even if they begged us -- broadcast live streams of the FIFA World Cup.
2035
-
2036
- <P>I wonder if <a href="http://www.gtla.org/public/cases/baker.html">Baker &#38; McKenzie</a> will send Wired News a letter complaining that Wired News is facilitating piracy for explaining a variety of ways in which FIFA World Cup fans can enjoy live video streams of the tournament on their computers without paying the rightsholder, <a href="http://www.boingboing.net/2006/06/07/world_cup_rightshold.html">Infront Sports &#38; Media</a>?
2037
-
2038
- <a href="http://www.wired.com/news/technology/internet/0,71112-0.html?tw=wn_index_4">Link</a> <p><em>(Image courtesy groovehouse of <a href="http://www.groovehouse.org/wordpress/">The Grooveblog</a>.)</em>
2039
-
2040
- <br clear="all">
2041
- <p class="posted">posted by
2042
- Mark Frauenfelder at
2043
- 02:01:40 PM
2044
- <a href="http://www.boingboing.net/2006/06/09/wired_news_tells_how.html">permalink
2045
- </a> | <a href="http://www.technorati.com/cosmos/search.html?rank=&sub=mtcosmos&url=http://www.boingboing.net/2006/06/09/wired_news_tells_how.html">blogs' comments</a>
2046
-
2047
- <br clear="all">
2048
- </p>
2049
- <p></p>
2050
-
2051
-
2052
-
2053
- <a href="http://boingboing.net/archive.html">Archives</a>
2054
- </div>
2055
-
2056
- </td>
2057
- <td width="125" valign="top">
2058
- <div id="sidebar-b">
2059
-
2060
- Sponsored by:
2061
-
2062
-
2063
-
2064
- <p>
2065
- <script language='JavaScript' type='text/javascript'>
2066
- <!--
2067
- if (!document.phpAds_used) document.phpAds_used = ',';
2068
- phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11);
2069
-
2070
- document.write ("<" + "script language='JavaScript' type='text/javascript' src='");
2071
- document.write ("http://dynamic.fmpub.net/adserver/adjs.php?n=" + phpAds_random);
2072
- document.write ("&amp;what=zone:27&amp;block=1&amp;blockcampaign=1");
2073
- document.write ("&amp;exclude=" + document.phpAds_used);
2074
- if (document.referrer)
2075
- document.write ("&amp;referer=" + escape(document.referrer));
2076
- document.write ("'><" + "/script>");
2077
- //-->
2078
- </script><noscript><a href='http://dynamic.fmpub.net/adserver/adclick.php?n=aa20ac48' target='_blank'><img src='http://dynamic.fmpub.net/adserver/adview.php?what=zone:27&amp;n=aa20ac48' border='0' alt=''></a></noscript>
2079
-
2080
- </p>
2081
- <p>
2082
- <script language='JavaScript' type='text/javascript'>
2083
- <!--
2084
- if (!document.phpAds_used) document.phpAds_used = ',';
2085
- phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11);
2086
-
2087
- document.write ("<" + "script language='JavaScript' type='text/javascript' src='");
2088
- document.write ("http://dynamic.fmpub.net/adserver/adjs.php?n=" + phpAds_random);
2089
- document.write ("&amp;what=zone:27&amp;block=1&amp;blockcampaign=1");
2090
- document.write ("&amp;exclude=" + document.phpAds_used);
2091
- if (document.referrer)
2092
- document.write ("&amp;referer=" + escape(document.referrer));
2093
- document.write ("'><" + "/script>");
2094
- //-->
2095
- </script><noscript><a href='http://dynamic.fmpub.net/adserver/adclick.php?n=af1a8b85' target='_blank'><img src='http://dynamic.fmpub.net/adserver/adview.php?what=zone:27&amp;n=af1a8b85' border='0' alt=''></a></noscript>
2096
-
2097
- <p>
2098
- <script language='JavaScript' type='text/javascript'>
2099
- <!--
2100
- if (!document.phpAds_used) document.phpAds_used = ',';
2101
- phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11);
2102
-
2103
- document.write ("<" + "script language='JavaScript' type='text/javascript' src='");
2104
- document.write ("http://dynamic.fmpub.net/adserver/adjs.php?n=" + phpAds_random);
2105
- document.write ("&amp;what=zone:27&amp;block=1&amp;blockcampaign=1");
2106
- document.write ("&amp;exclude=" + document.phpAds_used);
2107
- if (document.referrer)
2108
- document.write ("&amp;referer=" + escape(document.referrer));
2109
- document.write ("'><" + "/script>");
2110
- //-->
2111
- </script><noscript><a href='http://dynamic.fmpub.net/adserver/adclick.php?n=a8dff043' target='_blank'><img src='http://dynamic.fmpub.net/adserver/adview.php?what=zone:27&amp;n=a8dff043' border='0' alt=''></a></noscript>
2112
-
2113
- </p>
2114
- <p>
2115
-
2116
- <script language='JavaScript' type='text/javascript'>
2117
- <!--
2118
- if (!document.phpAds_used) document.phpAds_used = ',';
2119
- phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11);
2120
-
2121
- document.write ("<" + "script language='JavaScript' type='text/javascript' src='");
2122
- document.write ("http://dynamic.fmpub.net/adserver/adjs.php?n=" + phpAds_random);
2123
- document.write ("&amp;what=zone:27&amp;block=1&amp;blockcampaign=1");
2124
- document.write ("&amp;exclude=" + document.phpAds_used);
2125
- if (document.referrer)
2126
- document.write ("&amp;referer=" + escape(document.referrer));
2127
- document.write ("'><" + "/script>");
2128
- //-->
2129
- </script><noscript><a href='http://dynamic.fmpub.net/adserver/adclick.php?n=a27568c5' target='_blank'><img src='http://dynamic.fmpub.net/adserver/adview.php?what=zone:27&amp;n=a27568c5' border='0' alt=''></a></noscript>
2130
-
2131
-
2132
- </p>
2133
-
2134
- <p><script type="text/javascript">
2135
- //1) Call function randomorder(arrayname, space_between_content)
2136
- //randomorder(content, '<br><br>')
2137
- </script>
2138
- </p>
2139
-
2140
- <script language='JavaScript' type='text/javascript'>
2141
- <!--
2142
- if (!document.phpAds_used) document.phpAds_used = ',';
2143
- phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11);
2144
-
2145
- document.write ("<" + "script language='JavaScript' type='text/javascript' src='");
2146
- document.write ("http://dynamic.fmpub.net/adserver/adjs.php?n=" + phpAds_random);
2147
- document.write ("&amp;what=zone:107&amp;block=1&amp;blockcampaign=1");
2148
- document.write ("&amp;exclude=" + document.phpAds_used);
2149
- if (document.referrer)
2150
- document.write ("&amp;referer=" + escape(document.referrer));
2151
- document.write ("'><" + "/script>");
2152
- //-->
2153
- </script><noscript><a href='http://dynamic.fmpub.net/adserver/adclick.php?n=af2529c2' target='_blank'><img src='http://dynamic.fmpub.net/adserver/adview.php?what=zone:107&n=af2529c2' border='0' alt=''></a></noscript>
2154
-
2155
- <P>
2156
-
2157
-
2158
-
2159
- <a href="http://advertisers.federatedmedia.net/plan.php?site=boingboing" title="FM"><img src="http://boingboing.net/images/fm_badge.jpg" width="125" height="95" alt="Advertise here with FM" style="border:0"/></a>
2160
-
2161
- <P>
2162
-
2163
-
2164
- <!-- Begin: AdBrite -->
2165
- <style type="text/css">
2166
- .adHeadline {font: bold 8pt Verdana; text-decoration: underline; color: blue;}
2167
- .adText {font: normal 8pt Verdana; text-decoration: none; color: black;}
2168
- </style>
2169
- <script type="text/javascript" src="http://3.adbrite.com/mb/text_group.php?sid=20153&amp;br=1"></script>
2170
- <p />
2171
- <div><a class="adHeadline" target="_top" href="http://www.adbrite.com/mb/commerce/purchase_form.php?opid=20153&amp;afsid=1">Your Text Ad Here</a></div>
2172
- <!-- End: AdBrite -->
2173
-
2174
-
2175
-
2176
-
2177
-
2178
-
2179
-
2180
- <p><a href="http://add.my.yahoo.com/rss?url=http://feeds.feedburner.com/boingboing/iBag" title="Boing Boing"><img src="http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif" alt="" style="border:0"/></a>
2181
-
2182
- <p>
2183
-
2184
- <a href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http://feeds.feedburner.com/boingboing/iBag" title="Boing Boing"><img src="http://www.newsgator.com/images/ngsub1.gif" alt="Subscribe in NewsGator Online" style="border:0"/></a>
2185
-
2186
- <p>
2187
-
2188
- <a href="http://www.rojo.com/add-subscription?resource=http://feeds.feedburner.com/boingboing/iBag" title="Boing Boing"><img src="http://www.rojo.com/skins/static/images/add-to-rojo.gif" alt="Subscribe in Rojo" style="border:0"/></a>
2189
-
2190
- <p>
2191
-
2192
- <a href="http://www.newsburst.com/Source/?add=http://feeds.feedburner.com/boingboing/iBag"><img src="http://i.i.com.com/cnwk.1d/i/newsbursts/btn/newsburst3.gif" width="96" height="20" align="middle" style="border:0" alt="Add Boing Boing to Newsburst from CNET News.com" /></a>
2193
-
2194
- <p>
2195
-
2196
- <a href="http://fusion.google.com/add?feedurl=http://feeds.feedburner.com/boingboing/iBag"><img src="http://buttons.googlesyndication.com/fusion/add.gif" width="104" height="17" style="border:0" alt="Add to Google"/></a>
2197
-
2198
- <p>
2199
-
2200
- <a href="http://client.pluck.com/pluckit/prompt.aspx?GCID=C12286x053&a=http://feeds.feedburner.com/boingboing/iBag&t=Boing%20Boing"><img src="http://www.pluck.com/images/pluck/pluspluck.png" alt="Add to Pluck" style="border:0"/></a>
2201
-
2202
- <p>
2203
-
2204
- <a href="http://feeds.my.aol.com/add.jsp?url=http://feeds.feedburner.com/boingboing/iBag"><img src="http://myfeeds.aolcdn.com/vis/myaol_cta1.gif" alt="Add to My AOL" style="border:0"/></a>
2205
-
2206
- <p>
2207
-
2208
- <a href="http://my.feedlounge.com/external/subscribe?url=http://feeds.feedburner.com/boingboing/iBag"><img src="http://static.feedlounge.com/buttons/subscribe_0.gif" alt="Subscribe in FeedLounge" title="Subscribe in FeedLounge" border="0" /></a>
2209
-
2210
- <p>
2211
-
2212
- <a href="http://www.bloglines.com/sub/http://feeds.feedburner.com/boingboing/iBag" title="Boing Boing" type="application/rss+xml"><img src="http://www.bloglines.com/images/sub_modern1.gif" alt="Subscribe in Bloglines" style="border:0"/></a>
2213
-
2214
- <p>
2215
-
2216
- <a href="http://www.pageflakes.com/subscribe.aspx?url=http://feeds.feedburner.com/boingboing/iBag" title="Boing Boing" type="application/rss+xml"><img src="http://www.boingboing.net/images/pageflakes.gif" alt="Subscribe in Pageflakes" height="17" width="81" style="border:0"/></a>
2217
-
2218
- <P>
2219
-
2220
- <a href="http://www.bitty.com/manual/?contenttype=rssfeed&contentvalue=http://feeds.feedburner.com/boingboing/iBag"><img src="http://www.boingboing.net/images/bittychicklet_91x17.gif" alt="Bitty Browser" height="17" width="91" style="border:0"/></a>
2221
-
2222
-
2223
-
2224
-
2225
-
2226
- <form style="border:1px solid #ccc;padding:3px;text-align:center;" action="http://www.feedburner.com/fb/a/emailverify" method="post" target="popupwindow" onsubmit="window.open('http://www.feedburner.com', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"><p>Get BB by email:</p><p><input type="text" style="width:125px" name="email"/></p><input type="hidden" value="http://feeds.feedburner.com/~e?ffid=18399" name="url"/><input type="hidden" value="Boing Boing" name="title"/><input type="submit" value="Subscribe" /></form>
2227
-
2228
-
2229
-
2230
-
2231
- </div>
2232
- </td>
2233
- </tr>
2234
- </table><!--
2235
- <rdf:RDF xmlns="http://web.resource.org/cc/"
2236
- xmlns:dc="http://purl.org/dc/elements/1.1/"
2237
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
2238
- <Work rdf:about="http://boingboing.net">
2239
- <dc:title>Boing Boing: A Directory of Wonderful Things</dc:title>
2240
- <dc:date>2000-12-1</dc:date>
2241
- <dc:description>A blog maintained by Mark Frauenfelder, Cory Doctorow, David Pescovitz and Xeni Jardin</dc:description>
2242
- <dc:creator><Agent>
2243
- <dc:title>Mark Frauenfelder, Cory Doctorow, David Pescovitz and Xeni Jardin</dc:title>
2244
- </Agent></dc:creator>
2245
- <dc:rights><Agent>
2246
- <dc:title>Mark Frauenfelder, Cory Doctorow, David Pescovitz and Xeni Jardin</dc:title>
2247
- </Agent></dc:rights>
2248
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/Text" />
2249
- <license rdf:resource="http://creativecommons.org/licenses/by-nc/1.0" />
2250
- </Work>
2251
-
2252
- <License rdf:about="http://creativecommons.org/licenses/by-nc/1.0">
2253
- <requires rdf:resource="http://web.resource.org/cc/Attribution" />
2254
- <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
2255
- <permits rdf:resource="http://web.resource.org/cc/Reproduction" />
2256
- <permits rdf:resource="http://web.resource.org/cc/Distribution" />
2257
- <prohibits rdf:resource="http://web.resource.org/cc/CommercialUse" />
2258
- <requires rdf:resource="http://web.resource.org/cc/Notice" />
2259
- </License>
2260
-
2261
- </rdf:RDF>
2262
-
2263
- -->
2264
- </div>
2265
- </body>
2266
- </html>