<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>randomwalks/dj</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/" />
    <link rel="self" type="application/atom+xml" href="http://dj.riceweevil.com/atom.xml" />
   <id>tag:dj.riceweevil.com,2012://13</id>
    <link rel="service.post" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13" title="randomwalks/dj" />
    <updated>2012-02-06T16:15:04Z</updated>
    <subtitle>my reblog, my archives</subtitle>
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type 1.5</generator>
 
<entry>
    <title>Consistency is a Virtue</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/02/05-week/#067573" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67573" title="Consistency is a Virtue" />
    <id>tag:dj.riceweevil.com,2012://13.67573</id>
    
    <published>2012-02-06T10:44:47Z</published>
    <updated>2012-02-06T16:15:04Z</updated>
    
    <summary>
It&apos;s impressive to see a writer&apos;s work evolve and improve over time. One year ago: I have nothing nonobvious to say about the Super Bowl. But sweet Jesus I miss baseball.— Scott Klein (@kleinmatic) February 7, 2011 Yesterday: I miss...
<br />

<a href="http://hello.typepad.com/hello/2012/02/consistency-is-a-virtue.html">Originally </a>
 
 posted by David Jacobs 
 from <a href="">hello typepad</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[
<div xmlns="http://www.w3.org/1999/xhtml"><p>It's impressive to see a writer's work evolve and improve over time.</p>

<p>One year ago:</p>

<blockquote class="twitter-tweet"><p>I have nothing nonobvious to say about the Super Bowl. But sweet Jesus I miss baseball.</p>&mdash; Scott Klein (@kleinmatic) <a href="https://twitter.com/kleinmatic/status/34437558058356736" data-datetime="2011-02-07T02:25:28+00:00">February 7, 2011</a></blockquote>
<script src="//platform.twitter.com/widgets.js" charset="utf-8"></script>

<p>Yesterday:</p>

<blockquote class="twitter-tweet"><p>I miss baseball.</p>&mdash; Scott Klein (@kleinmatic) <a href="https://twitter.com/kleinmatic/status/166329096912125952" data-datetime="2012-02-06T01:15:21+00:00">February 6, 2012</a></blockquote>
<script src="//platform.twitter.com/widgets.js" charset="utf-8"></script></div>
]]>
        
<br />

<a href="http://hello.typepad.com/hello/2012/02/consistency-is-a-virtue.html">Originally </a>

 posted by David Jacobs  from <a href="">hello typepad</a>

    </content>
</entry>
<entry>
    <title>A phased approach to sandboxing</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067570" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67570" title="A phased approach to sandboxing" />
    <id>tag:dj.riceweevil.com,2012://13.67570</id>
    
    <published>2012-02-04T23:04:07Z</published>
    <updated>2012-02-05T21:15:39Z</updated>
    
    <summary>
With the March 1st start date approaching when sandboxing becomes a requirement for submissions to the Mac App Store, I’ve been considering my options. I have 2 products, one of which was easy to sandbox and the other, well, not...
<br />

<a href="http://www.cimgf.com/2012/02/04/a-phased-approach-to-sandboxing/">Originally </a>
 
 posted by Fraser Hess 
 from <a href="http://www.cimgf.com">Cocoa Is My Girlfriend</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="appstore" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p>With the March 1st start date approaching when sandboxing becomes a requirement for submissions to the Mac App Store, I’ve been considering my options. I have 2 products, one of which was easy to sandbox and the other, well, not so much. When I say “easy to sandbox”, I mean it fit neatly in the “permanent” entitlements and doesn’t need any files migrated into the sandbox, besides it’s preferences, which is done automatically for you.</p>

<p>Now, my sandbox technical challenges are not DOA. Some apps and classes of app are in effect outlawed by the sandbox rules. I feel for the developers of those apps, but fortunately for me, I’m not facing that.</p>

<p>My challenges fall more the “a few features may need rethinking and rewriting” category. At first I expected to have a long hiatus between updates while I worked on these features. But instead, I’m easing this transition by implementing sandboxing in 2 phases.</p>

<ol>
<li>Add sandboxing to the MAS build of my app. Use temporary entitlements where necessary to maintain functionality. Make minor adjustments to run inside the sandbox. Submit an update to test the approval process.</li>
<li>Begin the rethinking and rewriting of sandbox-incompliant features.</li>
</ol>

<p>Advantages I can see to this approach:</p>

<ul>
<li>I can continue to fix bugs, and issue updates beyond March 1st without a long hiatus.</li>
<li>Development on my app does not appear quiescent.</li>
<li>By submitting early, I’m not testing approval when trying to push out a needed bug fix.</li>
<li>By using temporary entitlements, I signal to Apple that these are needed and useful.</li>
<li>I buy more time to rethink and rewrite.</li>
</ul>

<p>Sandboxing is a great leap in application security but every app has a different story when it comes to the implementation details. I encourage <a href="http://bugreport.apple.com/">bug reporting</a>. It’s important to explain to the Apple engineers what we developers need. And I hope that some of the thoughts here help you navigate the challenges.</p>]]>
        
<br />

<a href="http://www.cimgf.com/2012/02/04/a-phased-approach-to-sandboxing/">Originally </a>

 posted by Fraser Hess  from <a href="http://www.cimgf.com">Cocoa Is My Girlfriend</a>

    </content>
</entry>
<entry>
    <title>E B White&amp;#39;s Voice</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067552" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67552" title="E B White&amp;#39;s Voice" />
    <id>tag:dj.riceweevil.com,2012://13.67552</id>
    
    <published>2012-02-04T22:25:38Z</published>
    <updated>2012-02-05T20:15:16Z</updated>
    
    <summary>
On Friday Jason Kottke recommended the audio version of Charlotte&apos;s Web read by EB White himself. We happened to have a long drive that night and took it for a listen. The audiobook is simply produced without fussy music or...
<br />

<a href="http://www.mexicanpictures.com/headingeast/2012/02/e-b-whites-voice.html">Originally </a>
 
 posted by (author unknown) 
 from <a href="http://www.mexicanpictures.com/headingeast/">Heading East</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="kids" />
            <category term="on" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p>On Friday Jason Kottke recommended the <a href="javascript:void(0);">audio version of Charlotte's Web</a> read by EB White himself. We happened to have a long drive that night and took it for a listen. The audiobook is simply produced without fussy music or sound effects, it's just White reading and it's wonderful.</p>

<p>To get a sense of White's voice, you can check out this Academy award nominated short The Family That Dwelt Apart; it's an adaptation of one of his New Yorker short stories and is also self-narrated.</p>

<p></p>

<p>And since we're on a White kick, fans might also enjoy this 1970's era form letter to his young readers. </p>

<blockquote>Dear Reader:

<p>I receive many letters from children and can't answer them all -- there wouldn't be time enough in a day. That is why I am sending you this printed reply to your letter. I'll try to answer some of the questions that are commonly asked.</p>

<p>Where did I get the idea for Stuart Little and for Charlotte's Web? Well, many years ago I went to bed one night in a railway sleeping car, and during the night I dreamed about a tiny boy who acted rather like a mouse. That's how the story of Stuart Little got started.</p>

<p>As for Charlotte's Web, I like animals and my barn is a very pleasant place to be, at all hours. One day when I was on my way to feed the pig, I began feeling sorry for the pig because, like most pigs, he was doomed to die. This made me sad. So I started thinking of ways to save a pig's life. I had been watching a big grey spider at her work and was impressed by how clever she was at weaving. Gradually I worked the spider into the story that you know, a story of friendship and salvation on a farm. Three years after I started writing it, it was published. (I am not a fast worker, as you can see.)</p>

<p>Sometimes I'm asked how old I was when I started to write, and what made me want to write. I started early -- as soon as I could spell. In fact, I can't remember any time in my life when I wasn't busy writing. I don't know what caused me to do it, or why I enjoyed it, but I think children often find pleasure and satisfaction is trying to set their thoughts down on paper, either in words or in pictures. I was no good at drawing, so I used words instead. As I grew older, I found that writing can be a way of earning a living.</p>

<p>Some of my readers want me to visit their school. Some want me to send a picture, or an autograph, or a book. And some ask questions about my family and my animals and my pets. Much as I'd like to, I can't go visiting. I can't send books, either -- you can find them in a bookstore or a library. Many children assume that a writer owns (or even makes) his own books. This is not true -- books are made by the publisher. If a writer wants a copy, he must buy it. That's why I can't send books. And I do not send autographs -- I leave that to the movie stars. I live most of the year in the country, in New England. From our windows we can look out at the sea and the mountains. I live near my married son and three grandchildren.</p>

<p>Are my stories true, you ask? No, they are imaginary tales, containing fantastic characters and events. In real life, a family doesn't have a child who looks like a mouse; in real life, a spider doesn't spin words in her web. In real life, a swan doesn't blow a trumpet. But real life is only one kind of life -- there is also the life of the imagination. And although my stories are imaginary, I like to think that there is some truth in them, too -- truth about the way people and animals feel and think and act.</p>

<p>Yours sincerely,</p>

<p>E.B. White<br>
</p></blockquote>
        
        <b>Filed under:</b> <a href="http://www.mexicanpictures.com/headingeast/on-kids/#002760">on kids</a><br>

            <b>Tags:</b> <a href="http://www.mexicanpictures.com/headingeast/fastsearch?tag=charlotte&#39;s%20web">charlotte's web</a>, <a href="http://www.mexicanpictures.com/headingeast/fastsearch?tag=children&#39;s%20books">children's books</a>, <a href="http://www.mexicanpictures.com/headingeast/fastsearch?tag=eb%20white">eb white</a>, <a href="http://www.mexicanpictures.com/headingeast/fastsearch?tag=garth%20williams">garth williams</a>, <a href="http://www.mexicanpictures.com/headingeast/fastsearch?tag=letters">letters</a>
        			
        			


<br><br> Sponsor:<br>
 <a href="http://www.twobluecars.com"><b>TWO BLUE CARS:</b> Robots, Garbage Trucks &amp; Diggers. Shirts boys love.</a>]]>
        
<br />

<a href="http://www.mexicanpictures.com/headingeast/2012/02/e-b-whites-voice.html">Originally </a>

 posted by (author unknown)  from <a href="http://www.mexicanpictures.com/headingeast/">Heading East</a>

    </content>
</entry>
<entry>
    <title>Christoff Niemann, via Pictoplasma Berlin</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067562" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67562" title="Christoff Niemann, via Pictoplasma Berlin" />
    <id>tag:dj.riceweevil.com,2012://13.67562</id>
    
    <published>2012-02-04T22:07:41Z</published>
    <updated>2012-02-05T21:15:23Z</updated>
    
    <summary>
Christoff Niemann, via Pictoplasma Berlin
<br />

<a href="http://blog.drawn.ca/post/17069182659">Originally </a>
 
 posted by mattforsythe 
 from <a href="http://blog.drawn.ca/">Drawn</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<img src="http://27.media.tumblr.com/tumblr_lywgovbRux1qclyefo1_500.jpg"><br><br><p><a href="http://www.christophniemann.com/">Christoff Niemann</a>, via <a href="http://berlin.pictoplasma.com/files/2012/01/conference_lectures_niemann.jpg">Pictoplasma Berlin</a></p><img src="http://feeds.feedburner.com/~r/drawn/~4/6Klny3y6nW0" height="1" width="1">]]>
        
<br />

<a href="http://blog.drawn.ca/post/17069182659">Originally </a>

 posted by mattforsythe  from <a href="http://blog.drawn.ca/">Drawn</a>

    </content>
</entry>
<entry>
    <title>I Never Finish Anyth</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067546" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67546" title="I Never Finish Anyth" />
    <id>tag:dj.riceweevil.com,2012://13.67546</id>
    
    <published>2012-02-04T15:08:52Z</published>
    <updated>2012-02-05T00:15:07Z</updated>
    
    <summary>
 A great new print by Brad Rose, available for order via email only at this time. This perfectly sums up how I...
<br />

<a href="http://feedproxy.google.com/~r/colossal/~3/lM9KuMlfyeU/">Originally </a>
 
 posted by Christopher Jobson 
 from <a href="http://www.thisiscolossal.com">Colossal</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="Uncategorizeddesignposters" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><img src="http://www.thisiscolossal.com/wp-content/uploads/2012/02/tumblr_lyq8y8tEe71rodcvgo1_1280-600x782.jpg" alt="I Never Finish Anyth posters design " title="I Never Finish Anyth" width="600" height="782"></p>
<p>A great new print by <a href="http://typeprocesslanguage.tumblr.com/post/16872097631/i-never-finish-anyth-prints-avaliable-for-sale">Brad Rose</a>, available for order via <a href="http://typeprocesslanguage.tumblr.com/post/16872097631/i-never-finish-anyth-prints-avaliable-for-sale">email only</a> at this time. This perfectly sums up how I</p>
<img src="http://feeds.feedburner.com/~r/colossal/~4/lM9KuMlfyeU" height="1" width="1">]]>
        
<br />

<a href="http://feedproxy.google.com/~r/colossal/~3/lM9KuMlfyeU/">Originally </a>

 posted by Christopher Jobson  from <a href="http://www.thisiscolossal.com">Colossal</a>

    </content>
</entry>
<entry>
    <title>recoveryisbeautiful:

I love this. People don’t acknowledge...</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067561" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67561" title="recoveryisbeautiful:

I love this. People don’t acknowledge..." />
    <id>tag:dj.riceweevil.com,2012://13.67561</id>
    
    <published>2012-02-04T13:22:05Z</published>
    <updated>2012-02-05T21:15:21Z</updated>
    
    <summary>
recoveryisbeautiful:

I love this. People don’t acknowledge enough that guys also struggle with body image and the way they look too. There’s a lot of pressure that guys are under as far as how they look but for the focus always ends up on females.
<br />

<a href="http://latherrinserepeat.org/post/17040640365">Originally </a>
 
 posted by (author unknown) 
 from <a href="http://latherrinserepeat.org/">lather rinse repeat</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<img src="http://28.media.tumblr.com/tumblr_lqe1sd2GJy1r095yro1_500.jpg"><br><br><p><a href="http://recoveryisbeautiful.tumblr.com/post/12639093648/i-love-this-people-dont-acknowledge-enough-that">recoveryisbeautiful</a>:</p>

<blockquote><p>I love this. People don’t acknowledge enough that guys also struggle with body image and the way they look too. There’s a lot of pressure that guys are under as far as how they look but for the focus always ends up on females.</p></blockquote>]]>
        
<br />

<a href="http://latherrinserepeat.org/post/17040640365">Originally </a>

 posted by (author unknown)  from <a href="http://latherrinserepeat.org/">lather rinse repeat</a>

    </content>
</entry>
<entry>
    <title>XFS: the filesystem of the future?</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067569" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67569" title="XFS: the filesystem of the future?" />
    <id>tag:dj.riceweevil.com,2012://13.67569</id>
    
    <published>2012-02-04T12:12:05Z</published>
    <updated>2012-02-05T21:15:37Z</updated>
    
    <summary>
Jonathan Corbet summarizing a presentation about the present and future of XFS by Dave Chinner:

XFS is often seen as the filesystem for people with massive amounts of data. It serves that role well, Dave said, and it has traditionally performed well for a lot of workloads. Where things have tended to fall down is in the  writing of metadata; support for workloads that generate a lot of metadata writes has been a longstanding weak point for the filesystem. In short, metadata writes were slow, and did not really scale past even a single CPU.

After the break the video of Dave Chinner’s presentation, “XFS: Recent and Future Adventures in Filesystem scalability”.






Even if it’s very long, make sure you check the comment thread.
Jonathan Ellis 

Original title and link: XFS: the filesystem of the future? (NoSQL database©myNoSQL)
<br />

<a href="http://nosql.mypopescu.com/post/17036994009">Originally </a>
 
 posted by (author unknown) 
 from <a href="http://nosql.mypopescu.com/">myNoSQL</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="XFSfile" />
            <category term="system" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p>Jonathan Corbet <a href="http://lwn.net/Articles/476263/" rel="external nofollow">summarizing</a> a presentation about the present and future of XFS by Dave Chinner:</p>
<blockquote>
<p>XFS is often seen as the filesystem for people with massive amounts of data. It serves that role well, Dave said, and it has traditionally performed well for a lot of workloads. Where things have tended to fall down is in the  writing of metadata; support for workloads that generate a lot of metadata writes has been a longstanding weak point for the filesystem. In short, metadata writes were slow, and did not really scale past even a single CPU.</p>
</blockquote>
<p>After the break the video of Dave Chinner’s presentation, “XFS: Recent and Future Adventures in Filesystem scalability”.</p>



<div>
<iframe width="520" height="390" src="http://www.youtube.com/embed/FegjLbCnoBw" frameborder="0"></iframe>
</div>
<p>Even if it’s very long, make sure you check the <a href="http://lwn.net/Articles/476263/" rel="external nofollow">comment thread</a>.</p>
<p><a href="http://twitter.com/spyced" rel="external nofollow">Jonathan Ellis</a> </p>

<p style="font-style:italic;font-size:0.9em">Original title and link: <a href="http://nosql.mypopescu.com/post/16926987171" rel="permalink" style="color:red">XFS: the filesystem of the future?</a> (<a href="http://nosql.mypopescu.com">NoSQL database</a>©myNoSQL)</p>]]>
        
<br />

<a href="http://nosql.mypopescu.com/post/17036994009">Originally </a>

 posted by (author unknown)  from <a href="http://nosql.mypopescu.com/">myNoSQL</a>

    </content>
</entry>
<entry>
    <title>Linefeed Reading List for January 2012</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067568" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67568" title="Linefeed Reading List for January 2012" />
    <id>tag:dj.riceweevil.com,2012://13.67568</id>
    
    <published>2012-02-04T02:36:40Z</published>
    <updated>2012-02-05T21:15:35Z</updated>
    
    <summary>
 The latest Linefeed Reading List video (for January 2012) brings together two fellow magaziners — Michael Bojkowski and Gym Class Magazine‘s Steven Gregor — for a dynamic dose of magazine reviewing fun. Linefeed Reading List — January 2012 [Linefeed]...
<br />

<a href="http://feedproxy.google.com/~r/themagaziner/~3/ChsT9ECGH3k/">Originally </a>
 
 posted by Jean Snow 
 from <a href="http://themagaziner.com">The Magaziner</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="BojkowskiSteven" />
            <category term="Class" />
            <category term="GregorVideo" />
            <category term="ListMichael" />
            <category term="MagazineLinefeedLinefeed" />
            <category term="NewsPrintGym" />
            <category term="Reading" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><iframe width="400" height="225" src="http://player.vimeo.com/video/35348646?title=0&amp;byline=0&amp;portrait=0" frameborder="0"></iframe></p>
<p>The <a href="http://linefeed.me/2945/linefeed-reading-list-january-2012/">latest</a> Linefeed Reading List video (for January 2012) brings together two fellow magaziners — Michael Bojkowski and <em><a href="http://gymclassmagazine.com/">Gym Class Magazine</a></em>‘s Steven Gregor — for a dynamic dose of magazine reviewing fun.</p>
<p><a href="http://linefeed.me/2945/linefeed-reading-list-january-2012/">Linefeed Reading List — January 2012</a> [Linefeed]</p>
<img src="http://feeds.feedburner.com/~r/themagaziner/~4/ChsT9ECGH3k" height="1" width="1">]]>
        
<br />

<a href="http://feedproxy.google.com/~r/themagaziner/~3/ChsT9ECGH3k/">Originally </a>

 posted by Jean Snow  from <a href="http://themagaziner.com">The Magaziner</a>

    </content>
</entry>
<entry>
    <title>Magaziner Intelligence 019</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067567" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67567" title="Magaziner Intelligence 019" />
    <id>tag:dj.riceweevil.com,2012://13.67567</id>
    
    <published>2012-02-04T02:03:00Z</published>
    <updated>2012-02-05T21:15:33Z</updated>
    
    <summary>
A round-up of magazine-related news bits and bobs. Andrew Losowsky is addicted to 24-hour magazine-making projects, and here’s a new one that you can help support through Kickstarter. Graphicly releases a new digital content delivery platform for magazine/comic creators. Via...
<br />

<a href="http://feedproxy.google.com/~r/themagaziner/~3/LPC7hpsvCmQ/">Originally </a>
 
 posted by Jean Snow 
 from <a href="http://themagaziner.com">The Magaziner</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="BooksComicsNewsPrintToolsAdobeAdobe" />
            <category term="DPSAndrew" />
            <category term="LeslieJNSQKickstarterMakingMONOCLE24Video" />
            <category term="LosowskyCollectGraphiclyJeremy" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p>A round-up of magazine-related news bits and bobs.</p>
<ul>
<li>Andrew Losowsky is addicted to 24-hour magazine-making projects, and here’s a <a href="http://www.kickstarter.com/projects/2079995982/twenty-four-magazine">new one</a> that you can help support through Kickstarter.</li>
<li>Graphicly <a href="http://distribute.graphicly.com/beta/">releases</a> a new digital content delivery platform for magazine/comic creators. Via @cormacaroni</li>
<li><em><a href="http://techcrunch.com/2012/01/25/jnsq-an-independent-style-mag-for-ipad-makes-its-public-debut/">JNSQ</a></em>, a new independent style magazine for iPad.</li>
<li>A <a href="http://techcrunch.com/2012/01/21/steal-this-book/">new strategy</a> on selling your books digitally.</li>
<li>The <a href="http://www.nytimes.com/2012/01/23/business/media/how-esquire-survived-publishings-dark-days.html?_r=1&amp;pagewanted=all?src=tp">story</a> of how <em>Esquire</em> rebounded.</li>
<li><a href="http://magculture.com/blog/?p=13053">Hear</a> Jeremy review magazines on Monocle24.</li>
<li>Jeremy’s <a href="http://magculture.com/blog/?p=13028">take</a> on the current state of Adobe DPS.</li>
<li>A beautiful <a href="http://fuckyeahmagazines.tumblr.com/post/16220962902">short video</a> by/about <em>Collect</em> magazine.</li>
</ul>
<img src="http://feeds.feedburner.com/~r/themagaziner/~4/LPC7hpsvCmQ" height="1" width="1">]]>
        
<br />

<a href="http://feedproxy.google.com/~r/themagaziner/~3/LPC7hpsvCmQ/">Originally </a>

 posted by Jean Snow  from <a href="http://themagaziner.com">The Magaziner</a>

    </content>
</entry>
<entry>
    <title>Port No. 4</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067566" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67566" title="Port No. 4" />
    <id>tag:dj.riceweevil.com,2012://13.67566</id>
    
    <published>2012-02-04T01:45:21Z</published>
    <updated>2012-02-05T21:15:31Z</updated>
    
    <summary>
The long-awaited fourth issue of Port on iPad was recently released, and considering that this is a Moore-Leslie joint, it’s surely one of the most anticipated releases for magaziners worldwide. I hope to review it on the site soon. Port...
<br />

<a href="http://feedproxy.google.com/~r/themagaziner/~3/MVAD_Cu5SkY/">Originally </a>
 
 posted by Jean Snow 
 from <a href="http://themagaziner.com">The Magaziner</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="LeslieNewsstandPortTim" />
            <category term="Moore" />
            <category term="New" />
            <category term="ReleasesAppiPadJeremy" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p>The long-awaited fourth issue of <em><a href="http://port-magazine.com/">Port</a></em> on iPad was recently released, and considering that this is a <a href="http://lettertojane.com/">Moore</a>-<a href="http://magculture.com/">Leslie</a> joint, it’s surely one of the most anticipated releases for magaziners worldwide. I hope to review it on the site soon.</p>
<p><em>Port</em> No. 4 is a $3 download from the <a href="http://itunes.apple.com/ph/app/port-magazine-04/id495569895?mt=8">iTunes App Store</a> — it remains an individual app release, which, to be honest, I would like to see change (adding Newsstand support as well).</p>
<img src="http://feeds.feedburner.com/~r/themagaziner/~4/MVAD_Cu5SkY" height="1" width="1">]]>
        
<br />

<a href="http://feedproxy.google.com/~r/themagaziner/~3/MVAD_Cu5SkY/">Originally </a>

 posted by Jean Snow  from <a href="http://themagaziner.com">The Magaziner</a>

    </content>
</entry>
<entry>
    <title>→ Here’s the Number That Matters in Facebook’s IPO Filing</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067560" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67560" title="→ Here’s the Number That Matters in Facebook’s IPO Filing" />
    <id>tag:dj.riceweevil.com,2012://13.67560</id>
    
    <published>2012-02-03T22:11:16Z</published>
    <updated>2012-02-05T21:15:19Z</updated>
    
    <summary>
Alexis Madrigal at The Atlantic:


  So, if tripling the size of the social network to 3,000,000,000 users is not going to be enough to justify its valuation with its current revenue per user, there is only one strategic direction for Facebook to go. It needs to generate more revenue per user. A lot more.


This is one of the problems with being so big that the world’s population is limiting your growth in a market that demands ever-increasing growth.

(Via Jim Ray.)


∞ Permalink
<br />

<a href="http://www.theatlantic.com/technology/print/12/02/heres-the-number-that-matters-in-facebooks-ipo-filing/252471/">Originally </a>
 
 posted by (author unknown) 
 from <a href="http://www.marco.org/">Marco.org</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p>Alexis Madrigal at The Atlantic:</p>

<blockquote>
  <p>So, if tripling the size of the social network to 3,000,000,000 users is not going to be enough to justify its valuation with its current revenue per user, there is only one strategic direction for Facebook to go. It needs to generate more revenue per user. A lot more.</p>
</blockquote>

<p>This is one of the problems with being so big that <em>the world’s population</em> is limiting your growth in a market that demands ever-increasing growth.</p>

<p>(Via <a href="http://jimray.tumblr.com/post/16946670191/so-if-tripling-the-size-of-the-social-network-to">Jim Ray</a>.)</p>


<p><a href="http://www.marco.org/2012/02/03/the-number-that-matters-in-facebooks-ipo-filing">∞ Permalink</a></p>]]>
        
<br />

<a href="http://www.theatlantic.com/technology/print/12/02/heres-the-number-that-matters-in-facebooks-ipo-filing/252471/">Originally </a>

 posted by (author unknown)  from <a href="http://www.marco.org/">Marco.org</a>

    </content>
</entry>
<entry>
    <title>Black Lodge Coffee Company T-Shirt: $10 This Weekend Only</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067559" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67559" title="Black Lodge Coffee Company T-Shirt: $10 This Weekend Only" />
    <id>tag:dj.riceweevil.com,2012://13.67559</id>
    
    <published>2012-02-03T16:10:52Z</published>
    <updated>2012-02-05T21:15:17Z</updated>
    
    <summary>
 Say what? Another Twin Peaks inspired, time-limited $10 t-shirt! When two separate events occur simultaneously pertaining to the same object of inquiry, we must always pay strict attention. The Black Lodge Coffee Company t-shirt is very similar to Coop’s Diner that I...
<br />

<a href="http://feedproxy.google.com/~r/WelcomeToTwinPeaks/~3/xXz36YrSnbY/">Originally </a>
 
 posted by Twin Pie 
 from <a href="http://welcometotwinpeaks.com">Welcome to Twin Peaks</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="Shopblack" />
            <category term="lodgecoffeet-shirtteeraiders" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><a href="http://bit.ly/yO3GaS"><img title="Black Lodge Coffee Company t-shirt" src="http://welcometotwinpeaks.com/wp-content/uploads/black-lodge-coffee-e1328302547947.png" alt="Black Lodge Coffee Company t-shirt" width="549" height="525"></a></p>
<p>Say what? Another Twin Peaks inspired, time-limited $10 t-shirt! When two separate events occur simultaneously pertaining to the same object of inquiry, we must always pay strict attention.</p>
<p>The Black Lodge Coffee Company t-shirt is very similar to <a title="Coop’s Diner T-Shirt, Today Only $10" href="http://welcometotwinpeaks.com/shop/coops-diner-t-shirt/">Coop’s Diner</a> that I posted earlier today, except that it replaces the diner setting with The Black Lodge. I love the giant and dwarf in the back, and you cannot go wrong with quotes like ”A damn fine cup of coffee” and “Black as midnight on a moonless night.” This red $10 t-shirt is available slightly longer though (until Sunday February 5th) and can also be printed on a hoodie.</p>
<p>Even though I already own both, I ordered me one of each again. Ten bucks is a price tag I cannot refuse.</p>
<p>Hat tip to <a href="http://twitter.com/renatothibes" rel="nofollow">@renatothibes</a>.</p>
<p><a href="http://bit.ly/yO3GaS"><img title="Black Lodge Coffee Company Teeraiders" src="http://welcometotwinpeaks.com/wp-content/uploads/black-lodge-coffee-teeraiders.png" alt="Black Lodge Coffee Company Teeraiders" width="550" height="350"></a></p>
<p>Visit <a href="http://welcometotwinpeaks.com">Welcome to Twin Peaks</a>.</p><img src="http://feeds.feedburner.com/~r/WelcomeToTwinPeaks/~4/xXz36YrSnbY" height="1" width="1">]]>
        
<br />

<a href="http://feedproxy.google.com/~r/WelcomeToTwinPeaks/~3/xXz36YrSnbY/">Originally </a>

 posted by Twin Pie  from <a href="http://welcometotwinpeaks.com">Welcome to Twin Peaks</a>

    </content>
</entry>
<entry>
    <title>A Practical Use for Macros in Perl</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067565" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67565" title="A Practical Use for Macros in Perl" />
    <id>tag:dj.riceweevil.com,2012://13.67565</id>
    
    <published>2012-02-03T15:46:43Z</published>
    <updated>2012-02-05T21:15:29Z</updated>
    
    <summary>
People occasionally ask for practical examples of macros when I lament the lack of macros in Perl 5. While I&apos;m usually pleased at the degree to which Perl lets me design code to get and stay out of my way,...
<br />

<a href="http://www.modernperlbooks.com/mt/2012/02/a-practical-use-for-macros-in-perl.html">Originally </a>
 
 posted by chromatic 
 from <a href="http://www.modernperlbooks.com/mt/">Modern Perl Books for modern Perl programming</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="languagedesignperl5refactoring" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p>People occasionally ask for practical examples of macros when I lament <a href="http://www.modernperlbooks.com/mt/2011/11/what-the-perl-5-compiler-modules-could-have-been.html">the
lack of macros in Perl 5</a>. While I'm usually pleased at the degree to which
Perl lets me design code to get and stay out of my way, sometimes its
abstractions just aren't quite <em>enough</em> enough to remove all of the
duplication available.</p>

<p>(I've been refactoring one of our business projects in preparation for another round of deployment in the next couple of weeks. We could launch without these improvements, but administrative work took almost two weeks longer than the afternoon I'd planned for it, so I decided it was worth my time to <a href="http://www.modernperlbooks.com/mt/2011/11/on-technical-friction.html">reduce technical friction</a> so that further improvements are easier. More users means more work, so why not accelerate that work while I have the chance? I have another longer technical post to write to praise the use of Moose roles for a plugin system and to show off the stupidly-great task launcher, but that's for later.)</p>

<p>I found myself writing two code couplets that were similar enough they
triggered my "Hey, refactor away this duplication!" alert. It's extra
sensitive, because I <em>know</em> I'll have a few more couplets like this in
the very near future:</p>

<pre><code>while (my $stock = $stock_rs-&gt;next)
{
    my $pe_update = $self-&gt;analyze_pe( $stock );
    $stock_txn-&gt;add( $pe_update ) if $pe_update;

    my $cash_yield_update = $self-&gt;analyze_cash_yield( $stock );
    $analysis_txn-&gt;add( $cash_yield_update ) if $cash_yield_update;
}</code></pre>

<p>The <code>*_txn</code> variables contain objects representing deferred and
scoped SQL updates. I'll talk about that at <a href="http://act.yapcna.org/2012/">YAPC::NA 2012</a> in <a href="http://act.yapcna.org/2012/talk/50">When Wrong is Better</a>.</p>

<p>The general pattern is this: for every stock in the appropriate resultset,
call a method in this plugin. The method will return nothing if it fails (or
has nothing to do) or it will return data to be added to the appropriate
transaction. I have at least two types of transactions available here at the
moment, and may have more later: one transaction updates stock data and the
other updates analysis data.</p>

<p>I have several options. I could rework the data model so that this stage
always only updates one transaction, in which the loop body could instead look
like:</p>

<pre><code>{
    for my $method (qw( analyze_pe analyze_cash_yield ))
    {
        next unless my $result = $self-&gt;$method( $stock );
        $txn-&gt;add( $result );
    }
}</code></pre>

<p>This technique of hoisting the variants into an ad hoc data structure and
using existing looping techniques works well sometimes. (I use it in other
parts of the system.) It's relatively easy to expand, even though it moves
interesting information ("I'm calling the <code>analyze_pe</code> method!") to
a place where tools have more trouble finding it. (I search for
<code>&gt;analyze_pe</code> when I want to find method calls.) You may have used something similar to define several parametric methods at <code>BEGIN</code> time. It's the same type of pattern, and while Perl 5 provides most of the tools necessary to allow this, it doesn't natively express this pattern well.</p>

<p>I could also change the transaction object's <code>add()</code> method to do
nothing when it receives an empty list of arguments. I like that in some ways,
but I don't like it in others. I've come down on the side of keeping its
invariant (it always takes only one scalar as an object) pure for now. If I
change it to take a list of updates, that might be the right time to reconsider
this.</p>

<p>What I notice in the code as it stands right now is that the individual
variables <code>$pe_update</code> and <code>$cash_yield_update</code> are
synthetic variables. They only exist to support the code as written; they're
not necessary for the algorithm. If I were to modify this code but only this code, I'd really rather write:</p>

<pre><code>{
    ADD_TXN_WITH( $self, analyze_pe,         $stock, $stock_txn    );
    ADD_TXN_WITH( $self, analyze_cash_yield, $stock, $analysis_txn );
}</code></pre>

<p>... though that syntax doesn't thrill me either. The clearest possibility I
see right now is:</p>

<pre><code>{
    $stock_txn-&gt;add(    SKIP unless $self-&gt;analyze_pe( $stock )         );
    $analysis_txn-&gt;add( SKIP unless $self-&gt;analyze_cash_yield( $stock ) );
}</code></pre>

<p>... where <code>SKIP</code> does some magic to move to the next statement,
not the next loop iteration. (I have some ideas how to write XS to make this
work, but that creepy yak needs a shave and some mouthwash.)</p>

<p>The second best option right now is adding a function or method as
indirection to encapsulate the synthetic code. I'd rather avoid synthetic code,
but at least it reduces the possibility of copy and paste bugs.</p>

<p>For now, with only two steps in this analysis, I'm leaving it as it is. Two
repetitions of something this similar set off my refactoring alarm, but I
resist the urge for refactorings this small until I see three instances of
near-duplicate code.</p>]]>
        
<br />

<a href="http://www.modernperlbooks.com/mt/2012/02/a-practical-use-for-macros-in-perl.html">Originally </a>

 posted by chromatic  from <a href="http://www.modernperlbooks.com/mt/">Modern Perl Books for modern Perl programming</a>

    </content>
</entry>
<entry>
    <title>Photo</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067545" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67545" title="Photo" />
    <id>tag:dj.riceweevil.com,2012://13.67545</id>
    
    <published>2012-02-03T13:22:28Z</published>
    <updated>2012-02-05T00:15:04Z</updated>
    
    <summary>

<br />

<a href="http://therealjanelle.tumblr.com/post/16982535065">Originally </a>
 
 posted by (author unknown) 
 from <a href="http://therealjanelle.tumblr.com/">the real janelle</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<img src="http://30.media.tumblr.com/tumblr_lytxpgi1iE1qz5dqgo1_500.jpg"><br><br>]]>
        
<br />

<a href="http://therealjanelle.tumblr.com/post/16982535065">Originally </a>

 posted by (author unknown)  from <a href="http://therealjanelle.tumblr.com/">the real janelle</a>

    </content>
</entry>
<entry>
    <title>Designing the Todo.txt Android Widget</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067551" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67551" title="Designing the Todo.txt Android Widget" />
    <id>tag:dj.riceweevil.com,2012://13.67551</id>
    
    <published>2012-02-03T12:51:03Z</published>
    <updated>2012-02-05T20:15:14Z</updated>
    
    <summary>
One of the most-requested features for Todo.txt Touch for Android is a homescreen widget that displays top priority tasks. Android widgets are subject to a set of even stricter visual and functional constraints than full-screen apps, so getting this feature...
<br />

<a href="http://feedproxy.google.com/~r/Smarterware/~3/GRyAXnxCo0s/designing-the-todo-txt-android-widget">Originally </a>
 
 posted by Gina Trapani 
 from <a href="http://smarterware.org">Smarterware</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="About" />
            <category term="Smarterware" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p>One of the most-requested features for <a href="https://market.android.com/details?id=com.todotxt.todotxttouch&amp;hl=en">Todo.txt Touch for Android</a> is a homescreen widget that displays top priority tasks. Android widgets are subject to a set of even stricter visual and functional constraints than full-screen apps, so getting this feature right has been a challenge. Your smartphone's homescreen is <a href="http://smarterware.org/9324/good-tools-have-verb-based-interfaces">meaningful, precious real estate</a>, and this app's widget should treat it that way.</p>
<p>Visual design has never been my strength, so I decided to do this in public and learn from conversations and critiques along the way. On a late night last fall I dove into the widget's design, posting screenshots to Google+ as I went, and iterating based on the critiques and suggestions I got in the comments for each. This is a summary of the progression of that process.</p>
<p>First, our requirements. In priority order, the Todo.txt Android homescreen widget should:</p>
<ul>
<li>Display a user's top 3 prioritized tasks from todo.txt.</li>
<li>Offer the ability to launch the fullscreen app.</li>
<li>Offer the ability to quickly add a new task from the widget.</li>
<li>Clearly communicate which app the widget is associated with, i.e., include some sort of Todo.txt branding.</li>
</ul>
<p><span></span></p>
<p>Two important things to know: While 2.2 (Froyo) is shown in the screenshots, Todo.txt Touch's target SDK is Android 1.6 (Donut). I approached this using <a href="http://smarterware.org/wp-content/uploads/2012/02/foursquare_android_widget.png">Foursquare's large widget</a> as an example of good widget design. </p>
<p><img src="http://smarterware.org/wp-content/uploads/2012/01/widget_rc1_1.jpg" alt="" title="Todo.txt Android widget alpha 1" width="320" height="480"></p>
<h3>Alpha 1</h3>
<p>This was the first "it's ugly but it it works" implementation, which essentially reuses the fullscreen app's main interface.</p>
<p><b>Pros:</b> Tasks are listed in priority order, with the right priority letter colors. The Add Task (+) button works. The widget is legible given any kind of wallpaper image, and the rounded corners and background color treatment make it look like the very useful <a href="http://smarterware.org/wp-content/uploads/2012/02/androidpowercontrolwidget.png">Power Control widget</a>.</p>
<p><b>Cons:</b> The application logo and title take up way too much space. There's too much unused space next to the + button. The + button also gets lost in the header, and doesn't look like a tap target.</p>
<p><a href="https://plus.google.com/113612142759476883204/posts/bByLJ64n6wS">Google+ discussion</a></p>
<div></div>
<h3>Alpha 2</h3>
<p><img src="http://smarterware.org/wp-content/uploads/2012/01/widget_rc2_1.jpg" alt="" title="Todo.txt Android widget alpha 2" width="320" height="480"></p>
<p>Take two...</p>
<p><b>Pros:</b> The application title no longer takes up an ungodly amount of space, and it no longer swallows up the the Add Task (+) button. Tasks appear at the top of the widget, flush with the top border, which gives them more visual priority.</p>
<p><b>Cons:</b> If you read left to right, the application icon is the first thing you see when you look at this widget, which is not our priority. The most important information in this widget is not the application branding or UI, but the contents of the todo.txt itself. Lots of unused negative space here, especially at the bottom.</p>
<p><a href="https://plus.google.com/113612142759476883204/posts/3DLTjEZPHk7">Google + discussion</a></p>
<div></div>
<h3>Beta 1</h3>
<p><img src="http://smarterware.org/wp-content/uploads/2012/01/widget_rc3_4.jpg" alt="" title="Todo.txt Android widget beta 1" width="320" height="480"></p>
<p>Cooking with gas...</p>
<p><b>Pros:</b> The top 3 items in the todo.txt are the first thing you see when you look at this widget. It has all the functionality it needs (launcher, branding, add task) while prioritizing the user's data over all else.</p>
<p><b>Cons:</b> There's still a whole lot of unused space between the application icon and the Add Task (+) button. The widget has even more unused space if a user's tasks are not a certain length. The icon and the Add Task (+) button are unbalanced, size-wise.</p>
<p><a href="https://plus.google.com/113612142759476883204/posts/5hTdvGxt7r1">Google+ discussion</a></p>
<div></div>
<h3>Beta 2</h3>
<p><img src="http://smarterware.org/wp-content/uploads/2012/02/todotxt_widget_b2_11.jpg" alt="" title="Todo.txt Android widget beta 2" width="320" height="480"></p>
<p>Something worth testing on my actual phone...</p>
<p><b>Pros:</b> All those of Beta 1, except the icon and Add Task (+) button are the same size and aligned, which is less consternating, visually.</p>
<p><b>Cons:</b> After using this widget on my phone with my actual todo.txt for four months... Damn this is a big widget. Like the large Foursquare widget, you can't fit much more on the screen this widget appears on. Also, with short tasks, there's lots of wasted space. Wasted space annoys me, because it's a disrespectful use of my precious homescreen real estate.</p>
<div></div>
<h3>Release Candidate 1</h3>
<p><img src="http://smarterware.org/wp-content/uploads/2012/01/widget_rc4_retake.jpg" alt="" title="Todo.txt Android widget RC 1" width="321" height="481"></p>
<p>Size matters...</p>
<p><b>Pros:</b> Takes up a lot less space on the screen, and uses the space within the widget itself more efficiently. No matter how long or short a task is, it will appear the same in this layout. Cutting off every task at the same point with the ellipsis gives each equal visual weight but still achieves the widget's information display goal; it's still obvious what each task is about. Lengthy tasks don't show up as busy wrapping walls of text.</p>
<p><b>Cons:</b> The font here is small and may affect legibility. The tap targets are also small—perhaps too small. The + button doesn&#39;t look enough like a button. The background color feels dark and depressing.</p>
<div></div>
<p>While I think this version is good enough for v1 release, there's still more work to do. Users should have the ability to choose a light, dark, or transparent background for this widget, depending on their preference and wallpaper choice, and perhaps even a portrait layout. Those are on the roadmap. </p>
<p>In the meantime, a new release of Todo.txt Touch for Android, finally with a homescreen widget, will be available some time next week.</p>
<img src="http://feeds.feedburner.com/~r/Smarterware/~4/GRyAXnxCo0s" height="1" width="1">]]>
        
<br />

<a href="http://feedproxy.google.com/~r/Smarterware/~3/GRyAXnxCo0s/designing-the-todo-txt-android-widget">Originally </a>

 posted by Gina Trapani  from <a href="http://smarterware.org">Smarterware</a>

    </content>
</entry>
<entry>
    <title>A New Look at Glamour</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067549" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67549" title="A New Look at Glamour" />
    <id>tag:dj.riceweevil.com,2012://13.67549</id>
    
    <published>2012-02-03T11:45:00Z</published>
    <updated>2012-02-05T20:15:09Z</updated>
    
    <summary>
<![CDATA[Fresh on the heels of the Harper's Bazaar redesign, news comes of a new look &amp; feel for Condé Nast&#39;s venerable Glamour magazine. The redesign was executed by DD Geraldine Hessler and her team.Take at peek at some inside pages...]]>
<br />

<a href="http://www.spd.org/2012/02/a-new-look-at-glamour.php">Originally </a>
 
 posted by The Editors 
 from <a href="http://www.spd.org/">Grids</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="Redesignscondenastgeraldinehesslerglamourredesigns" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[Fresh on the heels of the Harper's Bazaar redesign, <a href="http://www.nytimes.com/2012/02/02/fashion/fashion-changes-and-so-do-the-magazines.html?_r=3&amp;adxnnl=1&amp;seid=auto&amp;smid=tw-nytimesfashion&amp;adxnnlx=1328285282-iTybormwMT4a/VuvzUHYXA">news comes</a> of a new look &amp; feel for Condé Nast&#39;s venerable <b><i>Glamour</i></b> magazine. The redesign was executed by DD <b>Geraldine Hessler</b> and her team.<div><br></div><div>Take at peek at some inside pages after the jump.</div><div><br></div><div><br></div><div><br></div>
        <span style="display:inline"><img alt="Glamour02.jpg" src="http://www.spd.org/Glamour02.jpg" width="498" height="1000" style="float:left;margin:0 20px 20px 0"></span><div><br></div>]]>
        
<br />

<a href="http://www.spd.org/2012/02/a-new-look-at-glamour.php">Originally </a>

 posted by The Editors  from <a href="http://www.spd.org/">Grids</a>

    </content>
</entry>
<entry>
    <title>Breakthrough solutions: Fellows Friday with Juliette LaMontagne</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067544" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67544" title="Breakthrough solutions: Fellows Friday with Juliette LaMontagne" />
    <id>tag:dj.riceweevil.com,2012://13.67544</id>
    
    <published>2012-02-03T11:07:05Z</published>
    <updated>2012-02-03T17:15:14Z</updated>
    
    <summary>
 Juliette LaMontagne’s Breaker offers millennials a unique, hands-on alternative learning opportunity — working on projects with serious social impact. Breaker teams take on such challenges as illiteracy and feeding the city, while gaining valuable real-world social entrepreneurship skills. Take...
<br />

<a href="http://feedproxy.google.com/~r/TEDBlog/~3/moohCXJ3-Pk/">Originally </a>
 
 posted by Karen Eng 
 from <a href="http://blog.ted.com/">TED Blog</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="BusinessDesigneducationQ&amp;ATechnologyted" />
            <category term="fellowsTED2009TED2012" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><img src="http://tedconfblog.files.wordpress.com/2012/02/juliettelamontagne_ted_qa1.jpg" alt="Juliette LaMontagne" title="JulietteLaMontagne_TED_QA" width="530" height="400"></p>
<div>Juliette LaMontagne’s <a href="http://www.breakerproject.org/">Breaker</a> offers millennials a unique, hands-on alternative learning opportunity — working on projects with serious social impact. Breaker teams take on such challenges as illiteracy and feeding the city, while gaining valuable real-world social entrepreneurship skills.</div>
<p><strong>Take us through the Breaker process — how does it work?</strong></p>
<p>Each three-month Breaker project convenes a multidisciplinary group of young people between the ages of 18 and 24 to design product or service solutions to a global challenge. Projects are led by two visionaries — experts in the field who provide inspiration and context to the challenge. The first project we did, the Future of the Book Challenge, addressed the rise of functional illiteracy in the US, and asked the team to consider how emerging technologies might be harnessed to get adolescents reading. Our current Urban Agribusiness Challenge addresses the need to help urban agriculture grow from small-scale ventures to having a wider social impact. </p>
<p>Over three months, the Breaker team works with a series of collaborators — leading innovators in the field inform the research; industry experts guide the team throughout the process. The team approaches problem-solving using design processes they learn from <a href="http://blog.ted.com/2012/02/03/breakthrough-solutions-fellows-friday-with-juliette-lamontagne/www.ideo.com">IDEO</a>, <a href="http://www.fuseproject.com/">fuseproject</a>, <a href="http://www.frogdesign.com/">Frog</a> and more; they’re exposed to start-up perspectives by working inside innovation ecosystems like <a href="http://corp.aol.com/products-services/aol-ventures">AOL Ventures</a> and <a href="http://www.qlabs.com/">QLabs</a>. The project concludes by having the team pitch its products to an audience of all the existing collaborators, as well as members New York’s venture community. We set the bar high, but we also bring in the best of the best to support the process, offering the team access to the people and companies driving innovation in the space.</p>
<p><a href="http://tedconfblog.files.wordpress.com/2012/02/majora_talk.png"><img src="http://tedconfblog.files.wordpress.com/2012/02/majora_talk.png?w=525&amp;h=291" alt="Majora Carter addresses Breaker team" title="majora_talk" width="525" height="291"></a></p>
<div> Majora Carter presents a talk to the Breaker team and project collaborators to kick off the UrbanAg Challenge at the TED amphitheater in NYC. Click to see larger size. Photo: Juliette LaMontagne</div>
<p><strong>Tell us more about the Urban Agribusiness Challenge.</strong></p>
<p>The idea for this project grew out of a conversation I had last year at TED with Majora Carter, Founder of <a href="http://www.ssbx.org/">Sustainable South Bronx</a>, about the challenge of and opportunities in New York City urban agriculture. I later invited her to participate in a Breaker challenge as a project visionary. We chose Danielle Gould of <a href="http://www.foodandtechconnect.com">Food+Tech Connect</a> as a second visionary to complement Majora because she has an IT-fueled approach to innovation. Once the Breaker team was chosen, we invited a wide range of urban agriculture innovators across New York City to participate. In fact, TED Fellow <a href="http://blog.ted.com/2011/07/01/fellows-friday-with-viraj-puri/">Viraj Puri</a>’s <a href="http://gothamgreens.com">Gotham Greens</a> — a hydroponic greenhouse — is one of more than 20 research sites included in the first phase of the project. The team will survey sites across sectors — from grower to shipper, seller to consumer. They’ll be identifying needs in various stages of production and consumption, and develop products that might better satisfy these needs and help scale up urban agriculture.</p>
<p><span></span></p>
<p><strong>What do you look for in applicants?</strong></p>
<p>We look for tenacity as well as a proven ability to collaborate. Individuals are chosen to represent different skill sets. We’re looking to assemble a team with diverse domains of intelligence who will come at the problem from various perspectives. We like to have a visual artist help synthesize ideas during the messy collaborative process. We want someone with a programming background, and somebody else with experience in business. We like outliers who have a passion for creative collaboration even if they have no prior experience in design or entrepreneurship — even if they have little content knowledge specific to our challenge. </p>
<p><a href="http://tedconfblog.files.wordpress.com/2012/02/ideo2-copy.jpg"><img src="http://tedconfblog.files.wordpress.com/2012/02/ideo2-copy.jpg?w=525&amp;h=393" alt="Breaker team presents project" title="IDEO2 copy" width="525" height="393"></a></p>
<div>Future of the Book participants and their research findings at a workshop at IDEO. Click to see larger size. Photo: Juliette LaMontagne</div>
<p><strong>What’s been the most remarkable or successful outcome you’ve seen from a Breaker session?</strong></p>
<p>The mandate to design a commercially viable product is a huge driver — but launching it is not a necessary condition of success. Still, I think the fact that the products that came out of the Future of Book Challenge — Mobo (a service for receiving, sharing and engaging with stories via text messaging) and Unbound (a video reference tool) — continue to be developed speaks to our success. The participants who continue to push forward with them are stepping into unfamiliar roles that unveil unseen potential — both for them and for the world. At the end of the three months, some team members decide they’re done and are moving on to something else. But either way, all the participants come out of Breaker with an entrepreneurial mindset and a toolkit for designing solutions to the problems they will encounter — both large and small — for the rest of their lives. </p>
<p><strong>What problem did you set out to solve with Breaker? Were you mostly concerned about education’s failure to nurture creativity, or did you see young people disengaged with social challenges?</strong></p>
<p>I’ve been working to influence public school reform in NYC for fifteen years — as a teacher, a professional developer, a professor, and a leadership coach. I know firsthand how a culture of high-stakes testing quells curiosity and creativity, burns teachers and kids out and disrupts family life. The current iteration of Breaker is post-secondary, but the applications to secondary are there. As we grow, we’ll develop partner programs at the high school level that work in tandem with the Breaker teams — connecting them around similar lessons in designing for social entrepreneurship.</p>
<p>There are so many talented young people — some of whom have not been successful in traditional schooling — who know that have something valuable to contribute, but can’t find opportunities to apply their skills to meaningful work. Even students who have successfully navigated the college track complain of a disconnection between content learned and the skills needed for today’s economy. What we’re hearing from participants is that Breaker is seen as an alternative-learning pathway for those who’ve chosen not to go to college after high school, or as an experiential supplement to college coursework, or as a transitional opportunity for early career professionals. We see all three types applying to our program. </p>
<p>Breaker will gradually expand to cities across the US and abroad with the aim of establishing concurrent programming in sister secondary schools. </p>
<p><a href="http://tedconfblog.files.wordpress.com/2012/02/ql4-copy.jpg"><img src="http://tedconfblog.files.wordpress.com/2012/02/ql4-copy.jpg?w=525&amp;h=392" alt="A product development groups from Future of the Book Challenge." title="Ql4 copy" width="525" height="392"></a></p>
<div>“Unbound” work session: one of two product development groups that came out of the Future of the Book Challenge. Click to see larger size. Photo: Juliette LaMontagne</div>
<p><strong>Tell us about your own kids and how they affect and shape your work</strong></p>
<p>My kids go to a public elementary school in New York City. My 4th grader works out of a Kaplan Test Companion workbook every night for homework, and has little opportunity to apply these discrete skills in substantive ways – through no fault of her teacher or the principal, they’re only complying with a whole host of system-wide mandates and pressures. Alternative models exist in the city, but they come with a price tag a middle-class family like ours can’t afford. Suffice it to say that I’ve got a five-year plan to get the Breaker model into the NYC public high schools!</p>
<p><strong>How has being a TED Fellow changed or affected your work?</strong></p>
<p>It wasn’t until I began attending TED in 2009, as a Fellow, that I began to rethink my long history with project-based learning in terms of design thinking and social enterprise. I found that user-centered design required the same rigorous research, interviewing and empathy work that was the central to the projects I taught; I appreciated the permission to fail inherent in an iterative methodology; and I was attracted to the idea of designing solutions within the constraints of the marketplace. In other words, I began to see problems and their solutions not only as academic exercises, but as opportunities for product and service development. And I saw the educative and entrepreneurial potential for students.</p>
<p><strong>There are many aspiring social entrepreneurs out there who are trying to take their passion and ideas to the next level. What one piece of advice would you give them, based on your own experience and successes?</strong></p>
<p>Maintain a learning stance. It takes the pressure off getting it perfect, and compels you to find the lessons in your failures. </p>
<br>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tedconfblog.wordpress.com/54549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tedconfblog.wordpress.com/54549/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tedconfblog.wordpress.com/54549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tedconfblog.wordpress.com/54549/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tedconfblog.wordpress.com/54549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tedconfblog.wordpress.com/54549/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tedconfblog.wordpress.com/54549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tedconfblog.wordpress.com/54549/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tedconfblog.wordpress.com/54549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tedconfblog.wordpress.com/54549/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tedconfblog.wordpress.com/54549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tedconfblog.wordpress.com/54549/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tedconfblog.wordpress.com/54549/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tedconfblog.wordpress.com/54549/"></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.ted.com&amp;blog=14795620&amp;post=54549&amp;subd=tedconfblog&amp;ref=&amp;feed=1" width="1" height="1"><img src="http://feeds.feedburner.com/~r/TEDBlog/~4/moohCXJ3-Pk" height="1" width="1">]]>
        
<br />

<a href="http://feedproxy.google.com/~r/TEDBlog/~3/moohCXJ3-Pk/">Originally </a>

 posted by Karen Eng  from <a href="http://blog.ted.com/">TED Blog</a>

    </content>
</entry>
<entry>
    <title>Grilling: Sriracha Hot Wings</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067543" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67543" title="Grilling: Sriracha Hot Wings" />
    <id>tag:dj.riceweevil.com,2012://13.67543</id>
    
    <published>2012-02-03T10:30:00Z</published>
    <updated>2012-02-03T17:15:12Z</updated>
    
    <summary>
 You can&apos;t go wrong with the union of Sriracha and wings, especially over Super Bowl weekend, and especially when you have a batch of homemade Sriracha sauce handy. These started with a coating of baking powder—a method I&amp;#39;ve been...
<br />

<a href="http://www.seriouseats.com/2012/02/grilling-sriracha-hot-wings.html">Originally </a>
 
 posted by Joshua Bousel 
 from <a href="http://www.seriouseats.com/">Serious Eats</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><img alt="20120131-190766-sriracha-wings-small.jpg" src="http://www.seriouseats.com/images/2012/01/20120131-190766-sriracha-wings-small.jpg" width="500" height="332"></p>

<p>You can't go wrong with the union of Sriracha and wings, especially over Super Bowl weekend, and especially when you have a batch of <a href="http://www.seriouseats.com/2012/02/how-to-make-sriracha-from-scratch-sauces.html">homemade Sriracha sauce</a> handy.</p>

<p>These started with a coating of baking powder—a method I&#39;ve been using religiously since <a href="http://www.seriouseats.com/recipes/2010/02/the-best-buffalo-wings-oven-fried-wings-recipe.html">Kenji unleashed it</a> upon us two years ago—which creates a textured, crunchy exterior when cooked either in the oven or over indirect <a href="http://www.seriouseats.com/2010/04/grilling-how-hot-heat-fire-temperature-for-food-meat-burgers-chicken-veggies-fish.html#mediumhigh">medium-high</a> heat on the grill, as I did here.</p>
    <p>To double up the Sriracha awesomeness, the wings were first brushed with a rich and spicy Sriracha-based sauce in the last minutes of grilling. After that coating baked in, they were tossed with the remaining sauce, creating two layers of that hot garlic goodness, ensuring every bite was full of flavor.</p>

<p>A tripled recipe of these wings were gone in flash when I served them. They're now first string for any Game Day menu of <a href="http://www.seriouseats.com/tags/recipes/Wing%20Week">the many, many wing recipes</a> already in my arsenal.</p>

<h4>Get the Recipe</h4>

<p><strong><a href="http://www.seriouseats.com/recipes/2012/02/sriracha-hot-wings-recipe.html">Sriracha Hot Wings »</a></strong></p>

<p><small><strong>About the author:</strong> <a href="http://www.seriouseats.com/user/profile/josh!">Joshua Bousel</a> brings you new, <a href="http://www.seriouseats.com/tags/recipes/Sauced">tasty condiment</a> each Wednesday and a recipe for weekend <a href="http://www.seriouseats.com/tags/recipes/Grilling">grilling</a> every Friday. He also writes about grilling and barbecue on his blog <a href="http://www.meatwave.com/">The Meatwave</a> whenever he can be pulled away from his grill.</small> </p>
    
    
        
         
            
                
                    <a href="http://www.seriouseats.com/recipes/2012/02/sriracha-hot-wings-recipe.html">Get the Recipe!</a>]]>
        
<br />

<a href="http://www.seriouseats.com/2012/02/grilling-sriracha-hot-wings.html">Originally </a>

 posted by Joshua Bousel  from <a href="http://www.seriouseats.com/">Serious Eats</a>

    </content>
</entry>
<entry>
    <title>Fifteen Islands for Robert Moses</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067542" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67542" title="Fifteen Islands for Robert Moses" />
    <id>tag:dj.riceweevil.com,2012://13.67542</id>
    
    <published>2012-02-03T09:16:30Z</published>
    <updated>2012-02-03T17:15:10Z</updated>
    
    <summary>
Tomorrow night Greg Sholette&apos;s installation &quot;Fifteen Islands for Robert Moses&quot; opens at the Queens Museum. One of the islands was conceived by Dara Greenwald, an &quot;Island of Healing and Restfulness.&quot; Opening party: Saturday, February 4, 6 – 10 pm Queens...
<br />

<a href="http://www.justseeds.org/blog/2012/02/fifteen_islands_for_robert_mos.html">Originally </a>
 
 posted by Josh M. 
 from <a href="http://www.justseeds.org/blog/">Justseeds: Blog</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="Events" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><a href="http://www.justseeds.org/blog/images/dgreenwald_island.jpg"><img alt="dgreenwald_island.jpg" src="http://www.justseeds.org/blog/images/dgreenwald_island-thumb.jpg" width="400" height="479"></a>Tomorrow night Greg Sholette's installation "Fifteen Islands for Robert Moses" opens at the Queens Museum. One of the islands was conceived by Dara Greenwald, an "Island of Healing and Restfulness."</p>

<p>Opening party: Saturday, February 4, 6 – 10 pm<br>
Queens Museum, Flushing Meadows Corona Park<br>
<a href="http://www.queensmuseum.org/9204/fifteen-islands-for-robert-moses"><br>
Fifteen Islands for Robert Moses</a> is a site-specific art infiltration into the Panorama of the City of New York, which was built for the 1964 World’s Fair by urban planner Robert Moses and is now a centerpiece of the Queens Museum of Art. Artist and theorist Greg Sholette made and placed new islands about the Panorama’s waterways, where they exist as silent, post-9/11 observers of the City’s past, present, and future. </p>
      <p>Modeled in the same style as the Panorama, each island represents Sholette’s interpretation of a question he posed to a group of other artists and art theorists: “If you could add an island to New York City, what would that new landmass be like?” Touching on issues from environmental and economic justice to the overflowing archives of human memory and immigrant’s rights, the new fantasy islands interrupt the familiar geography of the Panorama, subtly haunting a favorite destination for students, tourists, and urban planners. Surrounding the Panorama is a series of posters about the project’s participating collaborators: Hana Shams Ahmed, Brett Bloom, Larry Bogad, Marc Fischer, Aaron Gach/Center for Tactical Magic, Libertad Guerra, Dara Greenwald, Marisa Jahn, Karl Lorac/Themm!, Ann Messner, Ted Purves, Rasha Salti, Dread Scott and Jenny Polak, Jeffrey Skoller, and Nato Thompson. Special thanks go to Matthew F. Greco for graphic assistance.</p>]]>
        
<br />

<a href="http://www.justseeds.org/blog/2012/02/fifteen_islands_for_robert_mos.html">Originally </a>

 posted by Josh M.  from <a href="http://www.justseeds.org/blog/">Justseeds: Blog</a>

    </content>
</entry>
<entry>
    <title>Super Bowl: How to Build an Edible Stadium with a Guacamole Field</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067540" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67540" title="Super Bowl: How to Build an Edible Stadium with a Guacamole Field" />
    <id>tag:dj.riceweevil.com,2012://13.67540</id>
    
    <published>2012-02-03T09:00:00Z</published>
    <updated>2012-02-03T17:15:06Z</updated>
    
    <summary>
 &quot;Ha, what if we built an edible stadium?&quot; That comment spurred this ambitious construction last year. It took an entire afternoon and probably a tree&apos;s worth of avocados, but we were pretty proud of the results. C&apos;mon, how adorable...
<br />

<a href="http://www.seriouseats.com/2012/02/super-bowl-how-to-build-an-edible-stadium-with-guacamole-field.html">Originally </a>
 
 posted by Erin Zimmer 
 from <a href="http://www.seriouseats.com/">Serious Eats</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><img alt="Ready to build a stadium?" src="http://www.seriouseats.com/images/20110131-stadium-23.jpg" width="500" height="333"></p>

<p>"Ha, what if we built an edible stadium?" That comment spurred this ambitious construction last year. It took an entire afternoon and probably a tree's worth of avocados, but we were pretty proud of the results. C'mon, how adorable are those olive-helmeted Goldfish players?</p>

<p>Note to Super Bowl party-throwers: eating guacamole from a field is clearly way more thrilling than from a normal bowl. Your guests will be talking about your edible stadium for Super Bowls to come. Of course you'll have to adjust the endzones and helmets this year for the Giants and Patriots. (Blue olives? Blue dips? Please share your ideas.) </p>

<p><strong><a href="http://www.seriouseats.com/2011/01/how-to-build-an-edible-stadium-super-bowl-party-guacamole-field.html">Check out our step-by-step instructions here »</a></strong></p>]]>
        
<br />

<a href="http://www.seriouseats.com/2012/02/super-bowl-how-to-build-an-edible-stadium-with-guacamole-field.html">Originally </a>

 posted by Erin Zimmer  from <a href="http://www.seriouseats.com/">Serious Eats</a>

    </content>
</entry>
<entry>
    <title>The Adventures of You and I</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067539" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67539" title="The Adventures of You and I" />
    <id>tag:dj.riceweevil.com,2012://13.67539</id>
    
    <published>2012-02-03T08:03:46Z</published>
    <updated>2012-02-03T17:15:03Z</updated>
    
    <summary>
If you really care about printed media and want to see it succeed, then you’d probably acknowledge it must change in some way. The husband and wife team of Armin Vit and Bryony Gomez-Palacio seem to understand this better than most; they remain passionately devoted to paper goods but also embrace the possibilities of digital technology. (Full disclosure: they’re friends of mine.) 

Their latest project, “The Adventures of You and I,” is a great example of this. It’s a beautifully illustrated and imaginatively written children’s book that you can customize for the special child in your life. That doesn’t just mean you can add the child’s name to the cover or even to the title, though both are possible. No, more than that, you can configure the central character of the book, changing his or her hair color, hair style, skin color and clothing color. The child’s name gets seamlessly integrated into the storyline too, making the whole thing uniquely personal.



This is a hint of what a healthy marriage of print and digital can be, not just in its configurability, but in the fact that “The Adventures of You and I” is a thoroughly indie affair, too. No big publishing house was involved in this production, both because no big publishing house was necessary and because no big publishing house could have done this so well. Find out more here.
		    
       To follow me on Twitter click here.
<br />

<a href="http://feedproxy.google.com/~r/subtraction/~3/ZGUj63PMA7w/the-adventures-of-you-and-i">Originally </a>
 
 posted by (author unknown) 
 from <a href="http://www.subtraction.com">Subtraction.com</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p>If you really care about printed media and want to see it succeed, then you’d probably acknowledge it must change in some way. The husband and wife team of <a href="http://underconsideration.com/">Armin Vit and Bryony Gomez-Palacio</a> seem to understand this better than most; they remain passionately devoted to paper goods but also embrace the possibilities of digital technology. (Full disclosure: they’re friends of mine.) </p>

<p>Their latest project, “<a href="http://theadventuresofyouandi.com/">The Adventures of You and I</a>,” is a great example of this. It’s a beautifully illustrated and imaginatively written children’s book that you can customize for the special child in your life. That doesn’t just mean you can add the child’s name to the cover or even to the title, though both are possible. No, more than that, you can configure the central character of the book, changing his or her hair color, hair style, skin color and clothing color. The child’s name gets seamlessly integrated into the storyline too, making the whole thing uniquely personal.</p>

<p><a href="http://theadventuresofyouandi.com/"><img src="http://assets.subtraction.com/images/uploads/2012-02-03-adventures-of-you-and-i.png" alt="The Adventures of You and I" height="291" width="400"></a></p>

<p>This is a hint of what a healthy marriage of print and digital can be, not just in its configurability, but in the fact that “The Adventures of You and I” is a thoroughly indie affair, too. No big publishing house was involved in this production, both because no big publishing house was necessary and because no big publishing house could have done this so well. <a href="http://theadventuresofyouandi.com/">Find out more here</a>.</p>
		    
       <p>To follow me on Twitter <a href="http://www.twitter.com/khoi">click here</a>.</p><img src="http://feeds.feedburner.com/~r/subtraction/~4/ZGUj63PMA7w" height="1" width="1">]]>
        
<br />

<a href="http://feedproxy.google.com/~r/subtraction/~3/ZGUj63PMA7w/the-adventures-of-you-and-i">Originally </a>

 posted by (author unknown)  from <a href="http://www.subtraction.com">Subtraction.com</a>

    </content>
</entry>
<entry>
    <title>A Brief History of The Elements of Style and What Makes It Great</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067554" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67554" title="A Brief History of The Elements of Style and What Makes It Great" />
    <id>tag:dj.riceweevil.com,2012://13.67554</id>
    
    <published>2012-02-03T08:00:19Z</published>
    <updated>2012-02-05T21:15:06Z</updated>
    
    <summary>
<![CDATA[On depth in simplicity and beauty in plainness. “I hate the guts of English grammar,” E. B White once famously proclaimed. Yet Strunk &amp; White’s The Elements of Style is among the most important and timeless books on writing. With...]]>
<br />

<a href="http://feedproxy.google.com/~r/brainpickings/rss/~3/2YNfsKKFOs0/">Originally </a>
 
 posted by Maria Popova 
 from <a href="http://www.brainpickings.org">Brain Pickings</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="culturepartnershipsbookscollaborationhistorylanguageletters" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><em>On depth in simplicity and beauty in plainness.</em></p>
<p><a href="https://www.amazon.com/dp/1416590927/ref=as_li_ss_til?tag=braipick-20&amp;camp=0&amp;creative=0&amp;linkCode=as4&amp;creativeASIN=1416590927&amp;adid=1NW2QZNVSNDK96KY9AZN&amp;"><img align="right" style="margin:9px 0 3px 15px" src="http://www.brainpickings.org/wp-content/uploads/2012/02/stylized.jpeg" width="200"></a>“I hate the guts of English grammar,” E. B White once famously proclaimed. Yet Strunk &amp; White’s <a href="https://www.amazon.com/dp/0205632645/ref=as_li_ss_til?tag=braipick-20&amp;camp=0&amp;creative=0&amp;linkCode=as4&amp;creativeASIN=0205632645&amp;adid=00S9ABTM9ANR1YQYJJFV&amp;"><em>The Elements of Style</em></a> is among the most important and timeless <a href="http://www.google.com/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=2&amp;ved=0CDQQFjAB&amp;url=http%3A%2F%2Fwww.brainpickings.org%2Findex.php%2F2012%2F01%2F09%2Fbest-books-on-writing-reading%2F&amp;ei=C-8qT6HbLfODsgL46tj5DQ&amp;usg=AFQjCNEM84KH6GZpY1wfpVqetxrOmPO9Nw&amp;sig2=jf5oG5j6SVqbCGyHnyCEsQ">books on writing</a>. With its enduring legacy and cultish following, it has inspired countless derivatives and homages, from a magnificent <a href="http://www.brainpickings.org/index.php/2011/08/09/10-masterpieces-of-graphic-nonfiction/#kalman">edition illustrated by Maira Kalman</a> to <a href="http://www.brainpickings.org/index.php/2011/12/20/the-elements-of-style-rap/">a rap</a>. The book has become a legend in its own right, its story part of our modern creative mythology — but, like a good fairy tale, it brims with more curious, unlikely, even whimsical details than a mere plot summary might suggest. Those are exactly what <strong>Mark Garvey</strong>, a 20-year publishing veteran and self-professed extreme <em>Elements of Style</em> enthusiast, explores in <a href="https://www.amazon.com/dp/1416590927/ref=as_li_ss_til?tag=braipick-20&amp;camp=0&amp;creative=0&amp;linkCode=as4&amp;creativeASIN=1416590927&amp;adid=1NW2QZNVSNDK96KY9AZN&amp;"><strong><em>Stylized: A Slightly Obsessive History of Strunk &amp; White’s The Elements of Style</em></strong></a>.</p>
<p>From how White, a former student of Strunk’s, resurrected the original text after Strunk’s death, to White’s thoughtful, stubborn, heartfelt, and often snarky correspondence with his editors and readers, including many never-before-published letters, to original interviews with some of today’s most beloved writers, including <strong>Adam Gopnik</strong>, <strong>Nicholas Baker</strong>, and <strong>Elmore Leonard</strong>, the slim but fascinating and wholehearted volume offers a rare peek inside the creative process behind one of the most iconic meta-meditations on the English language.</p>
<p>A large part of what made the Strunk and White collaboration so potent, it turns out, is the stark contrast between the two authors’ attitude towards the rules of language. Garvey writes:</p>
<blockquote><p>E. B. White described Strunk’s voice on the page as being ‘in the form of sharp commands, Sergeant Strunk snapping orders to his platoon,’ and it’s true, the professor seems to spend much of this time in an imperative mood: ‘Do not break sentences in two,’ ‘Use the active voice,’ ‘Omit needless words.’ It’s a natural enough idiom, considering his day job; Strunk sounds teacherly, though he’s not without humor.</p>
<p>White’s voice, on the other hand, is that of the writer, the practitioner of long experience whose sympathies favor the artistic side of the enterprise.”</p></blockquote>
<p>But, above all, Garvey captures the intangible essence of what makes <em>The Elements of Style</em> as much a subject of workshops as it is an object of worship:</p>
<blockquote><p>True believers have always felt something more, an extra dimension that has likely been a fundamental source of the book’s success all along: As practical as it is for helping writers over common hurdles, <em>The Elements of Style</em> also embodies a worldview, a philosophy that, for some, is as appealing as anything either author ever managed to get down on paper. <em>Elements of Style</em> is a credo. And it is a book of promises — the promise that creative freedom is enabled, not hindered, by putting your faith in a few helpful rules; the promise that careful, clear thinking and writing can occasionally touch truth; the promise of depth in simplicity and beauty in plainness; and the promise that by turning away from artifice and ornamentation you will find your true voice.”</p></blockquote>
<p>Rigorously researched and infectiously narrated, <a href="https://www.amazon.com/dp/1416590927/ref=as_li_ss_til?tag=braipick-20&amp;camp=0&amp;creative=0&amp;linkCode=as4&amp;creativeASIN=1416590927&amp;adid=1NW2QZNVSNDK96KY9AZN&amp;"><strong><em>Stylized</em></strong></a> is an exquisite labor of love, a love that honors one of the most quintessential paragons of <a href="http://www.brainpickings.org/index.php/2012/01/24/lewis-hyde-the-gift-work-vs-labor/">creative labor</a> in modern literary history.</p>
<p style="background:#f8f8f8;margin:15px 0;padding:10px 15px;color:#000"><a href="http://www.brainpickings.org/index.php/newsletter/"><img align="left" style="margin:3px 7px 3px 0" src="http://www.brainpickings.org/wp-content/themes/BrainPickings/images/email.png" alt="" width="50"></a>Brain Pickings has a free weekly newsletter and people <a href="http://www.brainpickings.org/index.php/newsletter/">say it’s cool</a>. It comes out on Sundays and offers the week’s best articles. Here’s <a href="http://us2.campaign-archive2.com/home/?u=13eb080d8a315477042e0d5b1&amp;id=179ffa2629">what to expect</a>. Like? <a href="http://www.brainpickings.org/index.php/newsletter/">Sign up.</a></p>
<div style="float:right;margin-top:10px;margin-left:5px">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.brainpickings.org%2Findex.php%2F2012%2F02%2F03%2Fstylized-elements-of-style%2F"><br>
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.brainpickings.org%2Findex.php%2F2012%2F02%2F03%2Fstylized-elements-of-style%2F&amp;source=brainpicker&amp;style=compact&amp;service=bit.ly&amp;service_api=http%3A%2F%2Fapi.j.mp%2Fv3%2Fshorten%3Flogin%3Dbrainpicker%26apiKey%3DR_1c3cc3da619e2391f246157a3c5cedae%26longUrl%3D%25%40%26format%3Dtxt&amp;b=2" height="61" width="50"><br>
			</a>
		</div>
<p><em><strong>Brain Pickings takes 450+ hours a month to curate and edit across the different platforms, and keeping it ad-free isn't easy. If it brings you any joy and inspiration, please consider a modest <a href="http://www.brainpickings.org/index.php/donate/">donation</a> – it lets me know I'm doing something right.</strong></em>

<a href="http://www.brainpickings.org/index.php/donate/"><img style="margin-left:50px" src="http://www.brainpickings.org/donate.png"></a>

<a href="http://www.share.holstee.com/l/6/2669">
<img src="http://www.share.holstee.com/m/6" width="728" height="90" alt="Holstee" border="0"></a>


</p>
 <p><a href="http://www.brainpickings.org/?flattrss_redirect&amp;id=17408&amp;md5=51df110dadade0cf15f97ba9c3268aaa" title="Flattr"><img src="http://www.brainpickings.org/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"></a></p><p><iframe src="http://feedads.g.doubleclick.net/~ah/f/j8s5jadmcpmmjckl4e48r9l8og/300/250?ca=1&amp;fh=280#http%3A%2F%2Fwww.brainpickings.org%2Findex.php%2F2012%2F02%2F03%2Fstylized-elements-of-style%2F" width="100%" height="280" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"></iframe></p><img src="http://feeds.feedburner.com/~r/brainpickings/rss/~4/2YNfsKKFOs0" height="1" width="1">]]>
        
<br />

<a href="http://feedproxy.google.com/~r/brainpickings/rss/~3/2YNfsKKFOs0/">Originally </a>

 posted by Maria Popova  from <a href="http://www.brainpickings.org">Brain Pickings</a>

    </content>
</entry>
<entry>
    <title>Café au Art</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067553" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67553" title="Café au Art" />
    <id>tag:dj.riceweevil.com,2012://13.67553</id>
    
    <published>2012-02-03T08:00:00Z</published>
    <updated>2012-02-05T21:15:04Z</updated>
    
    <summary>
 Everyone loves going to a café, ordering a latte and being presented with a lovely heart or flower etched in foam on top. Aside from looking beautiful, the latte art signifies that the milk has been properly steamed and...
<br />

<a href="http://smithratliff.com/2012/02/03/cafe-au-art/">Originally </a>
 
 posted by Smith & Ratliff 
 from <a href="http://smithratliff.com">Smith &amp; Ratliff » Smith &amp; Ratliff</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="Drinkartcoffeelattephotos" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><a href="http://smithratliff.com/2012/02/03/cafe-au-art/4-81/" rel="attachment wp-att-3361"><img src="http://smithratliff.com/wp-content/uploads/2012/02/41-500x333.jpg" alt="A latte designed with the Smith and Ratliff logo" title="Smith &amp; Ratliff" width="500" height="333"></a></p>
<p>Everyone loves going to a café, ordering a latte and being presented with a lovely heart or flower etched in foam on top. Aside from looking beautiful, the latte art signifies that the milk has been properly steamed and that your drink was made with love. Some baristas go for the just the bare minimum, while others use the cup as a canvas.</p>
<p>My friend, New York City-based artist and barista at <a href="http://smithratliff.com/2011/05/11/the-breslins-beef/" title="The Breslin’s Beef">The Breslin</a>, Mike Breach, has a gift for being able to do just about anything with a cup of espresso and milk. </p>
<p><a href="http://smithratliff.com/2012/02/03/cafe-au-art/2-90/" rel="attachment wp-att-3359"><img src="http://smithratliff.com/wp-content/uploads/2012/02/21-500x363.jpg" alt="A bear etched in foam in a latte" title="Latte Bear" width="500" height="363"></a></p>
<p>Laura and I had the pleasure of watching him create a few different designs for us a few days ago. From animals, works of art, rock stars and presidents, <a href="http://mikedreamboat.tumblr.com/" title="Mike Breach">Mike</a> amazed us with each one. He even did a portrait of our dog, <a href="http://smithratliff.com/2012/01/23/snow-dog/" title="Snow Dog">Iggy Pop</a>!</p>
<p>How much more fun would waking up be if one of these adorned your cup every morning?</p>
<p><em>- Ryan</em></p>
<p><a href="http://smithratliff.com/2012/02/03/cafe-au-art/7-55/" rel="attachment wp-att-3364"><img src="http://smithratliff.com/wp-content/uploads/2012/02/71-500x346.jpg" alt="Iggy Pop, our Brussels Griffon, draw in latte art in NYC" title="Iggy Pop Latte" width="500" height="346"></a></p>
<p><a href="http://smithratliff.com/2012/02/03/cafe-au-art/6-59/" rel="attachment wp-att-3363"><img src="http://smithratliff.com/wp-content/uploads/2012/02/61-500x366.jpg" alt="President Barack Obama made into latte art in NYC cafe" title="Barack Obama" width="500" height="366"></a></p>
<p><a href="http://smithratliff.com/2012/02/03/cafe-au-art/1-98/" rel="attachment wp-att-3358"><img src="http://smithratliff.com/wp-content/uploads/2012/02/11-500x360.jpg" alt="A horse drawn into latte foam" title="Horse Latte" width="500" height="360"></a></p>
<p><a href="http://smithratliff.com/2012/02/03/cafe-au-art/3-85/" rel="attachment wp-att-3360"><img src="http://smithratliff.com/wp-content/uploads/2012/02/31-500x346.jpg" alt="Gene Simmons of KISS as latte art" title="Gene Simmons" width="500" height="346"></a></p>
<p><a href="http://smithratliff.com/2012/02/03/cafe-au-art/5-80/" rel="attachment wp-att-3362"><img src="http://smithratliff.com/wp-content/uploads/2012/02/51-500x345.jpg" alt="A piece of latte art in the style of NYC artist Keith Haring" title="Keith Haring Latte" width="500" height="345"></a></p>
<a href="http://pinterest.com/pin/create/button/?url=http%3A%2F%2Fsmithratliff.com%2F2012%2F02%2F03%2Fcafe-au-art%2F&amp;media=http%3A%2F%2Fsmithratliff.com%2Fwp-content%2Fuploads%2F2012%2F02%2F21.jpg&amp;description=Amazing+latte+art+done+by+a+New+York+City+artist%21">Pin It</a><p>©2012 <a href="http://smithratliff.com">Smith &amp; Ratliff</a>. All Rights Reserved.</p>.]]>
        
<br />

<a href="http://smithratliff.com/2012/02/03/cafe-au-art/">Originally </a>

 posted by Smith & Ratliff  from <a href="http://smithratliff.com">Smith &amp; Ratliff » Smith &amp; Ratliff</a>

    </content>
</entry>
<entry>
    <title>You can tell a lot about a woman by her hands…</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067547" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67547" title="You can tell a lot about a woman by her hands…" />
    <id>tag:dj.riceweevil.com,2012://13.67547</id>
    
    <published>2012-02-03T07:48:11Z</published>
    <updated>2012-02-05T20:15:04Z</updated>
    
    <summary>
 Posted without comment. Seen on More Art Less Housework. Anyone know the artist? Update: It’s by Dawn Rogal who says she has more on the way. (thnx dawn, and everyone)...
<br />

<a href="http://feedproxy.google.com/~r/colossal/~3/XDXakAMfUP4/">Originally </a>
 
 posted by Christopher Jobson 
 from <a href="http://www.thisiscolossal.com">Colossal</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="Uncategorizedembroidery" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><img src="http://www.thisiscolossal.com/wp-content/uploads/2012/02/tumblr_lyh79770Jm1r5vrkfo1_1280-600x738.jpg" alt="You can tell a lot about a woman by her hands... embroidery " title="You can tell a lot about a woman by her hands..." width="600" height="738"></p>
<p>Posted without comment. Seen on <a href="http://drogal.tumblr.com/post/16594853563">More Art Less Housework</a>. Anyone know the artist?</p>
<p><span>Update:</span> It’s by <a href="http://dawnrogal.wordpress.com">Dawn Rogal</a> who says she has more on the way. (thnx dawn, and everyone)</p>
<img src="http://feeds.feedburner.com/~r/colossal/~4/XDXakAMfUP4" height="1" width="1">]]>
        
<br />

<a href="http://feedproxy.google.com/~r/colossal/~3/XDXakAMfUP4/">Originally </a>

 posted by Christopher Jobson  from <a href="http://www.thisiscolossal.com">Colossal</a>

    </content>
</entry>
<entry>
    <title>The Beautiful, Beautiful Lana Del Rey</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067550" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67550" title="The Beautiful, Beautiful Lana Del Rey" />
    <id>tag:dj.riceweevil.com,2012://13.67550</id>
    
    <published>2012-02-03T06:45:45Z</published>
    <updated>2012-02-05T20:15:11Z</updated>
    
    <summary>
 For the moon (still) never beams without bringing me dreams of the beautiful Lana Del Rey. [Via]---See more posts by Edith Zimmerman24 comments...
<br />

<a href="http://feedproxy.google.com/~r/thehairpin/BdYj/~3/ITtRDzCLg4E/the-beautiful-beautiful-lana-del-rey">Originally </a>
 
 posted by Edith Zimmerman 
 from <a href="http://thehairpin.com/">The Hairpin</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="del" />
            <category term="lana" />
            <category term="rey" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><iframe width="640" height="355" src="http://www.youtube.com/embed/bzDeN9HXqns" frameborder="0"></iframe></p>

<p>For the moon (<a href="http://thehairpin.com/2012/01/the-beautiful-lana-del-rey">still</a>) never beams without bringing me dreams of the beautiful Lana Del Rey.</p>

<p>[<a href="http://www.buzzfeed.com/rollinp/lana-del-rey-beautiful-and-gorgeous-supercut-2b2d">Via</a>]</p><p>---</p><p>See more posts by <a title="Edith Zimmerman" href="http://thehairpin.com/user/2/edith">Edith Zimmerman</a></p><p><a href="http://thehairpin.com/2012/02/the-beautiful-beautiful-lana-del-rey#comments">24 comments</a></p><img src="http://feeds.feedburner.com/~r/thehairpin/BdYj/~4/ITtRDzCLg4E" height="1" width="1">]]>
        
<br />

<a href="http://feedproxy.google.com/~r/thehairpin/BdYj/~3/ITtRDzCLg4E/the-beautiful-beautiful-lana-del-rey">Originally </a>

 posted by Edith Zimmerman  from <a href="http://thehairpin.com/">The Hairpin</a>

    </content>
</entry>
<entry>
    <title>Coming soon: Paris</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067564" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67564" title="Coming soon: Paris" />
    <id>tag:dj.riceweevil.com,2012://13.67564</id>
    
    <published>2012-02-03T06:23:57Z</published>
    <updated>2012-02-05T21:15:27Z</updated>
    
    <summary>
 Paris is a new title from Cape Town’s The President, the people behind MK Bruce/Lee, Afro and Menu. Creative director Peet Pienaar explains the idea behind the magazine, ‘With all the radical changes in the world, the South’s influence...
<br />

<a href="http://magculture.com/blog/?p=13140">Originally </a>
 
 posted by jeremy 
 from <a href="http://magculture.com/blog">magCulture.com/blog</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="Magazines" />
            <category term="coversNew" />
            <category term="front" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><img src="http://farm8.staticflickr.com/7168/6810973961_19a29e12a1.jpg" alt="" width="250" height="330"></p>
<p><em>Paris</em> is a new title from Cape Town’s <a href="http://www.thepresident.co.za/">The President</a>, the people behind <em>MK Bruce/Lee</em>, <em>Afro</em> and <em>Menu</em>.</p>
<p>Creative director Peet Pienaar explains the idea behind the magazine, ‘With all the radical changes in the world, the South’s influence is becoming very important. This magazine is an effort to shift the world’s attention to all the wonderful things happening in the South.’ Produced as a collaboration between the studios offices in Cape Town and Buenos Aires, it’ll be trilingual (English, Spanish and Portugese) and launches in April this year.</p>
<p> </p>]]>
        
<br />

<a href="http://magculture.com/blog/?p=13140">Originally </a>

 posted by jeremy  from <a href="http://magculture.com/blog">magCulture.com/blog</a>

    </content>
</entry>
<entry>
    <title>Honoring Marlon Riggs</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067548" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67548" title="Honoring Marlon Riggs" />
    <id>tag:dj.riceweevil.com,2012://13.67548</id>
    
    <published>2012-02-03T06:00:00Z</published>
    <updated>2012-02-05T20:15:07Z</updated>
    
    <summary>
 Marlon Riggs was born on this day in 1957. A political filmmaker, Riggs started exploring themes of race and sexuality in his films while attending Harvard University. As he was originally from Texas, a film festival in Dallas named...
<br />

<a href="http://www.justseeds.org/blog/2012/02/honoring_marlon_riggs.html">Originally </a>
 
 posted by Bec Young 
 from <a href="http://www.justseeds.org/blog/">Justseeds: Blog</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="FirebrandsJustseeds" />
            <category term="Projects" />
            <category term="collective" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><img alt="riggs_fair_blog.jpg" src="http://www.justseeds.org/blog/images/riggs_fair_blog.jpg" width="200" height="255"><br>
Marlon Riggs was born on this day in 1957. A political filmmaker, Riggs started exploring themes of race and sexuality in his films while attending Harvard University. As he was originally from Texas, a film festival in Dallas named for him will run it's third annual event this year. The following text is from <a href="http://www.justseeds.org/justseeds_collaborations/17firebrands.html"><em>Firebrands: Portraits from the Americas</em></a>: "Banned from numerous public-broadcasting stations, Riggs’ work sparked debates about funding and censorship in public television, and encouraged him to rally support for a more inclusive, diverse popular media. After contracting the HIV virus, Riggs became an outspoken AIDS activist, exploring his experiences in his film <em>Non, Je Ne Regrette Rien </em> (No, I Regret Nothing). He continued to work on his film <em>Black Is…Black Ain’t</em>, a personal journey and examination of a myriad of African-American identities, until his death in 1994."</p>]]>
        
<br />

<a href="http://www.justseeds.org/blog/2012/02/honoring_marlon_riggs.html">Originally </a>

 posted by Bec Young  from <a href="http://www.justseeds.org/blog/">Justseeds: Blog</a>

    </content>
</entry>
<entry>
    <title>Way Yes, &quot;Singing&quot;</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067541" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67541" title="Way Yes, &quot;Singing&quot;" />
    <id>tag:dj.riceweevil.com,2012://13.67541</id>
    
    <published>2012-02-03T04:30:20Z</published>
    <updated>2012-02-03T17:15:08Z</updated>
    
    <summary>
Good morning! Here&apos;s a lovely new song from Way Yes, an indie-pop band from Columbus, Ohio, whose debut album, Walkability, is due out March 23. (And here&apos;s where to Officially Like them and their album art.) Stereogum has this and...
<br />

<a href="http://feedproxy.google.com/~r/thehairpin/BdYj/~3/39GYZbJ-KEM/way-yes-singing">Originally </a>
 
 posted by Edith Zimmerman 
 from <a href="http://thehairpin.com/">The Hairpin</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="Yes" />
            <category term="musicmp3sway" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><iframe width="640" height="464" src="http://www.youtube.com/embed/ARpENs-4Fbk" frameborder="0"></iframe>Good morning! Here's a lovely new song from <a href="http://wayyes.com/">Way Yes</a>, an indie-pop band from Columbus, Ohio, whose debut album, <em>Walkability</em>, is due out March 23. (And here's <a href="http://www.facebook.com/WayYes">where to Officially Like them</a> and their album art.)</p>

<p>Stereogum has <a href="http://stereogum.com/938401/way-yes-singing-stereogum-premiere/mp3s/">this and two other free Way Yes MP3s</a>, if you'd like.</p><p>---</p><p>See more posts by <a title="Edith Zimmerman" href="http://thehairpin.com/user/2/edith">Edith Zimmerman</a></p><p><a href="http://thehairpin.com/2012/02/way-yes-singing#comments">3 comments</a></p><img src="http://feeds.feedburner.com/~r/thehairpin/BdYj/~4/39GYZbJ-KEM" height="1" width="1">]]>
        
<br />

<a href="http://feedproxy.google.com/~r/thehairpin/BdYj/~3/39GYZbJ-KEM/way-yes-singing">Originally </a>

 posted by Edith Zimmerman  from <a href="http://thehairpin.com/">The Hairpin</a>

    </content>
</entry>
<entry>
    <title>Interview Germany</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067563" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67563" title="Interview Germany" />
    <id>tag:dj.riceweevil.com,2012://13.67563</id>
    
    <published>2012-02-03T03:48:17Z</published>
    <updated>2012-02-05T21:15:25Z</updated>
    
    <summary>
 The German edition of Interview launched last week, with 032c team Joerg Koch (editor) and Mike Meiré (art director) at the helm. Photograph by Sean+Seng.  ...
<br />

<a href="http://magculture.com/blog/?p=13134">Originally </a>
 
 posted by jeremy 
 from <a href="http://magculture.com/blog">magCulture.com/blog</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="DesignersFront" />
            <category term="coversPhotography" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><img src="http://farm8.staticflickr.com/7010/6810938389_35a7b486a8.jpg" alt="" width="250" height="320"></p>
<p>The German edition of<em> <a href="http://blog.interview.de/">Interview</a></em> launched last week, with <a href="http://032c.com/"><em>032c</em></a> team Joerg Koch (editor) and Mike Meiré (art director) at the helm. Photograph by Sean+Seng.</p>
<p> </p>]]>
        
<br />

<a href="http://magculture.com/blog/?p=13134">Originally </a>

 posted by jeremy  from <a href="http://magculture.com/blog">magCulture.com/blog</a>

    </content>
</entry>
<entry>
    <title>The Fine Art of Barbie: Oil Paintings by Peihang Huang</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067571" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67571" title="The Fine Art of Barbie: Oil Paintings by Peihang Huang" />
    <id>tag:dj.riceweevil.com,2012://13.67571</id>
    
    <published>2012-02-02T22:43:46Z</published>
    <updated>2012-02-05T21:15:42Z</updated>
    
    <summary>
 Taipei-based painter Peihang Huang uses vibrant oil paints to create these dreamy, saccharine, and occasionally morbid portraits inspired by Barbie dolls. The paintings above are from two sets of work entitled Floral Funeral and Mad World, and you can...
<br />

<a href="http://feedproxy.google.com/~r/colossal/~3/cMOFmAHLRys/">Originally </a>
 
 posted by Christopher Jobson 
 from <a href="http://www.thisiscolossal.com">Colossal</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="UncategorizedartBarbiepaintingtoys" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><a href="http://www.flickr.com/photos/69012717@N00/5300405707/in/set-72157625567939001/"><img src="http://www.thisiscolossal.com/wp-content/uploads/2012/02/huang-1.jpg" alt="The Fine Art of Barbie: Oil Paintings by Peihang Huang  toys painting Barbie art " title="The Fine Art of Barbie: Oil Paintings by Peihang Huang " width="600" height="600"></a></p>
<p><a href="http://www.flickr.com/photos/69012717@N00/5300991894/in/set-72157625567939001/"><img src="http://www.thisiscolossal.com/wp-content/uploads/2012/02/huang-2.jpg" alt="The Fine Art of Barbie: Oil Paintings by Peihang Huang  toys painting Barbie art " title="The Fine Art of Barbie: Oil Paintings by Peihang Huang " width="600" height="467"></a></p>
<p><a href="http://www.flickr.com/photos/69012717@N00/5622044785/in/set-72157625567939001/"><img src="http://www.thisiscolossal.com/wp-content/uploads/2012/02/huang-3.jpg" alt="The Fine Art of Barbie: Oil Paintings by Peihang Huang  toys painting Barbie art " title="The Fine Art of Barbie: Oil Paintings by Peihang Huang " width="600" height="358"></a></p>
<p><a href="http://www.flickr.com/photos/69012717@N00/5622601138/in/set-72157626504698210/"><img src="http://www.thisiscolossal.com/wp-content/uploads/2012/02/huang-4.jpg" alt="The Fine Art of Barbie: Oil Paintings by Peihang Huang  toys painting Barbie art " title="The Fine Art of Barbie: Oil Paintings by Peihang Huang " width="600" height="599"></a></p>
<p><a href="http://www.flickr.com/photos/69012717@N00/5622565822/in/set-72157626504698210/"><img src="http://www.thisiscolossal.com/wp-content/uploads/2012/02/huang-5.jpg" alt="The Fine Art of Barbie: Oil Paintings by Peihang Huang  toys painting Barbie art " title="The Fine Art of Barbie: Oil Paintings by Peihang Huang " width="600" height="508"></a></p>
<p><a href="http://www.flickr.com/photos/69012717@N00/5622022899/in/set-72157626504698210/"><img src="http://www.thisiscolossal.com/wp-content/uploads/2012/02/huang-6.jpg" alt="The Fine Art of Barbie: Oil Paintings by Peihang Huang  toys painting Barbie art " title="The Fine Art of Barbie: Oil Paintings by Peihang Huang " width="600" height="481"></a></p>
<p>Taipei-based painter <a href="http://www.huangpeihang.com">Peihang Huang</a> uses vibrant oil paints to create these dreamy, saccharine, and occasionally <a href="http://www.flickr.com/photos/69012717@N00/sets/72157625692535054/">morbid</a> portraits inspired by Barbie dolls. The paintings above are from two sets of work entitled <a href="http://www.flickr.com/photos/69012717@N00/sets/72157626504698210/">Floral Funeral</a> and<br>
<a href="http://www.flickr.com/photos/69012717@N00/sets/72157625567939001/">Mad World</a>, and you can see much more of her work <a href="http://www.flickr.com/photos/69012717@N00/">on Flickr</a>. (via <a href="http://gaksdesigns.tumblr.com/post/16820844809/artist-peihang-huang">gaks</a>)</p>
<img src="http://feeds.feedburner.com/~r/colossal/~4/cMOFmAHLRys" height="1" width="1">]]>
        
<br />

<a href="http://feedproxy.google.com/~r/colossal/~3/cMOFmAHLRys/">Originally </a>

 posted by Christopher Jobson  from <a href="http://www.thisiscolossal.com">Colossal</a>

    </content>
</entry>
<entry>
    <title>Vintage Vogue</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067572" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67572" title="Vintage Vogue" />
    <id>tag:dj.riceweevil.com,2012://13.67572</id>
    
    <published>2012-02-02T22:09:26Z</published>
    <updated>2012-02-05T21:15:44Z</updated>
    
    <summary>
Scans from five decades of Vogue Magazine dating back to the 1920s.



Over 1,600 images. Amazing. See them all here.
		    
       To follow me on Twitter click here.
<br />

<a href="http://feedproxy.google.com/~r/subtraction/~3/LCPFseq7G20/vintage-vogue">Originally </a>
 
 posted by (author unknown) 
 from <a href="http://www.subtraction.com">Subtraction.com</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p>Scans from five decades of <em>Vogue Magazine</em> dating back to the 1920s.</p>

<p><a href="http://www.flickr.com/photos/vintagevogue/"><img src="http://assets.subtraction.com/images/uploads/2012-02-02-vintage-vogue.png" alt="Vintage Vogue" height="467" width="400"></a></p>

<p>Over 1,600 images. Amazing. <a href="http://www.flickr.com/photos/vintagevogue/">See them all here</a>.</p>
		    
       <p>To follow me on Twitter <a href="http://www.twitter.com/khoi">click here</a>.</p><img src="http://feeds.feedburner.com/~r/subtraction/~4/LCPFseq7G20" height="1" width="1">]]>
        
<br />

<a href="http://feedproxy.google.com/~r/subtraction/~3/LCPFseq7G20/vintage-vogue">Originally </a>

 posted by (author unknown)  from <a href="http://www.subtraction.com">Subtraction.com</a>

    </content>
</entry>
<entry>
    <title>The view from an old time burger joint</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067538" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67538" title="The view from an old time burger joint" />
    <id>tag:dj.riceweevil.com,2012://13.67538</id>
    
    <published>2012-02-02T15:56:47Z</published>
    <updated>2012-02-03T01:15:17Z</updated>
    
    <summary>
From the This Must Be the Place series, a lovely short film about the Prime Burger Restaurant in midtown Manhattan. The restaurant opened in 1938 and one of the servers, Artie, has been there since 1952. For many of the...
<br />

<a href="http://kottke.org/12/02/the-view-from-an-old-time-burger-joint">Originally </a>
 
 posted by Jason Kottke 
 from <a href="http://kottke.org/">kottke.org</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p>From the <a href="http://thismustbetheplace.tv">This Must Be the Place series</a>, a lovely short film about the Prime Burger Restaurant in midtown Manhattan. The restaurant opened in 1938 and one of the servers, Artie, has been there since 1952.</p>

<p><iframe src="http://player.vimeo.com/video/35965635?title=0&amp;byline=0&amp;portrait=0" width="500" height="281" frameborder="0"></iframe></p>

<blockquote><p>For many of the guys that work here, the restaurant is like a second home -- some of them have been slinging burgers, making shakes, and waiting on customers at this location for decades. Opened in 1938, the place hasn't been altered since the early '60s, and it looks all the better for it. Here the waiters and workers of Prime Burger discuss their views on their chosen profession, and the unique nature of the place itself.</p></blockquote>

<p>(via <a href="https://twitter.com/#!/daveg">@daveg</a>)</p>

<p><strong>Update:</strong> Over at Serious Eats, <a href="http://aht.seriouseats.com/archives/2009/10/how-to-order-at-prime-burger-review-midtown-east-nyc.html">Ed Levine gives some advice on how to order properly at Prime Burger</a>.</p>

<blockquote><p>So why the need to order right? Because to keep up with the fast food chains, the DiMicelis started par-broiling their burgers. Par-broiling produces a less juicy burger. So when you order at Prime Burger specify you want your burger ($5.25 for a hamburger, $5.95 for a cheeseburger) made from scratch, and that you're willing to wait the extra few minutes.</p></blockquote> <strong>Tags:</strong> <a href="http://kottke.org/tag/food">food</a>   <a href="http://kottke.org/tag/NYC">NYC</a>   <a href="http://kottke.org/tag/restaurants">restaurants</a>   <a href="http://kottke.org/tag/video">video</a>]]>
        
<br />

<a href="http://kottke.org/12/02/the-view-from-an-old-time-burger-joint">Originally </a>

 posted by Jason Kottke  from <a href="http://kottke.org/">kottke.org</a>

    </content>
</entry>
<entry>
    <title>Silent Drape Runners Present Twin Peaks: The Beginning</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067558" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67558" title="Silent Drape Runners Present Twin Peaks: The Beginning" />
    <id>tag:dj.riceweevil.com,2012://13.67558</id>
    
    <published>2012-02-02T15:48:20Z</published>
    <updated>2012-02-05T21:15:15Z</updated>
    
    <summary>
 Quite a lot has happened since Russ Marshalek debuted his Twin Peaks live re-soundtracking project at Veronica’s People Club last year. He has since formed the Silent Drape Runners with singer Sophie Weiner, and together they’ve released their first...
<br />

<a href="http://feedproxy.google.com/~r/WelcomeToTwinPeaks/~3/66Kzyq2TGic/">Originally </a>
 
 posted by Twin Pie 
 from <a href="http://welcometotwinpeaks.com">Welcome to Twin Peaks</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="Events92ytribecasilent" />
            <category term="drape" />
            <category term="runnerssoundtrack" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><img title="Silent Drape Runners, a live Twin Peaks soundtrack project" src="http://welcometotwinpeaks.com/wp-content/uploads/silent-drape-runners.jpg" alt="Silent Drape Runners, a live Twin Peaks soundtrack project" width="516" height="311"></p>
<p>Quite a lot has happened since Russ Marshalek debuted his <a title="Twin Peaks Pilot To Get New, Live Soundtrack" href="http://welcometotwinpeaks.com/events/twin-peaks-new-live-soundtrack/">Twin Peaks live re-soundtracking</a> project at Veronica’s People Club last year. He has since formed the <strong>Silent Drape Runners</strong> with singer Sophie Weiner, and together they’ve released their first EP of “<em>ambient emotional breakbeat witch wave vibeology</em>” called <strong>New Vibes</strong>. Later this month, the Brooklyn-based duo will perform their live and Badalamenti-less soundtrack as part of the Twin Peaks celebration at <a href="http://welcometotwinpeaks.com/tag/92ytribeca">92YTribeca</a> in New York City.</p>
<p>Listen to New Vibes by <strong>Silent Drape Runners</strong>:</p>
<p></p>
<p>» <a href="http://www.92y.org/Tribeca/Event/Silent-Drape-Runners.aspx" rel="nofollow">Tickets</a> ($10) to this performance are close to selling out, so act fast.</p>
<p>» If you want to get them to your venue, contact silentdraperunnersband@gmail.com for bookings. You know, they’re available in Austin, TX during SXSW.</p>
<p>Just to give you an idea of the mood, this is the song the Silent Draper Runners use as an alternative to the Twin Peaks theme.</p>
<p><iframe width="500" height="375" src="http://www.youtube.com/embed/hiwi7d0f91Y?fs=1&amp;feature=oembed" frameborder="0"></iframe></p>
<p><strong>Date</strong>: Sat, Feb 18, 2012, 10 PM.<br>
<strong>Venue</strong>: 92YTribeca SCREENING ROOM, 200 Hudson Street</p>


<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=92Y+Tribeca,+Hudson+Street,+New+York,+NY&amp;aq=0&amp;oq=92y&amp;sll=18.062312,-45.966797&amp;sspn=67.561663,135.263672&amp;vpsrc=0&amp;ie=UTF8&amp;hq=92Y+Tribeca,&amp;hnear=Hudson+St,+New+York&amp;t=m&amp;ll=40.722973,-74.007847&amp;spn=0.011169,0.006295&amp;output=embed&amp;output=embed" width="100%" height="480"></iframe>
<p>Visit <a href="http://welcometotwinpeaks.com">Welcome to Twin Peaks</a>.</p><img src="http://feeds.feedburner.com/~r/WelcomeToTwinPeaks/~4/66Kzyq2TGic" height="1" width="1">]]>
        
<br />

<a href="http://feedproxy.google.com/~r/WelcomeToTwinPeaks/~3/66Kzyq2TGic/">Originally </a>

 posted by Twin Pie  from <a href="http://welcometotwinpeaks.com">Welcome to Twin Peaks</a>

    </content>
</entry>
<entry>
    <title>Pixlr Express ReUpdate!</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067531" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67531" title="Pixlr Express ReUpdate!" />
    <id>tag:dj.riceweevil.com,2012://13.67531</id>
    
    <published>2012-02-02T14:13:00Z</published>
    <updated>2012-02-02T20:15:09Z</updated>
    
    <summary>
Not to go into too many details here but we have an overall strategy with our editing products, one can say; Simple, Effective and Advanced. This then corresponds to our current offering of Pixlr-o-matic, Pixlr Express and Pixlr Editor.We get tons...
<br />

<a href="http://blog.pixlr.com/2012/02/pixlr-express-reupdate.html">Originally </a>
 
 posted by dgtart 
 from <a href="http://blog.pixlr.com/">Pixlr blog</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<div><span style="font-family:inherit"><span lang="EN-US" style="line-height:115%">Not to go into too many details here but we have an overall strategy with our editing</span><span lang="EN-US" style="line-height:115%"> </span><span lang="EN-US" style="line-height:115%">products, one can say; Simple, Effective and Advanced. This then corresponds to our current offering of Pixlr-o-matic, Pixlr Express and Pixlr Editor.</span></span></div><div><span lang="EN-US" style="line-height:115%"><span style="font-family:inherit"><br></span></span></div><div><span lang="EN-US" style="line-height:115%"><span style="font-family:inherit">We get tons of requests of adding more features, sliders, knobs and choices in Pixlr-o-matic but if we did that the reason why o-matic is such a awesome product would go away, it would be too hard to understand and to many settings. So o-matic works very well for novice users and people who want to play with an image once in a while. For more active users and those who want more control over the effects as well as adjustments, touchups, texts, stickers we have the new Express (<a href="http://pixlr.com/express/">http://pixlr.com/express/</a>). </span></span></div><div><br></div><div><span lang="EN-US" style="line-height:115%"><span style="font-family:inherit">The concept of a single strip of items is good in o-matic but in express we really want to surface all the awesome content we actually have and are constantly adding more to. This is where the changes we just released come into play. When you now click one of the tabs you see all the different packs in that section (instead of only the default pack). When you click a pack you get a additional setting for selecting between all the items in that pack. </span></span></div><div><span style="line-height:18px"><br></span></div><div style="clear:both;text-align:center"><a href="http://1.bp.blogspot.com/-SYG3-sYwYQs/TyreN2p942I/AAAAAAAAAcQ/hAmCq_l6r3Q/s1600/screen1.jpg" style="margin-left:1em;margin-right:1em"><img border="0" height="195" src="http://1.bp.blogspot.com/-SYG3-sYwYQs/TyreN2p942I/AAAAAAAAAcQ/hAmCq_l6r3Q/s640/screen1.jpg" width="640"></a></div><div><span style="line-height:18px"><br></span></div><div><span style="font-family:inherit;line-height:115%">If there are more items then fits into your screen size you can scroll the content with the arrows in the top left corner or just drag/flick the strip with your mouse.</span></div><div><br></div><div style="clear:both;text-align:center"><a href="http://1.bp.blogspot.com/-7FCzeujT9QA/Tyreo48yGBI/AAAAAAAAAcY/6tZzgncPDoE/s1600/pin.jpg" style="clear:left;float:left;margin-bottom:1em;margin-right:1em"><img border="0" src="http://1.bp.blogspot.com/-7FCzeujT9QA/Tyreo48yGBI/AAAAAAAAAcY/6tZzgncPDoE/s1600/pin.jpg"></a></div><div><span lang="EN-US" style="line-height:115%"><span style="font-family:inherit">When you want to try an item you click on it and the strip goes away, it then load and apply the effect. A tip here is to click on the “pin” button in the top right corner to lock the strip from hiding, then you can click trough the list and try stuff out!</span></span></div><div><span lang="EN-US" style="line-height:115%"><span style="font-family:inherit"><br></span></span></div><div><a href="http://4.bp.blogspot.com/-ludT2Dn8iFo/TyrezeubTvI/AAAAAAAAAcg/CwlQe6z9KLs/s1600/shuffle.jpg" style="clear:right;float:right;margin-bottom:1em;margin-left:1em"><img border="0" src="http://4.bp.blogspot.com/-ludT2Dn8iFo/TyrezeubTvI/AAAAAAAAAcg/CwlQe6z9KLs/s1600/shuffle.jpg"></a><span lang="EN-US" style="line-height:115%"><span style="font-family:inherit">We also added buttons for shuffle and favorite, one click on the shuffle and we by random select one item in the pack, great if you don’t really know what you might want. By clicking on the favorite button you add the current item to your favorite list.</span></span></div><div><span lang="EN-US" style="line-height:115%"><span style="font-family:inherit"><br></span></span></div><div><span lang="EN-US" style="line-height:115%"><span style="font-family:inherit">As soon as you have any item as a favorite there will be an extra pack in the menu called favorites for quick access to your selected items.</span><span style="font-family:&#39;Trebuchet MS&#39;,sans-serif;font-size:medium"></span></span></div><div style="clear:both;text-align:center"><a href="http://2.bp.blogspot.com/-C2unuf6sL7s/TyrfNJqN4LI/AAAAAAAAAco/dJb7IJJZj-0/s1600/fav.jpg" style="clear:left;float:left;margin-bottom:1em;margin-right:1em"><img border="0" height="104" src="http://2.bp.blogspot.com/-C2unuf6sL7s/TyrfNJqN4LI/AAAAAAAAAco/dJb7IJJZj-0/s320/fav.jpg" width="320"></a></div><div><span style="line-height:18px">Express is new and will be updated on a daily basis for the next month, more content, fonts and touch-ups to look out for!</span></div><div><span style="line-height:18px"><br></span></div><div><span style="line-height:18px">//Ola</span></div><div><span lang="EN-US" style="line-height:115%"><span style="font-family:inherit"><br></span></span></div><div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/1460475017944681944-8970227278779408911?l=blog.pixlr.com" alt=""></div>]]>
        
<br />

<a href="http://blog.pixlr.com/2012/02/pixlr-express-reupdate.html">Originally </a>

 posted by dgtart  from <a href="http://blog.pixlr.com/">Pixlr blog</a>

    </content>
</entry>
<entry>
    <title>Compare presidential candidate fundraising</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067530" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67530" title="Compare presidential candidate fundraising" />
    <id>tag:dj.riceweevil.com,2012://13.67530</id>
    
    <published>2012-02-02T13:56:30Z</published>
    <updated>2012-02-02T20:15:07Z</updated>
    
    <summary>
Presidential candidates have raised $186 million up to now, according to the Federal Election Commission. The New York Times lets you compare the amounts raised by each candidate, over time and space. Simply select a candidate on the left, and...
<br />

<a href="http://flowingdata.com/2012/02/02/compare-presidential-candidate-fundraising/">Originally </a>
 
 posted by Nathan Yau 
 from <a href="http://flowingdata.com">FlowingData</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="Statistical" />
            <category term="Visualizationfundraisinggovernmentinteractivenytimes" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><a href="http://flowingdata.com/2012/02/02/compare-presidential-candidate-fundraising/"><img width="625" height="496" src="http://flowingdata.com/wp-content/uploads/2012/02/Money-race-with-candidates-625x496.png" alt="Money race with candidates" title="Money race with candidates"></a></p><p>Presidential candidates have raised $186 million up to now, according to the <a href="http://www.fec.gov/disclosure.shtml">Federal Election Commission</a>. <em>The New York Times</em> lets you <a href="http://elections.nytimes.com/2012/campaign-finance">compare the amounts raised by each candidate</a>, over time and space. Simply select a candidate on the left, and another on the right to see how they match up. Fundraising by candidates from previous elections, at the same time of year, are also included for context.</p>
<p>While not the focus of the interactive, the distributions for donation size at the bottom seem to be especially telling.</p>
<p>[<a href="http://elections.nytimes.com/2012/campaign-finance">New York Times</a> via <a href="http://infosthetics.com/archives/2012/02/comparing_the_fundraising_performance_of_the_us_presidential_candidates.html">infosthetics</a>]</p>
<img src="http://feeds.feedburner.com/~r/FlowingData/~4/EyoaEE2lQxw" height="1" width="1">]]>
        
<br />

<a href="http://flowingdata.com/2012/02/02/compare-presidential-candidate-fundraising/">Originally </a>

 posted by Nathan Yau  from <a href="http://flowingdata.com">FlowingData</a>

    </content>
</entry>
<entry>
    <title>Leland Palmer Sings Mairzy Doats In The Sims</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067557" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67557" title="Leland Palmer Sings Mairzy Doats In The Sims" />
    <id>tag:dj.riceweevil.com,2012://13.67557</id>
    
    <published>2012-02-02T11:04:08Z</published>
    <updated>2012-02-05T21:15:13Z</updated>
    
    <summary>
 After creating machinima versions of the Twin Peaks season finales, tattooedgirl001 is back with another The Sims 3 remake of a notorious Twin Peaks scene: Mairzy Doats. Don’t worry, it’s the real song, and not a Simlish remix. Although…...
<br />

<a href="http://feedproxy.google.com/~r/WelcomeToTwinPeaks/~3/qgAOgDAVyCc/">Originally </a>
 
 posted by Twin Pie 
 from <a href="http://welcometotwinpeaks.com">Welcome to Twin Peaks</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="Movies3dleland" />
            <category term="doatsremakethe" />
            <category term="palmermachinimamairzy" />
            <category term="sims" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><img title="Leland Palmer sings Mairzy Doats in another Twin Peaks Sims remake" src="http://welcometotwinpeaks.com/wp-content/uploads/mairzy-doats-sims.jpg" alt="Leland Palmer sings Mairzy Doats in another Twin Peaks Sims remake" width="613" height="341"></p>
<p>After creating <a href="http://welcometotwinpeaks.com/tag/machinima">machinima</a> versions of the Twin Peaks season finales, tattooedgirl001 is back with another <a href="http://welcometotwinpeaks.com/tag/the-sims/" rel="nofollow">The Sims 3</a> remake of a notorious Twin Peaks scene: Mairzy Doats. Don’t worry, it’s the real song, and not a <a href="http://www.youtube.com/watch?v=rJsZhiOhUVg" rel="nofollow">Simlish remix</a>. Although… “<em>Mairzy doats and dozy doats and liddle lamzy divey</em>“ sure sounds Simlish, right?</p>
<p>Starring Sims versions of Sarah Palmer, Leland Palmer, Madeleine  Ferguson, Benjamin Horne, Jerry Horne, Shelly Johnson and Norma Jennings, the intro and outro take place in The Double R Diner, while the actual scenes happen inside the Palmer residence and Ben’s office.</p>
<h1>I’m Back! Back and Ready!</h1>
<p><iframe width="500" height="375" src="http://www.youtube.com/embed/m-ZHJy06LOQ?fs=1&amp;feature=oembed" frameborder="0"></iframe></p>
<p>I’d say the first few minutes of the pilot, but which scene do you think tattooedgirl001 should she remake next?</p>
<p>Visit <a href="http://welcometotwinpeaks.com">Welcome to Twin Peaks</a>.</p><img src="http://feeds.feedburner.com/~r/WelcomeToTwinPeaks/~4/qgAOgDAVyCc" height="1" width="1">]]>
        
<br />

<a href="http://feedproxy.google.com/~r/WelcomeToTwinPeaks/~3/qgAOgDAVyCc/">Originally </a>

 posted by Twin Pie  from <a href="http://welcometotwinpeaks.com">Welcome to Twin Peaks</a>

    </content>
</entry>
<entry>
    <title>Understanding RPython</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067534" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67534" title="Understanding RPython" />
    <id>tag:dj.riceweevil.com,2012://13.67534</id>
    
    <published>2012-02-02T09:50:00Z</published>
    <updated>2012-02-03T01:15:08Z</updated>
    
    <summary>
Lately, I&apos;ve been trying to wrap my brains around how the PyPy translation toolchain works--in preparation for my PyCon plenary talk. I&apos;d planned to do some blogging about it, but have become suddenly inundated with work. So, in it&apos;s place,...
<br />

<a href="http://dabeaz.blogspot.com/2012/02/understanding-rpython.html">Originally </a>
 
 posted by Dave Beazley 
 from <a href="http://www.dabeaz.com/blog/dablog.html">Dabeaz</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p>Lately, I've been trying to wrap my brains around how the PyPy translation toolchain works--in preparation for my PyCon plenary talk.    I'd planned to do some blogging about it, but have become suddenly inundated with work.  So, in it's place, I present a screencast of the January 12, 2012 <a href="http://chipy.org">Chipy</a> talk I gave about it.   If you're like me, and have wondered what PyPy is doing under the covers, you might find it interesting.   Enjoy!</p>

<iframe width="420" height="315" src="http://www.youtube.com/embed/GjnRLG8ATn4" frameborder="0"></iframe> 

<p>
I hope to say even more at PyCon.  See you in a month!
</p><div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/36456651-260002320668803298?l=dabeaz.blogspot.com" alt=""></div>]]>
        
<br />

<a href="http://dabeaz.blogspot.com/2012/02/understanding-rpython.html">Originally </a>

 posted by Dave Beazley  from <a href="http://www.dabeaz.com/blog/dablog.html">Dabeaz</a>

    </content>
</entry>
<entry>
    <title>voxsart:

1963.
Sidney Poitier and Harry Belafonte, Washington,...</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067556" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67556" title="voxsart:

1963.
Sidney Poitier and Harry Belafonte, Washington,..." />
    <id>tag:dj.riceweevil.com,2012://13.67556</id>
    
    <published>2012-02-02T09:39:28Z</published>
    <updated>2012-02-05T21:15:10Z</updated>
    
    <summary>
voxsart:

1963.
Sidney Poitier and Harry Belafonte, Washington, D.C.

I’m inclined to call their style “unimpeachable.”
<br />

<a href="http://putthison.com/post/16920232616">Originally </a>
 
 posted by jessethorn 
 from <a href="http://putthison.com/">Put This On</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="Struggle" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<img src="http://28.media.tumblr.com/tumblr_lyhflzmGpR1r00ztro1_500.jpg"><br><br><p><a href="http://www.voxsartoria.com/post/16605014313/1963-sidney-poitier-and-harry-belafonte">voxsart</a>:</p>
<blockquote>
<p><strong>1963.</strong></p>
<p>Sidney Poitier and Harry Belafonte, Washington, D.C.</p>
</blockquote>
<p>I’m inclined to call their style “unimpeachable.”</p>]]>
        
<br />

<a href="http://putthison.com/post/16920232616">Originally </a>

 posted by jessethorn  from <a href="http://putthison.com/">Put This On</a>

    </content>
</entry>
<entry>
    <title>Esperanza Spalding Featuring Algebra Blessett, &quot;Black Gold&quot;</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067537" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67537" title="Esperanza Spalding Featuring Algebra Blessett, &quot;Black Gold&quot;" />
    <id>tag:dj.riceweevil.com,2012://13.67537</id>
    
    <published>2012-02-02T09:30:32Z</published>
    <updated>2012-02-03T01:15:15Z</updated>
    
    <summary>
The criminally talented and beautiful Esperanza Spalding and Algebra Blessett teamed up for the first single off Esperanza&apos;s upcoming album, Radio Music Society, due out March 20. (Meanwhile, &quot;Black Gold&quot; is currently available on iTunes for $1.29.)---See more posts by...
<br />

<a href="http://feedproxy.google.com/~r/thehairpin/BdYj/~3/iH6KSL5p98I/esperanza-spalding-featuring-algebra-blessett-black-gold">Originally </a>
 
 posted by Edith Zimmerman 
 from <a href="http://thehairpin.com/">The Hairpin</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="blessett" />
            <category term="musicmusic" />
            <category term="spaldingalgebra" />
            <category term="videosesperanza" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><iframe width="640" height="355" src="http://www.youtube.com/embed/hagNQF1yjKs" frameborder="0"></iframe>The criminally talented and beautiful <a href="http://www.esperanzaspalding.com/">Esperanza Spalding</a> and <a href="http://www.facebook.com/pages/Algebra-Blessett/25782842787">Algebra Blessett</a> teamed up for the first single off Esperanza's upcoming album, <em>Radio Music Society</em>, due out March 20. (Meanwhile, "Black Gold" is <a href="http://itunes.apple.com/us/album/black-gold-feat.-special-guest/id498029045">currently available on iTunes for $1.29</a>.)</p><p>---</p><p>See more posts by <a title="Edith Zimmerman" href="http://thehairpin.com/user/2/edith">Edith Zimmerman</a></p><p><a href="http://thehairpin.com/2012/02/esperanza-spalding-featuring-algebra-blessett-black-gold#comments">4 comments</a></p><img src="http://feeds.feedburner.com/~r/thehairpin/BdYj/~4/iH6KSL5p98I" height="1" width="1">]]>
        
<br />

<a href="http://feedproxy.google.com/~r/thehairpin/BdYj/~3/iH6KSL5p98I/esperanza-spalding-featuring-algebra-blessett-black-gold">Originally </a>

 posted by Edith Zimmerman  from <a href="http://thehairpin.com/">The Hairpin</a>

    </content>
</entry>
<entry>
    <title>Person-Looking Cat Could Be Yours!</title>
    <link rel="alternate" type="text/html" href="http://dj.riceweevil.com/2012/01/29-week/#067529" />
    <link rel="service.edit" type="application/atom+xml" href="http://mt.riceweevil.com/atom/weblog/blog_id=13/entry_id=67529" title="Person-Looking Cat Could Be Yours!" />
    <id>tag:dj.riceweevil.com,2012://13.67529</id>
    
    <published>2012-02-02T08:00:44Z</published>
    <updated>2012-02-02T20:15:03Z</updated>
    
    <summary>
As Hairpin pal Betty points out, &quot;Harriet Poppleton looks like a person.&quot; Also, her name is HARRIET POPPLETON. It&apos;s hard to believe that the same person who came up with that three years ago could now forsake her. What did...
<br />

<a href="http://feedproxy.google.com/~r/thehairpin/BdYj/~3/39KXLNuoYB8/person-looking-cat-could-be-yours">Originally </a>
 
 posted by Jane Marie 
 from <a href="http://thehairpin.com/">The Hairpin</a>

</summary>
    <author>
        <name>David Jacobs</name>
        <uri>http://www.riceweevil.com/notes/</uri>
    </author>
            <category term="catspetsadoption" />
    
    <content type="html" xml:lang="en" xml:base="http://dj.riceweevil.com/">
        <![CDATA[<p><img title="Screen shot 2012-02-02 at 9.11.01 AM" src="http://thehairpin.com/wp-content/uploads/2012/02/Screen-shot-2012-02-02-at-9.11.01-AM.jpg" alt="" width="210" height="175">As Hairpin pal Betty points out, "Harriet Poppleton looks like a person." Also, her name is HARRIET POPPLETON. It's hard to believe that the same person who came up with that three years ago could now forsake her. What did you do, Harriet? Someone in Portland, preferably not a creep, <a href="http://www.oregonhumane.org/adopt/detail.asp?animalID=122226#.TyrDFSwnW7U.facebook">can adopt her for $12</a>.</p><p>---</p><p>See more posts by <a title="Jane Marie" href="http://thehairpin.com/user/1419/jane-feltes">Jane Marie</a></p><p><a href="http://thehairpin.com/2012/02/person-looking-cat-could-be-yours#comments">37 comments</a></p><img src="http://feeds.feedburner.com/~r/thehairpin/BdYj/~4/39KXLNuoYB8" height="1" width="1">]]>
        
<br />

<a href="http://feedproxy.google.com/~r/thehairpin/BdYj/~3/39KXLNuoYB8/person-looking-cat-could-be-yours">Originally </a>

 posted by Jane Marie  from <a href="http://thehairpin.com/">The Hairpin</a>

    </content>
</entry>

</feed> 
