City Heights Performance Annex and the Friends of the City Heights Branch Library Proudly Present: THE PAYDAY SLAM - This series of events is a poetry performance competition for all ages. Bring your original 3-minute work and get ready to slam. Cash prizes will be awarded. A $3.00 donation is required, and poets and judges enter free. Poets must sign up in person by 7:00 p.m. each event day. The dates are: January 8, February 12, March 12, April 9, May 14, and June 11. Become a Facebook fan of the City Heights Branch Library to get the latest updates on the Slam.


Location: City Heights/Weingart

Posted by City Heights Performance Annex (weblibrary@sandiego.gov) on March 13, 2010 12:00 AM · permalink

  The girls from Scripps Performing Arts Academy will be putting on a Fairy Tale themed show including Little Red Riding Hood, Goldilocks, and Snow White. There will be Ballet, Tap, Acting, and American Sign language!


Location: Clairemont

Posted by Library (ek_contact@plymouthrocket.com) on March 12, 2010 09:00 PM · permalink

  For kids 5 years and older.


Location: Carmel Mountain Ranch

Posted by Library (ek_contact@plymouthrocket.com) on March 12, 2010 08:00 PM · permalink

  Central Library Book Sales - The Central Library's book sales are run by the Friends of the Central Library every Friday, Saturday, and Sunday. Hours are: Friday - 9:30 a.m. - 5 p.m.; Saturday - 9:30 a.m. - 4 p.m.; and, Sunday - 1 - 5 p.m. There are special book items, videos, maps, etc. Prices, unless noted on the items, are: hardbacks $1, large paperback $1, small pocketbooks $.50 or 3 for $1, records and audio cassettes $1, CDs and videos $2. Central Friends (a 501(c)(3) nonprofit corporation) will be happy to receive your tax-deductible donations of new and used books, records, tapes, CDs, etc. to help maintain the Book Sales. Note: Donations may be taken to Central Library during the Book Sale hours only. For special arrangements to pick-up donations, contact Central Friends at 619-236-5836 (machine), or 619-463-4333, or call the Central Library at 619-236-5800. As part of its support for the San Diego Public Library, The City of San Diego has joined all of the Friends' groups in a dollar-for-dollar "Matching Fund" program, to double the amount of your donations. We are grateful for the support. For more information on all our book sales, see our Book Sales Web page.


Location: Central Library

Posted by Central Friends of the Library (ek_contact@plymouthrocket.com) on March 12, 2010 02:30 PM · permalink

 

django-moderation is reusable application for Django framework, that allows to moderate any model objects.

Code can be found at http://github.com/dominno/django-moderation

Possible use cases:

  • User creates his profile, profile is not visible on site. It will be visible on site when moderator approves it.
  • User change his profile, old profile data is visible on site. New data will be visible on site when moderator approves it.

Features:

  • configurable admin integration(data changed in admin can be visible on site when moderator approves it)
  • moderation queue in admin
  • html differences of changes between versions of objects
  • configurable email notifications
  • custom model form that allows to edit changed data of object
  • 100% PEP8 correct code
  • test coverage > 80%

Requirements

python >= 2.4

django >= 1.1

Installation

Download source code from http://github.com/dominno/django-moderation and run installation script:

$> python setup.py install

Configuration

  1. Add to your INSTALLED_APPS in your settings.py:

    moderation

  2. Run command manage.py syncdb

  3. Register Models with moderation

    from django.db import models
    import moderation
    
    
    class YourModel(models.Model):
        pass
    
    moderation.register(YourModel)
    
  4. Register admin class with your Model

    from django.contrib import admin
    from moderation.admin import ModerationAdmin
    
    
    class YourModelAdmin(ModerationAdmin):
        """Admin settings go here."""
    
    admin.site.register(YourModel, YourModelAdmin)
    

If you want to disable integration of moderation in admin, add admin_intergration_enabled = False to your admin class:

class YourModelAdmin(ModerationAdmin):
    admin_intergration_enabled = False

admin.site.register(YourModel, YourModelAdmin)

How django-moderation works

When you change existing object or create new one, it will not be publicly available until moderator approves it. It will be stored in ModeratedObject model.

your_model = YourModel(description='test')
your_model.save()

YourModel.objects.get(pk=your_model.pk)
Traceback (most recent call last):
DoesNotExist: YourModel matching query does not exist.

When you will approve object, then it will be publicly available.

your_model.moderated_object.approve(moderatated_by=user,
                                   reason='Reason for approve')

YourModel.objects.get(pk=1)
<YourModel: YourModel object>

You can access changed object by calling changed_object on moderated_object:

your_model.moderated_object.changed_object
<YourModel: YourModel object>

This is deserialized version of object that was changed.

Now when you will change an object, old version of it will be available publicly, new version will be saved in moderated_object

your_model.description = 'New description'
your_model.save()

your_model = YourModel.objects.get(pk=1)
your_model.__dict__
{'id': 1, 'description': 'test'}

your_model.moderated_object.changed_object.__dict__
{'id': 1, 'description': 'New description'}

your_model.moderated_object.approve(moderatated_by=user,
                                   reason='Reason for approve')

your_model = YourModel.objects.get(pk=1)
your_model.__dict__
{'id': 1, 'description': 'New description'}

Email notifications

By default when user change object that is under moderation, e-mail notification is send to moderator. It will inform him that object was changed and need to be moderated.

When moderator approves or reject object changes then e-mail notification is send to user that changed this object. It will inform user if his changes were accepted or rejected and inform him why it was rejected or approved.

How to overwrite email notification templates

E-mail notifications use following templates:

  • moderation/notification_subject_moderator.txt
  • moderation/notification_message_moderator.txt
  • moderation/notification_subject_user.txt
  • moderation/notification_message_user.txt

Default context:

content_type - content type object of moderated object

moderated_object - ModeratedObject instance

site - current Site instance

How to pass extra context to email notification templates

If you want to pass extra context to email notification methods you new need to create new class that subclass BaseModerationNotification class.

class CustomModerationNotification(BaseModerationNotification):
    def inform_moderator(self,
                     subject_template='moderation/notification_subject_moderator.txt',
                     message_template='moderation/notification_message_moderator.txt',
                     extra_context=None):
        '''Send notification to moderator'''
        extra_context={'test':'test'}
        super(CustomModerationNotification, self).inform_moderator(subject_template,
                                                                   message_template,
                                                                   extra_context)

    def inform_user(self, user,
                    subject_template='moderation/notification_subject_user.txt',
                    message_template='moderation/notification_message_user.txt',
                    extra_context=None)
        '''Send notification to user when object is approved or rejected'''
        extra_context={'test':'test'}
        super(CustomModerationNotification, self).inform_user(user,
                                                              subject_template,
                                                              message_template,
                                                              extra_context)

Next register it with moderation as notification_class:

moderation.register(YourModel, notification_class=CustomModerationNotification)

Signals

moderation.signals.pre_moderation - signal send before object is approved or rejected

Arguments sent with this signal:

sender - The model class.

instance - Instance of model class that is moderated

status - Moderation status, 0 - rejected, 1 - approved

moderation.signals.post_moderation - signal send after object is approved or rejected

Arguments sent with this signal:

sender - The model class.

instance - Instance of model class that is moderated

status - Moderation status, 0 - rejected, 1 - approved

Forms

When creating ModelForms for models that are under moderation use BaseModeratedObjectForm class as ModelForm class. Thanks to that form will initialized with data from changed_object.

from moderation.forms import BaseModeratedObjectForm


class ModeratedObjectForm(BaseModeratedObjectForm):

    class Meta:
        model = MyModel

Any comments ? Feedback ? Feature requests ?

Posted on March 12, 2010 01:50 PM · permalink

  Like just about everyone else, we’ve written our own suite of tools to help with building complex content management systems in Django here at Caktus. We reviewed a number of the existing CMSes out there, but in almost every case the navigation and page structure were so tightly coupled the system broke down when [...]

Posted on March 12, 2010 01:50 PM · permalink

  Published on March 12, 2010 Awkward entrance. Awesome entrance. This time, Ferris Bueller really has left the building.

Posted on March 12, 2010 01:50 PM · permalink

Slashdot  
  scumm writes "This year's Turing Prize has been awarded to Charles Thacker, whom they describe as (among other things) the 'creator of the first modern personal computer.' From the ACM's announcement: 'ACM, the Association for Computing Machinery today named Charles P. Thacker the winner of the 2009 ACM A.M. Turing Award for his pioneering design and realization of the Alto, the first modern personal computer, and the prototype for networked personal computers. Thacker's design, which he built while at Xerox PARC (Palo Alto Research Center), reflected a new vision of a self-sufficient, networked computer on every desk, equipped with innovations that are standard in today's models. Thacker was also cited for his contributions to the Ethernet local area network, which enables multiple computers to communicate and share resources, as well as the first multiprocessor workstation, and the prototype for today's most used tablet PC, with its capabilities for direct user interaction.' For further reading, the Wall Street Journal has an article providing more background about Mr. Thacker and the Turing Prize. In the spirit of full disclosure, the submitter feels compelled to point out that this Mr. Thacker is his uncle, and that he thinks this is really cool."

Read more of this story at Slashdot.

<iframe src="http://slashdot.org/slashdot-it.pl?op=discuss&amp;id=1580414&amp;smallembed=1" style="height: 300px; width: 100%; border: none;"></iframe>


Posted by timothy on March 12, 2010 01:07 PM · permalink

  <img alt="crashbangwallop.jpg" src="http://www.boingboing.net/images/crashbangwallop.jpg" width="595" height="463" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /> I'd love to read this hypothetical sequel to J.G. Ballard's <em>Crash</em>, since Dinos and Jake Chapman have already designed the perfect cover. <a href="http://www.ballardian.com/ambiguous-aims-a-review-of-crash-homage-to-j-g-ballard">"Ambiguous aims": a review of Crash: Homage to J.G. Ballard</a> (NSFW) [Ballardian]<br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=adcef153c308a73233f0f151be949284&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=adcef153c308a73233f0f151be949284&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/TXUg-S5dFXk" height="1" width="1"/>

Posted by Rob Beschizza on March 12, 2010 01:01 PM · permalink

 

A hollowed-out U.S. nickel can hold a microSD card. Pound and euro coins are also available. I blogged about this about a year ago as well.

Posted by schneier on March 12, 2010 12:58 PM · permalink

  Almost every Richard Thompson song could be subtitled, "Watch out!" You never know where it's going next and you always have to be wary, even when he's having fun. Thompson is as familiar with the dark end of the street as any songwriter, he's a singer of uncommon emotion, and as a character in <em>High Fidelity</em>, the first novel by closet rock critic Nick Hornby, notes, he's "England's finest electric guitarist." Thompson is both tasteful and wild; one of three (so far) overlapping box sets of his recordings includes a disc labelled "Epic Live Workouts" that includes precisely zero wankery. "For Shame of Doing Wrong" is one of Thompson's strongest compositions. It began life on <em>Pour Down Like Silver</em>, one of the '70s recordings he co-headlined with Linda Thompson, they recorded it again for the sessions they abandoned in favor of the Joe Boyd-overseen <em>Shoot Out the Lights</em> (a strong candidate for Greatest Album of All Time of the Day), and this version, recorded live in 1985, is Thompson at his best. The lyrics overflow with regret without turning maudlin, the band rocks, and the only thing wrong with the extended guitar solo is that it isn't long enough. Enjoy! <object width="640" height="385"><param name="movie" value="http://www.youtube-nocookie.com/v/vA5Q-IUK1p0&hl=en_US&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/vA5Q-IUK1p0&hl=en_US&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object><br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=c09008ecb30c2c8c3dfaed634b3f30c4&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=c09008ecb30c2c8c3dfaed634b3f30c4&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/cqtr2pIjs7s" height="1" width="1"/>

Posted by Jimmy Guterman on March 12, 2010 12:45 PM · permalink

Slashdot  
  itwbennett writes "Sony on Tuesday 'rolled out the ability to buy HD movies from the PlayStation Network,' writes blogger Peter Smith. Sony claims they're the first service to offer HD titles to own from all six major movie studios. Smith runs the numbers on 'standard' pricing for titles ($19.99 for new releases; $17.99 for older movies), file sizes (ranging from 4 GB for Zombieland to 7.5 GB for 2012), and resolution (720P as far as he can tell)."

Read more of this story at Slashdot.

<iframe src="http://slashdot.org/slashdot-it.pl?op=discuss&amp;id=1580440&amp;smallembed=1" style="height: 300px; width: 100%; border: none;"></iframe>


Posted by Soulskill on March 12, 2010 12:26 PM · permalink

  <p>Calling government budget deficits unsustainable, a top <strong>Federal Reserve</strong> official on Thursday called on national leaders to start laying out plans that would allow a move back to more manageable spending levels.</p> <table class="imgrgtsum" border="0" cellspacing="0" cellpadding="0" width="262" align="right"> <tbody> <tr> <td><img src="http://si.wsj.net/public/resources/images/OB-HP686_dud021_D_20100219121354.jpg" alt="" width="262" height="174" align="right" /></td> </tr> <tr> <td class="medcptnocrd">New York Fed President William Dudley (Reuters)</td> </tr> </tbody> </table> <p>&#8220;Just as there needs to be a credible exit strategy for monetary policy to anchor inflation expectations, there also needs to be a credible exit strategy from fiscal policy stimulus to anchor expectations about the risks of sovereign debt default,&#8221; Federal Reserve Bank of New York President <strong>William Dudley</strong> said Thursday.</p> <p>Much like the very stimulative state of monetary policy, the &#8220;accommodative&#8221; levels of government spending have been &#8220;appropriate&#8221; and in many cases unavoidable, given the shifts in demand seen in national economies, the policy maker said. As for the U.S., &#8220;without substantial fiscal stimulus, the economy would have been even weaker and the unemployment rate considerably higher.&#8221;</p> <p>But even as that&#8217;s the case, governments need to start thinking about and making public plans to get their respective fiscal houses back in order, the official said. Dudley, who is also vice-chairman of the interest rate setting <strong>Federal Open Market Committee</strong>, offered his comments in <a href="http://www.newyorkfed.org/newsevents/speeches/2010/dud100311.htm">the text of a speech</a> prepared for delivery before the <strong>Council of Society Business Economists</strong> Annual Dinner, in London.</p> <p>Dudley made no comment about the outlook for the U.S. economy, or for monetary policy. But his call for forming plans to making government spending more sustainable came at a time where central bankers are also mulling how to unwind a set of policies designed to support a badly wounded economy, one that needed zero% interest rates and intensive interventions into markets.</p> <p>Dudley&#8217;s case for government fiscal sustainability essentially argued national leaders need to make decisions now, so that markets don&#8217;t make the call later.</p> <p>When it comes to things like U.S. government debt, &#8220;market participants appear to be quite tolerant of the current large fiscal imbalance.&#8221; But thinking this will continue is &#8220;a risky strategy because it fully exposes the economy to the vagaries of market sentiment and because shifts in such sentiment can have important consequences for both the deficit path and the economy,&#8221; Dudley warned.</p> <p>To be sure, the central banker said he was not calling for some imminent shift in government spending patterns. &#8220;The economic recovery is still very fragile&#8221; and &#8220;premature fiscal retrenchment could jeopardize the recovery and push a convalescent economy into a double-dip recession,&#8221; he said. The official added any plan should be phased in slowly.</p> <p>Much of the rest of the official&#8217;s speech centered on issues of financial regulatory overhaul and the need to rebalance world economies.</p> <p>Dudley noted &#8220;the international consensus to harmonize standards globally appears fragile.&#8221; He added, &#8220;If each country acts to strengthen its financial system in an uncoordinated way, we will be left with a balkanized system, riddled with gaps that encourage regulatory arbitrage.&#8221;</p> <p>As many Fed officials have done, Dudley also argued against efforts to strip the central bank of its bank oversight powers. &#8220;The Federal Reserve is particularly well suited to this role,&#8221; one with the added benefits of aiding the central bank in its lender-of-last-resort role, and in its job of making monetary policy, Dudley said.</p> <p>The official also said the longer-run growth outlook would be better if consumption patterns were higher in emerging economies, and lower in the U.S. over a long run period. He warned that current patterns, which see a massive outflow of dollars to nations like China, are problematic, saying &#8220;a number of countries have surely reached a point at which further reserve accumulation comes with more costs than benefits.&#8221;</p> <p>Dudley also argued for more transparency across the financial system, particularly in things like the trading of derivative securities.</p> <p>&#8220;If regulators had ready access to current OTC derivatives transaction information in trade repositories, I suspect that this would serve as a brake on the use of OTC derivatives that are used for more questionable purposes,&#8221; Dudley said.</p> <p><a href="http://feedads.g.doubleclick.net/~at/SIt15Szw9b_K5ksP5aOyGXaS7ZY/0/da"><img src="http://feedads.g.doubleclick.net/~at/SIt15Szw9b_K5ksP5aOyGXaS7ZY/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~at/SIt15Szw9b_K5ksP5aOyGXaS7ZY/1/da"><img src="http://feedads.g.doubleclick.net/~at/SIt15Szw9b_K5ksP5aOyGXaS7ZY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/wsj/economics/feed?a=SNB7EdDMVTM:LLtjz8J1OHM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wsj/economics/feed?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wsj/economics/feed?a=SNB7EdDMVTM:LLtjz8J1OHM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/wsj/economics/feed?i=SNB7EdDMVTM:LLtjz8J1OHM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wsj/economics/feed?a=SNB7EdDMVTM:LLtjz8J1OHM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wsj/economics/feed?i=SNB7EdDMVTM:LLtjz8J1OHM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wsj/economics/feed?a=SNB7EdDMVTM:LLtjz8J1OHM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wsj/economics/feed?d=qj6IDK7rITs" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/wsj/economics/feed/~4/SNB7EdDMVTM" height="1" width="1"/>

Posted on March 12, 2010 12:18 PM · permalink

  <p>I keep intending to retain &#8220;ask the readers&#8221; as a regular Friday feature &mdash; and I keep failing. You folks send me tons of great questions, and I&#8217;d love to share more of them. This week, for example, Lisa wrote with the following. </p> <p>&#8220;Having kids has made spending choices much more emotional and complex,&#8221; she says. &#8220;You can&#8217;t always calculate a return on investment.&#8221; Here&#8217;s her predicament:</p> <blockquote><p> My husband and I are looking to purchase a home in our new city, but we&#8217;re having trouble deciding where our values, finances, and priorities intersect. </p> <p>We have young children, one who will start public school this year. We&#8217;re considering buying a home in a modest neighborhood so we could have a house/car replacement fund available, rather than taking all of the down payment money and putting it in a &#8220;better&#8221; house. The schools in the neighborhood are solid, but not the best in the district. If we buy in this smaller, less fancy area, we can choose a 15-year mortgage, minimize our overall house expenses, and have more money for all of life&#8217;s priorities. But, it feels like we&#8217;re &#8220;cheaping out&#8221; on the kids.</p> <p>To compound our &#8220;analysis paralysis&#8221;, we lost a fair amount of equity when we had to sell our house to transfer out of state, so we&#8217;re feeling less than enamored with the idea of putting money that is currently liquid into a building that isn&#8217;t guaranteed to hold its value, much less appreciate. (We have no car/consumer debt, and we have a comfortable emergency fund.) </p> <p>I think our family might feel more comfortable in a more modest neighborhood with more coupon-clipping parents and kids who don&#8217;t have the latest and greatest, but I also want my children to have a great education. <b>Have other parents faced this battle, doing what&#8217;s best for the overall budget vs. doing what&#8217;s expected for our kids?</b> We&#8217;d love to hear how it worked out for you. </p></blockquote> <p>I love questions like this. They&#8217;re a clear demonstration that personal finance isn&#8217;t only about the numbers; it involves a complex calculus of math, emotions, and dreams.</p> <p>Most of the time, I can offer suggestions when people ask these sorts of questions. But when it comes to kids, I&#8217;m at a loss. Kris and I have chosen to remain childless, and as a result, I&#8217;ve never had to wrestle with these sorts of sticky issues.</p> <p>From a non-parent perspective, I admit that the obsession over which school a kid will attend seems&#8230;well, I don&#8217;t know how to put it in words that won&#8217;t make people angry. But I&#8217;ve watched friends and family go through mental and financial gyrations to get their kids into the right <i>pre</i>-schools, which boggles my mind. I&#8217;m a firm believer that education is more about the child than it is about the school. If a kid has been taught to love and value learning, she can thrive almost anywhere. </p> <p>In other words, I&#8217;d urge Lisa to make her decision based on finances and not the school district. This may mean she needs to take a more active role in fostering her children&#8217;s intellectual curiosity, but that&#8217;s a good thing all the way around. But what do I know? As I say, I don&#8217;t have kids, and I don&#8217;t know what it&#8217;s like to actually face this decision. It&#8217;s one thing to say it and another to live it.</p> <p>So, what do you parents say? <b>How do you judge the trade-off between expenses and education?</b> Is it worth paying more to live in a good school district? How does one make this sort of decision?</p> <p>---<br />Related Articles at Get Rich Slowly:<ul><li><b><a href="http://www.getrichslowly.org/blog/2006/07/09/workshop-for-kids/" rel="bookmark" title="Permanent Link: Workshop for Kids">Workshop for Kids</a></b><li><b><a href="http://www.getrichslowly.org/blog/2007/04/06/links-for-2007-04-06/" rel="bookmark" title="Permanent Link: links for 2007-04-06">links for 2007-04-06</a></b><li><b><a href="http://www.getrichslowly.org/blog/2007/03/26/links-for-2007-03-26/" rel="bookmark" title="Permanent Link: links for 2007-03-26">links for 2007-03-26</a></b><li><b><a href="http://www.getrichslowly.org/blog/2007/03/31/links-for-2007-03-31/" rel="bookmark" title="Permanent Link: links for 2007-03-31">links for 2007-03-31</a></b><li><b><a href="http://www.getrichslowly.org/blog/2006/11/08/how-do-you-teach-kids-the-value-of-money/" rel="bookmark" title="Permanent Link: How Do You Teach Kids the Value of Money?">How Do You Teach Kids the Value of Money?</a></b></ul></p><br /> <p><a href="http://feedads.g.doubleclick.net/~a/kQ3N_h79QxGwe80aFXcZNHAhssU/0/da"><img src="http://feedads.g.doubleclick.net/~a/kQ3N_h79QxGwe80aFXcZNHAhssU/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~a/kQ3N_h79QxGwe80aFXcZNHAhssU/1/da"><img src="http://feedads.g.doubleclick.net/~a/kQ3N_h79QxGwe80aFXcZNHAhssU/1/di" border="0" ismap="true"></img></a></p><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/getrichslowly?a=c12nh54XXWs:DUYMc9c38gQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/getrichslowly?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/getrichslowly?a=c12nh54XXWs:DUYMc9c38gQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/getrichslowly?i=c12nh54XXWs:DUYMc9c38gQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/getrichslowly?a=c12nh54XXWs:DUYMc9c38gQ:69LSlcDtVW8"><img src="http://feeds.feedburner.com/~ff/getrichslowly?d=69LSlcDtVW8" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/getrichslowly?a=c12nh54XXWs:DUYMc9c38gQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/getrichslowly?i=c12nh54XXWs:DUYMc9c38gQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/getrichslowly?a=c12nh54XXWs:DUYMc9c38gQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/getrichslowly?i=c12nh54XXWs:DUYMc9c38gQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/getrichslowly?a=c12nh54XXWs:DUYMc9c38gQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/getrichslowly?i=c12nh54XXWs:DUYMc9c38gQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/getrichslowly?a=c12nh54XXWs:DUYMc9c38gQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/getrichslowly?d=qj6IDK7rITs" border="0"></img></a> </div>

Posted by J.D. Roth on March 12, 2010 12:00 PM · permalink

  Is there a way to find the memory usage of python processes?<br /><br />Trying to find some portable way of doing this. However, so far I think a new module might be needed...<br /><br />I've got linux mostly covered, but maybe you know how with freebsd, OSX, windows(9x-7)?<br /><br />So is there something built into python already? Is there a X-platform third party module already? Or a module just for one platform available?<br /><br /><img id="renef0o" src="http://rene.f0o.com/renef0o.gif" height="24" width="32" border="0" /><div class="blogger-post-footer"><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/10678074-7981061079612882083?l=renesd.blogspot.com" alt="" /></div>

Posted on March 12, 2010 11:48 AM · permalink

Slashdot  
  judgecorp writes "Harriet Harman, the deputy leader of the Labour Party, has said that UK government ministers are 'taking action' to get Facebook to add a British child protection button (called CEOP) to its site. The move comes after the UK's Daily Mail withdrew allegations that teenagers on Facebook are continually pestered — though Facebook is still considering suing the paper. The campaign apparently ignores Facebook's assertion that it already has better child protection in place and the CEOP button would be limited to the UK."

Read more of this story at Slashdot.

<iframe src="http://slashdot.org/slashdot-it.pl?op=discuss&amp;id=1580094&amp;smallembed=1" style="height: 300px; width: 100%; border: none;"></iframe>


Posted by timothy on March 12, 2010 11:40 AM · permalink

  <p>In a 11 March rediff article titled &#8220;<a href="http://getahead.rediff.com/report/2010/mar/11/achievers-interview-with-arun-shourie.htm">Mediocrity has become the norm</a>&#8220;, the transcript of an interview of Arun Shourie makes interesting reading. I especially like his views on how Indian education has to change.<br /> <span id="more-3850"></span></p> <p>Excerpts: </p> <blockquote><p>I have been very fortunate, meaning I have not had to struggle with poverty so to say. I am the son of a very honest civil servant, a very creative one. But I struggled against authority, which would mean governments, dominant intellectual fashions etc. For instance, when everybody was a socialist, I felt that those controls, and the License Quota Raj is going to cost us a generation and everybody condemned what I wrote at that time. </p></blockquote> <p>The other evening at a dinner someone defended Mr Nehru. I had said that Nehru was clueless about economics: he insisted on a socialistic centrally planned economy and that it was a disaster. The other person said that Nehru went for socialistic planning because that was the fashion those days. </p> <p>Yes, it may have been the fashion among ignorant retards. People who have vision and are intelligent see beyond the fashions of their time. They are leaders, not people who don&#8217;t know that they don&#8217;t know. </p> <p>But let me not go on a rant on Nehru. There will be world enough and time.</p> <p>Shourie: </p> <blockquote><p> . . . much of the change is brought about by very small elites. The great masses of India [ Images ] can&#8217;t produce metal alloys that are needed for rocketry, for missiles, for the Arjun tank. So, we must respect elitism when it is based on merit and competence. Now, mediocrity has become the norm. Intimidation has become argument, and assault has become proof. Because I can assault you therefore I am right.</p> <p>So, I am much for elitism, which is based on opportunity or everybody, positive help for everybody. And, based entirely on performance and merit. The current, reducing elitism to be a prerogative (sic) word has come entirely from this Leftist discourse. Which is, under the guise of equality, you pull down the standards. And anyone who has achieved something, you say, damn fool, elitist.</p></blockquote> <p>I am sure that Shourie must have said &#8220;pejorative&#8221; and someone not too familiar with English took it as &#8220;prerogative.&#8221; </p> <p>Anyway, the UPA government is doing its best to drag India back to some Gandhian state of innocence and purity where &#8220;spiritual&#8221; values fill the empty stomachs of Indians. The race to the bottom will see India at the bottom soon enough.</p> <p>In 1982, I learn from the interview that Mrs Indira Gandhi got on Shourie&#8217;s case and got him fired from his newspaper job. That&#8217;s how dictators behave &#8212; if they don&#8217;t like what you write, they make life miserable for you. </p> <p>Mrs Gandhi was a ruthless person. Her name is plastered over all sorts of schemes, roads, airports, and institutions. But Indians actually celebrate the triumphs of those who raped India &#8212; Aurangzeb is one such. Go to Delhi and drive around Mother Teresa Crescent. Another ruthless person. </p> <p>Moving along, here&#8217;s what Shourie feels about private entrepreneurs in education </p> <blockquote><p> . . . they will come only if there is profit involved. But, they will not be able to build an institute, an institution of excellence, if they keep interfering and running it as a business. A good model is American institutions; they are all set up by millionaires. Somebody gives a million dollars, someone donates acres of land. But, after that he doesn&#8217;t interfere, he has that self-restraint to leave it to professionals, each of whom has been selected on the only criteria of their extreme dedication to education. </p> <p>. . . My regret is that a larger number of Indian industrialists who have done well and set up institutes of excellence in their own industries have not done the same thing in education. I am quite hopeful that the new breed of entrepreneurs are self-made men, who did not have much money to begin with but are now billionaires.</p> <p>If they are enabled to come into the field of education, they will bring the same spirit into education; that is my plea. If we don&#8217;t do that, the field will be open to racketeers, they will definitely come in and fill up the vacuum. That is the scene as of now, which happens in every society.</p></blockquote> <p>To the question of appropriate policy framework, Shourie says</p> <blockquote><p>The greater freedom to persons of worth to set up educational institutions, is one. But, at the same time strong rating agencies which are not in the hands of anybody, they are free spirits. True rating agencies, regulations but ratings that will put pressure for excellence. Some of those will be corrupted, no doubt.</p> <p>Racketeers will suborn those who are doing the rating. But, some will arise among them saying &#8216;No, our future depends, even our business future depends on being a credible rating.&#8217; Second thing that will improve standards is surfeit of supply. Today, racketeers are prospering, because there is a shortage. That is how regulaters get corrupt.</p></blockquote> <p>I have proposed that India should have an Education Regulatory Authority. See this post &#8220;<a href="http://www.deeshaa.org/2004/10/05/a-modest-proposal-part-3/">A Modest Proposal to Make India 100 percent Literate in 3 years.</a>&#8221; That post is around 6 years old. </p> <p>Then Shourie is asked what he would do to bring about change.</p> <blockquote><p>To clean up the regulators, because that is the most accessible thing that a Minister can first do, UGC, AICTE and all. The main thing would be to encourage a large number of publications and freelancers to monitor their contributions. That would go a long way. Third, to do everything possible to turn our education system to the future. It&#8217;s not looking far enough, in terms of the syllabi, that&#8217;s very important.</p> <p><strong>Probably use technology to get over the shortage of good teachers. </strong>That&#8217;s very possible today and that would be a quick way to multiply quality in India. We can use institutions which are known for excellence to do their corporate social responsibility by becoming places to upgrade teacher quality in their regions.</p></blockquote> <p>I have added the emphasis in the last para quoted above. I have been working on precisely that for the last few years. </p> <p>Mr Shourie is good. That is why India is unlikely to have him as the prime minister. A flock of sheep will not vote to have a lion as their leader. </p>

Posted by Atanu Dey on March 12, 2010 10:34 AM · permalink

Slashdot  
  lilbridge writes "Huge reserves of "combustible ice" — frozen methane and water — have been discovered in the tundra of the Qinghai-Tibet Plateau in China. Estimates show that there is enough combustible ice to provide 90 years worth of energy for China. Burning the combustible ice may be a far better alternative than letting it just melt, releasing tons of methane into the air."

Read more of this story at Slashdot.

<iframe src="http://slashdot.org/slashdot-it.pl?op=discuss&amp;id=1580392&amp;smallembed=1" style="height: 300px; width: 100%; border: none;"></iframe>


Posted by timothy on March 12, 2010 10:00 AM · permalink

S Anand  
  <p>A cool thing about <a href="http://docs.google.com/">Google Spreadsheets</a> is that you can scrape websites using <a href="http://docs.google.com/support/bin/answer.py?hl=en&amp;answer=75507">external data functions</a> like importHtml. It’s really easy to use. The formula:</p> <pre>=importHtml("http://www.imdb.com/chart/top", "table", 1)</pre> <p>imports the <a href="http://www.imdb.com/chart/top">Internet Movie Database top 250</a> table on to Google Spreadsheets.</p> <p>Since you can <a href="http://www.mmmeeja.com/blog/web-development/google-spreadsheets-rss.html">publish these as RSS feeds</a>, it ought to, in theory, be a great way of generating RSS feeds out of arbitrary content.</p> <p>There’s just one problem: <a href="http://www.google.com/support/forum/p/Google%20Docs/thread?tid=46676d88b38e0c50&amp;hl=en">it doesn’t auto update</a>.</p> <p>There are claims that it does <a href="http://www.google.com/support/forum/p/Google%20Docs/thread?tid=061199840171feea&amp;hl=en">every</a> <a href="https://docs.google.com/View?docID=dhrr6ms2_523cs7274fv&amp;pageview=1&amp;hgd=1">hour</a>. Maybe it does <em>when the sheet is open</em>. I don’t know. But it definitely does not when the sheet is closed. I wrote a simple script that logs the time at which the script was accessed, and prints the log every time it is accessed.</p> <div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">#!/usr/bin/env python</span> &nbsp; <span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">datetime</span>, <span style="color: #dc143c;">os</span>.<span style="color: black;">path</span> &nbsp; <span style="color: #ff7700;font-weight:bold;">print</span> <span style="color: #483d8b;">'Content-Type: text/plain; charset=utf-8'</span> <span style="color: #ff7700;font-weight:bold;">print</span> <span style="color: #483d8b;">''</span> &nbsp; logfile = <span style="color: #483d8b;">'timenow.log'</span> <span style="color: #ff7700;font-weight:bold;">try</span>: timelog = <span style="color: #008000;">open</span><span style="color: black;">&#40;</span>logfile<span style="color: black;">&#41;</span>.<span style="color: black;">readlines</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span> <span style="color: #ff7700;font-weight:bold;">except</span>: timelog = <span style="color: black;">&#91;</span><span style="color: black;">&#93;</span> timelog.<span style="color: black;">append</span><span style="color: black;">&#40;</span><span style="color: #008000;">str</span><span style="color: black;">&#40;</span><span style="color: #dc143c;">datetime</span>.<span style="color: #dc143c;">datetime</span>.<span style="color: black;">now</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span><span style="color: black;">&#41;</span> + <span style="color: #483d8b;">'<span style="color: #000099; font-weight: bold;">\n</span>'</span><span style="color: black;">&#41;</span> <span style="color: #008000;">open</span><span style="color: black;">&#40;</span>logfile, <span style="color: #483d8b;">'w'</span><span style="color: black;">&#41;</span>.<span style="color: black;">writelines</span><span style="color: black;">&#40;</span>timelog<span style="color: black;">&#41;</span> <span style="color: #ff7700;font-weight:bold;">print</span> <span style="color: #483d8b;">''</span>.<span style="color: black;">join</span><span style="color: black;">&#40;</span>timelog<span style="color: black;">&#41;</span></pre></div></div> <p>Then I importHtml’ed it into Google spreadsheets, and left it on for the night. Result: absolutely no hits when the document is closed.</p> <p>Pity. Guess <a href="http://developer.yahoo.com/yql/">YQL</a> is still the best option.</p> <img src="http://feeds.feedburner.com/~r/sanand/~4/nbjE7yIRKVI" height="1" width="1"/>

Posted by S Anand on March 12, 2010 09:54 AM · permalink

 

I received an email today from ExecSense Webinars advertising a course on "How to Create a Personal Brand as a Venture Capitalist." That's right, for $250, I can learn "specific ways to use speaking engagements, published articles and social media web sites as a way to establish [myself] as a thought leader." Who knew it was so easy?

VCs don't often talk about brand. Brand is a dirty word in the venture business. Yet just today I had two different conversations about VC marketing. The first conversation was with Jennifer Jones. Jennifer has been working with VCs on marketing for two decades now. And she's really good at it. I suspect that in a VC marketing death match, Jennifer would pretty handily crush ExecSense Webinars. She wouldn't talk about generic speaking engagements and social media websites. She would talk about finding "your people" (my phrase) and how to reach them in genuine, engaging and unique ways. She would know that anything you can learn in a VC marketing webinar is insufficiently differentiated to have a real impact. She would know that Venture Capital is a people business and VC marketing is about connecting with people, not giving some soulless speech at an industry event.

The second conversation I had was at lunch with a couple of friends in the VC business. We were chatting about early stage investors and got to talking about Josh Kopelman. I made the assertion that Josh was the best marketer in all of venture capital, to which one of my lunch companions replied "he's a marketing savant." Trust me, it was pure admiration. If you want to appreciate what "people marketing" is all about, ask a few entrepreneurs what they think of Josh Kopelman and First Round Capital. Josh understands how to connect with "his people" and make a splash. Remember, this is the very same guy who convinced a little town in Oregon to change its name to "Half.com" and to feel good about it.

If you want to see what successful VC marketing looks like, take a few minutes and watch the First Round Capital holiday videos. You'll see a group of entrepreneurs who like their investors so much that they are willing to do embarrassing things on their behalf (including dancing and singing). In a three minute video, you see the slew of great companies that First Round has backed, as well as the powerful relationship that the First Round team has with their entrepreneurs.

None of this is to suggest that you VCs out there should go make a dance video with your portfolio companies. Nor will I be convincing a small town in the Pacific Northwest to change its name to "August Capital, Oregon" any time soon. But it is worth thinking about how we as VCs are perceived by the entrepreneurial community and how we might better connect with those folks. The Venture business is a people business and VC marketing is all about the people. So there is no more powerful way to build a brand than to garner a well-earned reputation as a supportive, thoughtful, helpful participant in the company-building ecosystem. No number of clever videos or slogans, or even speeches on the rubber chicken circuit, can replace the power of entrepreneurs singing your praises. So forget the webinar and focus on what matters -- bringing real value to the people around you. That's what Venture Capital brand building is all about.

Posted by David Hornik on March 12, 2010 09:36 AM · permalink

  Kiwi PyCon 2010 - November 20-21, Copthorne Hotel &amp; Resort Bay of Islands

Posted on March 12, 2010 09:16 AM · permalink

  <p><a href="http://passionforcinema.com/harry-brown-movie-review/harry-brown/" rel="attachment wp-att-29747"><img src="http://passionforcinema.com/wp-content/uploads/Harry-Brown.jpg" alt="" title="Harry-Brown" width="500" height="373" class="aligncenter size-full wp-image-29747" /></a><strong> </strong></p> <p><strong> Post contains some spoilers</strong></p> <p>As the world around us is becoming smaller with each passing day, it is also becoming more dangerous and vulnerable to various kinds of threats and this thought itself is scary .Different kinds of  dangerous people and elements,groups ,organisations are surrounding  us from various corners and this is making us all the more vulnerable and scared.</p> <p><span>The idea of a perfect world is diminishing and getting bleaker with each passing day.  <strong>Harry Brown</strong> starring  Michael <span>Caine</span> depicts this world in a very real and chilling  way. Set in present day Britain, the film focuses on a bunch of neighborhood street thugs who are making life hell for the residents . Where the thugs are creating menace with gleeful abandon and the police are nothing more than mere spectators.</span></p> <p>The storyline of the film shares certain similarities with Clint Eastwood&#8217;s <strong>Gran</strong> <strong><span><span>Torino</span></span></strong><span>. But while Gran <span>Torino</span> looked at a similar issue in a rather subtle way, Harry Brown takes an uncompromising , unapologetic and a more gritty look at the issue.</span></p> <p><span><strong> Michael Caine</strong> plays an ex-mariner who decides to take on the thugs by himself after his friend is killed and the cops aren&#8217;t doing much either.</span></p> <p>The storyline may be quite ordinary but what sets the film apart from other similarly themed films is the direction by Daniel Barber.And a good screenplay by Gary Young which tries to depict the things as realistically as possible.</p> <p>The atrocities committed by the thugs is depicted in a very disturbing and real way.</p> <p>The opening scene itself is a proof of this which shows a bunch of thugs consuming drugs, getting and high and in this intoxicated state kill the mother of a 5 year old child and end up getting themselves killed by a speeding truck. The scene has been shot in such a way that it resembles a footage from a mobile phone and  this gives it an even more disturbing effect.</p> <p><span>The film  begins on a slow note, perhaps to depict the boring lonely everyday life of a pensioner (<strong><span>Caine</span></strong>)  who doesn&#8217;t have much zest for life and goes with his usual chores like having his breakfast, watching the television with least interest and whose wife is nearing her end.  However the film gains momentum when his friend (David Bradley) is killed by the thugs and after not getting any justice for his friend he decides to take the law into his own hands.</span></p> <p><span>For quite some time in the film, the scenes involving the thugs are shot in such a way which gives <span>Caine&#8217;s</span> character an outsider&#8217;s perspective and not really giving us a direct insight into the misdeeds of the thugs. This makes the proceedings even more interesting for you really don&#8217;t know what the thugs are actually upto , but this depiction is enough to make the audience aware that things are not going to be easy.</span></p> <p><span>The film is also shot in a very dark and bleak tone, perhaps to highlight the sorry and grim state of affairs surrounding us . The transition of <span>Caine&#8217;s</span> character from a sad and grieving loner to an angry vigilante determined to set things straight is done in a right and effective way.</span>Caine&#8217;s character is not at all computer savvy, uses the most basic of guns and ammo which makes his character more identifiable.</p> <p><a rel="attachment wp-att-29659" href="http://passionforcinema.com/harry-brown-movie-review/harry-brown-michael-caine-02/"><img class="aligncenter size-medium wp-image-29659" src="http://passionforcinema.com/wp-content/uploads/harry-brown-michael-caine-02-200x133.jpg" alt="" width="320" height="212" /></a></p> <p><span>The action scenes are also shot in a very realistic and logical way keeping in mind that the film centers around an aged protagonist trying to defend himself and hoping for a better tomorrow by  trying to set things straight . And not someone <span>ala</span> Rambo or a Commando who has turned into a merciless killing machine. </span></p> <p><span>There is a scene in the film in which <span>Caine</span> goes to buy a gun from a shady dealer , but after reaching the dealer&#8217;s place he is disgusted by the filth surrounding the dealers home which involves a drugged out girl who has been captured on camera having sex by the dealer and is now in a drugged state and the dealer also offers <span>Caine</span> a chance to sleep with her for a meagre sum of money. This sad state of affairs  angers <span>Caine</span> no end who decides to kill the dealer and rescue the girl before leaving. The way the entire scene has been shot is remarkable and also the way <span>Caine&#8217;s</span> character kills the dealer is gut wrenching. The way in which Caine and the actor playing the dealer have performed the scene is remarkable.<br /> </span></p> <p><span>I have never seen Michael <span>Caine</span> in a role this nasty or gritty ever before. <strong>Michael <span>Caine</span></strong> is simply superb as the lonely widower who suddenly finds a cause to live for after his only friend dies. The way <span>Caine</span> has depicted the loneliness , helplessness and anger of the character is simply superb. Watch him in the scenes in which he breaks after learning about his wife and his friend&#8217;s demise . Or the scene in which he watches the video clip of his friend being killed by the thugs is also superb.  The varied emotions which he displays  in the scene while depicting his anger and a desire to seek revenge is simply superb. <span>Caine</span> shows that he can still kick ass old school style. The youngsters led by actor  <strong>Ben Drew</strong> are perfect in their depiction of the thugs. They portray their characters with the right amount of nastiness and menace invoking sheer disgust for their characters.</span></p> <p><span>Although towards the end film becomes somewhat predictable , but for most of the times the film is a gripping watch which is complemented by <span>Caine&#8217;s</span> excellent performance. In a nutshell, Harry Brown is a recommended watch.</span></p> <br /><div><img src="http://passionforcinema.com/wp-content/plugins/gd-star-rating/gfx.php?type=thumbs&value=0" /></div><div>Score: 0 (0 votes cast)</div><br /> <p><a href="http://feedads.g.doubleclick.net/~a/ZI8FoWzxj-s78U_GL-zdRTsW-PM/0/da"><img src="http://feedads.g.doubleclick.net/~a/ZI8FoWzxj-s78U_GL-zdRTsW-PM/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~a/ZI8FoWzxj-s78U_GL-zdRTsW-PM/1/da"><img src="http://feedads.g.doubleclick.net/~a/ZI8FoWzxj-s78U_GL-zdRTsW-PM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=dH7m8IW4yD0:qZToGE2O2Ew:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/passionforcinema?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=dH7m8IW4yD0:qZToGE2O2Ew:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/passionforcinema?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=dH7m8IW4yD0:qZToGE2O2Ew:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/passionforcinema?i=dH7m8IW4yD0:qZToGE2O2Ew:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=dH7m8IW4yD0:qZToGE2O2Ew:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/passionforcinema?i=dH7m8IW4yD0:qZToGE2O2Ew:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=dH7m8IW4yD0:qZToGE2O2Ew:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/passionforcinema?i=dH7m8IW4yD0:qZToGE2O2Ew:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=dH7m8IW4yD0:qZToGE2O2Ew:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/passionforcinema?d=yIl2AUoC8zA" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/passionforcinema/~4/dH7m8IW4yD0" height="1" width="1"/>

Posted by Aditya Savnal on March 12, 2010 09:14 AM · permalink

ongoing  
  <p>Assignment for <a href="http://dailyshoot.com/assignments/116">Dailyshoot 116</a> on 2010/03/11: “"Rules" can be stifling if taken to extremes. Break the rules today with focus, composition, etc, and see what happens.”</p> <img src="ds116.png" alt="Urban Colors"></img> <p>This is Railspur Alley on Granville Island; the picture exhibits no fidelity whatever to the actually fairly interesting albeit soft shades of this much-patched wall.</p>

Posted on March 12, 2010 09:05 AM · permalink

  <p><a rel="attachment wp-att-29762" href="http://passionforcinema.com/editors-pick-the-mary-and-the-blast-of-silence/editors-pic-copy-6/"><img class="alignleft size-medium wp-image-29762" title="editor's pic PFC" src="http://passionforcinema.com/wp-content/uploads/editors-pic-copy5-195x250.jpg" alt="" width="195" height="250" /></a>Its been a tough time for the editor&#8217;s to pick the best post. This time again we have a tie between two posts:</p> <p><a href="http://passionforcinema.com/author/prasanthvijay/" target="_blank">Prasnth Vijay</a>&#8217;s post <a href="http://passionforcinema.com/the-virgin-marys-of-cinema/" target="_blank">The Virgin Mary&#8217;s of Cinema</a> and <a href="http://passionforcinema.com/author/sid/" target="_blank">Siddharth Pillai</a>&#8217;s post <a href="http://passionforcinema.com/blast-of-silence-scream-went-the-night-that-nobody-heard/" target="_blank">Blast of Silence: Scream went the Night that Nobody Heard</a> are this time&#8217;s Editor&#8217;s pick(s). Special Mention for <a href="../author/fazil/" target="_blank">Fazil</a>&#8217;s <a href="../michael-hanekes-funny-games/" target="_blank">Funny Games review</a></p> <p><strong>Congratulations to all!</strong></p> <p>About <strong>Siddharth</strong>&#8217;s posts, you sometimes get confused if you are reading a book, a film script or a blog post <img src='http://passionforcinema.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   The impressive postmodern impressions that go in the post are a treat too.  Fantastic writing and great analysis of cinema. Blast of Silence is such a review.</p> <blockquote><p>‘Blast of Silence’, one of the first independent American productions, a contemporary of John Cassavetes’ ‘Shadows’, offers an unflinching stare that brings in the burn. Frankie Bono’s isolation and detachment is no ‘be cool’, neither can it afford to be something as a warm and righteous as a ‘code of conduct’ a la Melville. Circumstances, society, what makes the world tick- a man simply cannot afford to be anything other than a cold, calculating machine.</p></blockquote> <p><strong>Prasanth</strong>&#8217;s post brought out an interesting coincidence of two ex-wife filmmakers making it big. His analysis on both <strong>Kathryn Bigelow</strong> and <strong>Nina Palley</strong> are well thought out.</p> <blockquote><p>The similarities between personal and creative courses of Kathryn and Nina seem really uncanny. Both were already established artists when their husbands left them. Both preferred to remain unmarried, caressing their pets and their creativity. In art, both took up topics which were very unlikely for them- be it the Explosive Ordnance Disposal team in Iraq or the Indian epic, Ramayana. But most remarkably, both were able to finish their works with minimum interference on their creativity.</p></blockquote> <p><strong>Special Mention</strong>: Another post that was considered heavily by the panel was <strong>Fazil</strong>&#8217;s <strong>Funny Games review</strong>. A very good write up on an important film about violence as how Haneke sees it. Good writing!</p> <br /><div><img src="http://passionforcinema.com/wp-content/plugins/gd-star-rating/gfx.php?type=thumbs&value=0" /></div><div>Score: 0 (0 votes cast)</div><br /> <p><a href="http://feedads.g.doubleclick.net/~a/DqfnLV8Srifph_l_dYP9uEF2nsM/0/da"><img src="http://feedads.g.doubleclick.net/~a/DqfnLV8Srifph_l_dYP9uEF2nsM/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~a/DqfnLV8Srifph_l_dYP9uEF2nsM/1/da"><img src="http://feedads.g.doubleclick.net/~a/DqfnLV8Srifph_l_dYP9uEF2nsM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=zNClnnV1o-w:3KsdrGnv_XE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/passionforcinema?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=zNClnnV1o-w:3KsdrGnv_XE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/passionforcinema?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=zNClnnV1o-w:3KsdrGnv_XE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/passionforcinema?i=zNClnnV1o-w:3KsdrGnv_XE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=zNClnnV1o-w:3KsdrGnv_XE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/passionforcinema?i=zNClnnV1o-w:3KsdrGnv_XE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=zNClnnV1o-w:3KsdrGnv_XE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/passionforcinema?i=zNClnnV1o-w:3KsdrGnv_XE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=zNClnnV1o-w:3KsdrGnv_XE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/passionforcinema?d=yIl2AUoC8zA" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/passionforcinema/~4/zNClnnV1o-w" height="1" width="1"/>

Posted by PFCdesktop on March 12, 2010 08:53 AM · permalink

Slashdot  
  An anonymous reader writes "Another one bites the dust, as New Zealand's Internet filter stealthily goes live with two smaller ISPs, and three of the largest already rumoured to have signed up to do the same. However, US Secretary of State Hillary Clinton is apparently 'committed to helping people to circumvent government internet filtering,' so perhaps the USA will launch an invasion to free the poor downtrodden Kiwis from their own evil government?" Clever of one of the acquiescing ISPs to have named itself "Watchdog."

Read more of this story at Slashdot.

<iframe src="http://slashdot.org/slashdot-it.pl?op=discuss&amp;id=1580348&amp;smallembed=1" style="height: 300px; width: 100%; border: none;"></iframe>


Posted by timothy on March 12, 2010 08:36 AM · permalink

  The latest in tech news and hot product reviews. Laptop Users: Turn Off Your Wi-Fi--Laptops are being stolen using Wi-Fi-detection techniques; New NVIDIA ION Netbooks--Products feature great battery life and superior performance; V-Moda Vibe II Earphones with Microphone--Perfect for when you want both great sound and the ability to carry on a phone conversation.

Posted by Charles Carr on March 12, 2010 08:00 AM · permalink

  Managing Programs and Files Find those misplaced files on your Mac with the handy Finder, Spotlight tool, or nifty organizational features like color-coding. Also, Microsoft has chosen to promote two mobile phone systems that aren't compatible with each other; building an iPhone app quickly and easily with Runtime Revolution's revMobile; a Penguin Books' demonstration shows the interactive power of the iPad; the future is coming for Microsoft--in 2003; and a tip on clicking and Option-clicking on the volume-control icon on the menu bar to switch between headphones and speakers on your Mac.

Posted by Wally Wang on March 12, 2010 08:00 AM · permalink

  Libraries in Windows 7 can help you get organized. Libraries in Windows 7 are an important new file-management feature that deserves more attention.

Posted by Jack Dunning on March 12, 2010 08:00 AM · permalink

  Common ways we defeat the systems designed to protect our data. Plus, a look at a file-revision management program.

Posted by ComputorEdge Online - San Diego (ceedletters@computoredge.com) on March 12, 2010 08:00 AM · permalink

  The latest in annoying and dangerous e-mail currently making the rounds. This week, spammers are targeting Amazon customers with fake order cancellations. Don't click that link!

Posted by ComputorEdge Staff on March 12, 2010 08:00 AM · permalink

  Shell Scripting Continued This week, we will modify our script to create a much more efficient script that handles multiple decisions and cleanly exits if our tests fail.

Posted by Pete Choppin on March 12, 2010 08:00 AM · permalink

  Computer and Internet tips, plus comments on the articles and columns. "Virus Removal," "Memory Stick Drives and Write Protection," "Diagnostic Tools for Solid State Drives," "Machine vs. Service"

Posted by ComputorEdge Staff on March 12, 2010 08:00 AM · permalink

  A way to turn back time in your file management. Subversion is a robust solution for tracking changes to files and directories. Here's what you need to do to get started so that you could go back to an earlier version of a file or folder if needed.

Posted by Michael J. Ross on March 12, 2010 08:00 AM · permalink

  Sometimes things just don't feel right. A suspicious e-mail and a little sleuthing raises the possibility that phishers are upping their game, going through legitimate advertising channels to snare victims.

Posted by Jack Dunning on March 12, 2010 08:00 AM · permalink

  Digital Dave answers your tech questions. A reader wonders how comments are posted to Digital Dave's column so quickly; some older software won't run properly on a reader's 64-bit Windows 7 computer; a reader's Firefox toolbar has disappeared.

Posted by Digital Dave on March 12, 2010 08:00 AM · permalink

  File management is rife with opportunities for self-induced errors. With the invention of computing, the opportunities for making mistakes, such as accidentally deleting a file, have multiplied. We need to protect us from ourselves.

Posted by Jack Dunning on March 12, 2010 08:00 AM · permalink

  JavaScript Objects Last week, we started to look at some practical uses of JavaScript in Web pages. This week, we'll continue learning about JavaScript tools..

Posted by Rob Spahitz on March 12, 2010 08:00 AM · permalink

  <p>Driving in from Netaji Subhash airport to South Calcutta, in between posters of Konkona advertising real-estate, my eyes were assailed by gigantic cut-outs of the great King Khan, wearing KKR&#8217;s new purple jersey (tough luck to all the suckers who spent moolah buying their black jerseys), cut out of the same lingerie cloth as their old uniform but with a kinkier color, having the suitably pithy slogan &#8220;Luck De&#8221; (which I initially read as &#8220;Lick De&#8221;). Suitably seduced, I leaned back, closed my eyes and thought to myself&#8212;-Oh to be in India now that IPL is here. Front page of newspapers replaced by a gigantic advertisement for the tournament. IPL countdown clocks on every channel.The stench of money, greed and cheap thrills.</p> <p>So who will win the IPL? Its futile speculating and frankly I am not interested. Okay if you really want me to stick my head out, it should be Delhi Daredevils because very simply put, they have an overwhelmingly strong team, so strong that in the interests of fairness the fight should be stopped before it begins. Sehwag, Gambhir, Dilshan, Warner, De Villiers are five of the world&#8217;s best devastators and they are ALL in one team and could potentially play together. But then again, who really cares as to who wins except those who place the bets and those who carry home the prize money?</p> <p>I personally only care for one thing. And that is entertainment. What kind of entertainment? Let me explain.</p> <p><a href="http://farm5.static.flickr.com/4050/4425838959_a56ee4366f.jpg"><img class="alignnone" src="http://farm5.static.flickr.com/4050/4425838959_a56ee4366f.jpg" alt="" width="500" height="375" /></a></p> <p>Now when I saw this (picture taken by <a href="http://suhelbanerjee.blogspot.com">Suhel</a>) I think I understood the ostensible theme of the ad&#8212;badass men with charger-like horns you dont mess with, even if one them bowls at 125 Kmph nowadays. But what truly entertained me was the subtext&#8212;-I am &#8220;horny&#8221;. Yes. And while the horny angle is lost on Andrew Symonds, about whom those beautiful lines were penned in Dilli 6 &#8220;Humare pyar mein yeh bandar baan baithe&#8221;, who looks as usual angry and drunk, it is RP the Role Player with the bedroom eyes and the whole &#8220;My bowling is like my love-making style&#8212;slow, gentle and very compassionate&#8221; thing he has got going which makes me all weak in the knees. This is why I give Chargers my thumbs-up and I will definitely be behind them through the season.</p> <p>The team I am most disappointed in is the Bangalore Royal Challengers. In 2008, they regaled us with bald-pate-glistening I-have-no-clue-about-cricket-but-watch-my-lips-move Charu Sharma as the CEO, T20 superstar Wasim Jaffer galloping like a snail, old age home escapee Sunil Joshi out for a walk in the park and a red-faced maniacal owner. Since then, they have radically firmed up their act and look a very strong and balanced cricketing side with Manish Pandey, Virat Kohli and Morgan forming a crux of next-gen stars backed up by the experience of a Dravid, Kumble, Kallis, Boucher and by mid-career players like White, Taylor and Steyn at the top of their games. Which means there will be no room for Wasim Jaffer&#8217;s pyrotechnics or of the King of Good Times blowing his top.</p> <p>My favorite team of course, purely on the basis of the entertainment they provide, will remain the KKR. And I will be at the Eden come Sunday to support them against the Bangalore Royal Challengers. I will raise the slogan of &#8220;Amar lokkhi roton chele&#8221; (My darling gem of a boy) in the tremulous voice of a thakuma (grandmother) as Laxmi Ratan comes in to bowl. I shall roll my tongue around &#8220;Jol-e chul taja, tel-e chun taja, bench-e Mor Taja&#8221; (sorry no translation for non-Bong readers) as I try to spy with my right eye the world&#8217;s most highly paid benchwarmer. I shall shout till I go hoarse if (I hear he is injured) UnLucky Chikna Agarkar, his ears flopping in the breeze, comes in to bowl like a Santa Claus bearing gifts for the batsman. I shall snigger at the sight of Ishant Sharma, standing mid-pitch after being struck for a six, with the expression of a man whose pocket has been picked. Twice in one day.</p> <p>Will all this be worth the Rs 1200 I will shell out for my ticket&#8212;-around the same price one would pay, once upton a time, to watch 5 days of Test cricket?</p> <p>I think you know the answer to that one.</p> <div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/greatbong/kMBB?a=sm4s1ngC170:6c4jW5Eoy-4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/greatbong/kMBB?d=yIl2AUoC8zA" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/greatbong/kMBB/~4/sm4s1ngC170" height="1" width="1"/>

Posted by greatbong on March 12, 2010 07:40 AM · permalink

  <p>Plastic Logic, the maker of an e-reader targeting business users, told customers on Thursday that it would delay the delivery of its first Que readers until the summer. The company had said at the <a href="http://www.plasticlogic.com/news/pr_introque_jan072010.php">Consumer Electronics Show </a>in January that the device would be delivered in mid-April.</p> <p>In an e-mail to customers who pre-ordered the product, Plastic Logic’s CEO Richard Archuleta said that delay was due to an effort to “fine-tune the features and enhance the overall product experience,” he wrote. He added: “I can imagine that you want to get your QUE proReader as soon as possible. We are sorry for the delay. For your inconvenience, the shipping charges will be on us.”</p> <p>Betty Taylor, a spokeswoman for the company, said in an e-mail that that Plastic Logic has seen “overwhelmingly positive response” to its device since CES. “We&#8217;re confident Que is going to remain on the most wanted list of mobile business professionals – and that there’s still ample room in the nascent eReader market to compete, especially for those who are not solely focused on the crowded eBook space,” she wrote.</p> <p>As for the reasons for the delay, Taylor said delivering cutting-edge technology sometimes take longer than expected. The company wants &#8220;customers to have an optimal experience when Que ships,&#8221; she wrote. </p> <p>Plastic Logic, which expects Que models to be priced between $649 and $799, joins a crowded field of E Ink-based e-readers that are competing at one end of the market with Amazon’s dominant Kindle, and on the other end with Apple iPad, which arrives in stores in early April.</p> <p><a href="http://feedads.g.doubleclick.net/~at/AdNQT4I-64Qu9yhoTZFV6cR-XUQ/0/da"><img src="http://feedads.g.doubleclick.net/~at/AdNQT4I-64Qu9yhoTZFV6cR-XUQ/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~at/AdNQT4I-64Qu9yhoTZFV6cR-XUQ/1/da"><img src="http://feedads.g.doubleclick.net/~at/AdNQT4I-64Qu9yhoTZFV6cR-XUQ/1/di" border="0" ismap="true"></img></a></p><div class="feedflare"> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=h6c8o1sg2s8:zShnxaGJNXg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=h6c8o1sg2s8:zShnxaGJNXg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?i=h6c8o1sg2s8:zShnxaGJNXg:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=h6c8o1sg2s8:zShnxaGJNXg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?i=h6c8o1sg2s8:zShnxaGJNXg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=h6c8o1sg2s8:zShnxaGJNXg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?d=qj6IDK7rITs" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/wsj/biztech/feed/~4/h6c8o1sg2s8" height="1" width="1"/>

Posted by Geoffrey A. Fowler on March 12, 2010 07:30 AM · permalink

  <p><a href="http://chris.pirillo.com/do-you-have-a-question-for-amd/">Do You Have a Question for AMD?</a> is a post from <a href="http://chris.pirillo.com">Chris Pirillo</a></p><p><object width="325" height="264"><param name="movie" value="http://www.youtube.com/v/ttEUBf7HAhQ&#038;hl=en&#038;fs=1&#038;ap=%2526fmt%3D18"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ttEUBf7HAhQ&#038;hl=en&#038;fs=1&#038;ap=%2526fmt%3D18" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="325" height="264"></embed></object><br /> <a href="itms://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=73330048">Add to iTunes</a> | <a href="http://youtube.com/subscription_center?add_user=lockergnome">Add to YouTube</a> | <a href="http://fusion.google.com/add?feedurl=http://feeds.pirillo.com/ChrisPirillo">Add to Google</a> | <a href="http://feeds.pirillo.com/ChrisPirillo">RSS Feed</a></p><p>I am here in Austin, Texas to attend the SXSW Conference, thanks to the support of AMD. As a part of my trip, I will be visiting their campus tomorrow!</p><p>Here&#8217;s your chance to ask a question of the folks at AMD / ATI! If you leave a comment or question (using proper PUGS!), there&#8217;s a good change we&#8217;ll get a representative to answer it in a video!</p><p>Get your questions ready, and leave them as a comment on <a href="http://www.youtube.com/watch?v=ttEUBf7HAhQ"><strong>the YouTube video</strong></a> that this post was created from so I&#8217;ll be sure to see it!</p><p>Want to embed this video on your own site, blog, or forum? Use this code:</p><p><textarea style="width: 460px; height:60px;">&#60;object width=&#34;425&#34; height=&#34;350&#34;&#62;&#60;param name=&#34;movie&#34; value=&#34;http://www.youtube.com/v/ttEUBf7HAhQ&#34;&#62;&#60;/param&#62;&#60;param name=&#34;wmode&#34; value=&#34;transparent&#34;&#62;&#60;/param&#62;&#60;embed src=&#34;http://www.youtube.com/v/ttEUBf7HAhQ&#34; type=&#34;application/x-shockwave-flash&#34; wmode=&#34;transparent&#34; width=&#34;425&#34; height=&#34;350&#34;&#62;&#60;/embed&#62;&#60;/object&#62;&#60;br /&#62;&#60;a href=&#34;http://chris.pirillo.com/&#34;&#62;Chris&#60;/a&#62; | &#60;a href=&#34;http://live.pirillo.com/&#34;&#62;Live Tech Support&#60;/a&#62; | &#60;a href=&#34;http://media.pirillo.com/&#34;&#62;Video Help&#60;/a&#62; | &#60;a href=&#34;http://feeds.pirillo.com/ChrisPirilloShow&#34;&#62;Add to iTunes&#60;/a&#62;</textarea></p><ul class="related_post"><li><a href="http://chris.pirillo.com/sxsw-conference-tips/" title="SXSW Conference Tips">SXSW Conference Tips</a></li><li><a href="http://chris.pirillo.com/are-geeks-friendly/" title="Are Geeks Friendly?">Are Geeks Friendly?</a></li><li><a href="http://chris.pirillo.com/sxsw-news-and-reviews/" title="SXSW News and Reviews">SXSW News and Reviews</a></li><li><a href="http://chris.pirillo.com/roll-call-not-going-to-sxsw-or-ted/" title="Roll Call: Not Going to SXSW or TED?">Roll Call: Not Going to SXSW or TED?</a></li><li><a href="http://chris.pirillo.com/hugh-forrest-executive-director-of-sxsw/" title="Hugh Forrest Executive Director of SXSW">Hugh Forrest Executive Director of SXSW</a></li><li><a href="http://chris.pirillo.com/austin-tips-from-texas/" title="Austin Tips from Texas">Austin Tips from Texas</a></li><li><a href="http://chris.pirillo.com/does-free-speech-exist-on-the-internet/" title="Does Free Speech Exist on the Internet?">Does Free Speech Exist on the Internet?</a></li><li><a href="http://chris.pirillo.com/is-it-time-for-summer-yet/" title="Is it Time for Summer Yet?">Is it Time for Summer Yet?</a></li><li><a href="http://chris.pirillo.com/daynah-iphone-girl-geek/" title="Daynah, iPhone Girl Geek!">Daynah, iPhone Girl Geek!</a></li><li><a href="http://chris.pirillo.com/natasha-art-girl-geek/" title="Natasha, Art Girl Geek">Natasha, Art Girl Geek</a></li></ul> <p><a href="http://feedads.g.doubleclick.net/~a/ZQ6u-3CfTudyT-GOtoZt8GaO7kQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/ZQ6u-3CfTudyT-GOtoZt8GaO7kQ/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~a/ZQ6u-3CfTudyT-GOtoZt8GaO7kQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/ZQ6u-3CfTudyT-GOtoZt8GaO7kQ/1/di" border="0" ismap="true"></img></a></p>

Posted by Chris on March 12, 2010 07:25 AM · permalink

  <p><a href="http://chris.pirillo.com/fact-or-context-the-ocean-that-is-the-internet/">Fact or Context: The Ocean That is the Internet</a> is a post from <a href="http://chris.pirillo.com">Chris Pirillo</a></p><p>I read an <a href="http://www.readwriteweb.com/archives/chasing_real-time_raindrops_in_an_ocean_of_content.php">excellent article</a> a few moments ago. Julien Genestoux talks about how the Internet is a vast, never-evaporating ocean. All of the content that is constantly pouring into that ocean are raindrops. In the article, he states that &#8220;When you&#8217;re a search engine, you obviously have an exhaustivity requirement. You can&#8217;t really skip on indexing the Indian Ocean. Google sends its bo(a)ts all over the ocean where it&#8217;s raining to update its index. However, the ocean is growing so fast that it will eventually become harder and harder to stay exhaustive.&#8221;</p><p>This has become a real problem for search engines, especially Google. They are trying to solve the problem by changing the way that they crawl and index websites in order to try and keep up with the constantly-changing websites. However, there&#8217;s going to come a point when that becomes impossible to do. Genestoux goes on to talk about how Twitter is better than Google when it comes to contextualization. When you search Google, you&#8217;re looking for facts. When you search Twitter, you want the context&#8230; you need to know what is happening (and being said about that subject) right now!</p><p>What are your thoughts? Is there any possible easy answer for search engine companies to attempt to keep on top of all of the data in the ocean?</p><ul><li><a href="http://www.lockergnome.com/it/2010/03/11/viral-loop-from-facebook-to-twitter-how-todays-smartest-businesses-grow-themselves/">Viral Loop: From Facebook to Twitter, How Today&#8217;s Smartest Businesses Grow Themselves</a></li><li><a href="http://geeks.pirillo.com/profiles/blogs/my-old-bbss">Did you visit BBS&#8217;s back in the day?</a></li><li><a href="http://help.lockergnome.com/general/error--ftopict64544.html">How do you track down random computer errors?</a></li><li><a href="http://www.lockergnome.com/theoracle/2010/03/11/fcc-gets-into-broadband-speed-testing/">The FCC is involving themselves in broadband speed testing.</a></li><li><a href="http://www.lockergnome.com/forsythe/2010/03/11/twitter-fights-phishing-and-malware/">Twitter is trying to fight Phishing.</a></li><li><a href="http://geeks.pirillo.com/profiles/blogs/americas-most-wanted-teen">Who is America&#8217;s Most Wanted teenager &#8211; and what did he do wrong?</a></li><li><a href="http://help.lockergnome.com/general/16x9-monitors--ftopict64543.html">Who could even use 16&#215;9 monitors?!</a></li><li><a href="http://www.lockergnome.com/leftystrat/2010/03/11/faceyspaces-isnt-the-only-place-to-avoid-for-job-applicants/">Faceyspaces isn&#8217;t the only place to avoid for job applicants.</a></li><li><a href="http://www.lockergnome.com/it/2010/03/11/are-you-breaking-the-law-with-your-pc/">Are you breaking the law with your computer?</a></li><li><a href="http://geeks.pirillo.com/forum/topics/3d-tv-do-you-think-itll-catch">Do you think 3D television will be a fad that burns out quickly? </a></li><li><a href="http://www.lockergnome.com/theoracle/2010/03/11/a-new-social-network/">There&#8217;s another new social network on the horizon!</a></li><li><a href="http://www.lockergnome.com/reflections/2010/03/11/ford-the-men-and-machine-book-history-things-never-change/">The men and machines at Ford never change.</a></li><li><a href="http://geeks.pirillo.com/forum/topics/what-makes-firefox-the-best">What about your favorite browser makes it the best for you?</a></li><li><a href="http://www.lockergnome.com/usrbingeek/2010/03/11/how-to-lower-you-cable-bill/">How can you lower your cable bill?</a></li><li><a href="http://www.lockergnome.com/windows/2010/03/11/fotobabble/">Have you ever wished a picture could talk to you?</a></li><li><a href="http://www.lockergnome.com/osx/2010/03/08/valve-coming-to-the-mac/">Valve is coming to the Mac!</a></li><li><a href="http://www.lockergnome.com/windows/2010/03/11/model-trains-for-beginners-a-step-by-step-guide-to-save-time-money/">Model Trains for beginners: a step-by-step guide to saving time and money.</a></li></ul><p>Don&#8217;t forget to stop by the <a href="http://download.lockergnome.com"><strong>software center</strong></a> to see what&#8217;s new today!</p><p><ul><li style='margin-bottom:15px'><a rel='nofollow' href='http://www.amazon.com/exec/obidos/ASIN/0470529695/lockergnome Tips, Tricks, and Tweets</a></li><li style='margin-bottom:15px'><a rel='nofollow' href='http://www.amazon.com/exec/obidos/ASIN/0470569646/lockergnome Marketing: An Hour a Day</a></li><li style='margin-bottom:15px'><a rel='nofollow' href='http://www.amazon.com/exec/obidos/ASIN/1449552072/lockergnome Smart Parent&#8217;s Guide to Facebook: Easy Tips to Protect and Connect with Your Teen (Volume 1)</a></li></ul><ul class="related_post"><li><a href="http://chris.pirillo.com/all-search-terms-should-be-treated-equally/" title="All Search Terms Should be Treated Equally">All Search Terms Should be Treated Equally</a></li><li><a href="http://chris.pirillo.com/are-geeks-friendly/" title="Are Geeks Friendly?">Are Geeks Friendly?</a></li><li><a href="http://chris.pirillo.com/myspace-tom-is-not-your-friend/" title="MySpace Tom is Not Your Friend">MySpace Tom is Not Your Friend</a></li><li><a href="http://chris.pirillo.com/the-buzz-about-google/" title="The Buzz About Google">The Buzz About Google</a></li><li><a href="http://chris.pirillo.com/are-adult-bloggers-ruining-it-for-kids/" title="Are Adult Bloggers Ruining it for Kids?">Are Adult Bloggers Ruining it for Kids?</a></li><li><a href="http://chris.pirillo.com/new-chrome-boasts-bookmark-sync-and-more/" title="New Chrome Boasts Bookmark Sync and More">New Chrome Boasts Bookmark Sync and More</a></li><li><a href="http://chris.pirillo.com/free-lifestream-wordpress-options/" title="Free Lifestream WordPress Options">Free Lifestream WordPress Options</a></li><li><a href="http://chris.pirillo.com/how-to-get-a-lifestream/" title="How to Get a Lifestream">How to Get a Lifestream</a></li><li><a href="http://chris.pirillo.com/have-you-met-your-online-friends-in-person/" title="Have You Met Your Online Friends in Person?">Have You Met Your Online Friends in Person?</a></li><li><a href="http://chris.pirillo.com/what-place-does-social-media-have-in-our-schools/" title="What Place Does Social Media Have in our Schools?">What Place Does Social Media Have in our Schools?</a></li></ul> <p><a href="http://feedads.g.doubleclick.net/~a/iv_AOvCBBtC5GwfpeoiqIqfcfi0/0/da"><img src="http://feedads.g.doubleclick.net/~a/iv_AOvCBBtC5GwfpeoiqIqfcfi0/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~a/iv_AOvCBBtC5GwfpeoiqIqfcfi0/1/da"><img src="http://feedads.g.doubleclick.net/~a/iv_AOvCBBtC5GwfpeoiqIqfcfi0/1/di" border="0" ismap="true"></img></a></p>

Posted by Chris on March 12, 2010 07:17 AM · permalink

Slashdot  
  code prole writes "With two upcoming trips to Germany, and no readily available Internet (Wi-Fi or otherwise) in the location where we'll be staying, I'm looking for a no-contract USB stick and pre-paid data plan. Vodafone has a huge selection of USB sticks but has proven to be unresponsive to questions about data plans. And the US-based T-Mobile Help Center was clueless about getting the device in Europe and using it there. Hopefully the Slashdot community has some suggestions. Any duds to avoid?"

Read more of this story at Slashdot.

<iframe src="http://slashdot.org/slashdot-it.pl?op=discuss&amp;id=1580138&amp;smallembed=1" style="height: 300px; width: 100%; border: none;"></iframe>


Posted by timothy on March 12, 2010 07:01 AM · permalink

 

I feel hugely sorry for this kid. In her world, it might be a huge deal to become “the youngest girl to ever write the Intermediate or plus two examination in Andhra Pradesh.” (She’s nine or ten; the article states both.) But the pressure on her must be immense, and such ‘achievements’ are not the stuff of life. She’s obviously enormously smart and talented, but I’m sure there’s much parental expectation pushing her, and that isn’t good. Childhood should be chilled out and as stress-free as possible.

I hope she’s doing okay 15 years from now.

The India Uncut Blog © 2007 Amit Varma. All rights reserved.
Visit: India Uncut * The IU Blog * Rave Out * Extrowords * Workoutable * Linkastic

<script charset="utf-8" src="http://feeds.feedburner.com/~s/IUB?i=http://www.indiauncut.com/3640/" type="text/javascript"></script>

Posted by Amit Varma on March 12, 2010 06:53 AM · permalink

  A Montreal man has had his lawsuit against Air Transat dismissed. He was suing the airline because the flight attendants refused to help him look at his scrotum and determine why it had started bleeding on a flight (they gave him some sanitary towels and told him they'd land for emergency medical attention if it got worse). On arrival in Mexico, the man saw a doctor who determined that the problem was a ruptured vein near his scrotum. <p> I can understand a flight attendant's reluctance to help a stranger examine his scrotum, but didn't anyone have, you know, a <em>hand mirror</em>? If I started mysteriously bleeding from my scrotum, I'd be pretty distressed, too. <blockquote> <img src="http://craphound.com/images/transatscrot.jpeg" class="right" align="right"> Cote sued Air Transat and the employees on the flight that day, accusing them of failing to provide appropriate medical assistance, seeking damages of $8,000 for the anguish he suffered as a result of their neglect. <p> But judge Michele Pauze rejected Cote's case. <p> In her decision, she said she agreed with arguments offered by Air Transat representative Chantal Chlala, who explained to the court that flight attendants do not have the right to examine passengers, and even less to make a diagnosis. <p> "It was not incumbent upon a flight attendant to conduct the medical examination of a passenger, a measure reserved for the medical profession," wrote judge Pauzé. </blockquote> <a href="http://www.torontosun.com/news/canada/2010/03/05/13132421-qmi.html">Man sues airline for not looking at his scrotum</a> (<i>via <a href="http://consumerist.com/">Consumerist</a></i>) <div class="previously2"> <em>Previously:</em><ul><li><a href="http://boingboing.net/2010/01/12/case-of-the-haunted.html#previouspost">Case of the haunted scrotum </a></li> <li><a href="http://boingboing.net/2008/07/11/testicle-talc.html#previouspost">Testicle talc</a></li> </ul> </div> <br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=59c321efe2894b7a64d1f964be4a3ab4&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=59c321efe2894b7a64d1f964be4a3ab4&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/MQS7EBclDOw" height="1" width="1"/>

Posted by Cory Doctorow on March 12, 2010 06:52 AM · permalink

  <div class="mceTemp" style="text-align: left;"> <dl class="wp-caption alignleft caption-alignleft" style="width: 262px;"> <dt class="wp-caption-dt"><img class="size-full wp-image-5" src="http://s.wsj.net/public/resources/images/OB-HV148_milo03_D_20100312022031.jpg" alt="" width="262" height="174" /></dt> <dd class="wp-caption-dd wp-cite-dd" style="text-align: right;">Milo.com</dd> </dl> </div> <p>Shopping could be a whole lot easier if the Internet knew whether the stuff you were looking for was available at stores nearby.</p> <p>Milo.com, a startup in Palo Alto, Calif., has been working for two years on setting up a database that knows not only what products are in stores near you&#8211;but also whether they’re in stock. Need a new pencil sharpener in downtown San Francisco? Milo says there’s one available for $1.99 at the <a href="http://milo.com/foray-double-hole-manual-pencil-sharpener-translucent-blue">Office Max on 3rd Street</a>.</p> <p>But the company (whose mascot is its founder’s dog Milo, shown here) got some big competition on Thursday, when Google officially launched a <a href="http://googlemobile.blogspot.com/2010/03/in-stock-nearby-look-for-blue-dots.html">mobile version </a>of its Product Search feature, including information about local inventory. If a product is in stock nearby, the listing shows up with a blue dot next to it.</p> <p>Yet Google’s announcement highlights just how difficult it is to create a reliable database of things in the real world. The search giant launched its service with inventory data from just five retail outlets &#8212; Best Buy, Sears, Williams-Sonoma, Pottery Barn, and West Elm (the last three of which are all owned by Williams-Sonoma). They’ll undoubtedly expand that list, and are taking <a href="http://google.com/support/merchants/bin/request.py?contact_type=local_shopping">volunteers </a>from businesses that want to join in the program.</p> <p>In an interview, Milo’s CEO Jack Abraham didn’t seem too worried about Google’s arrival in his business. “We are, to be honest, surprised that they are launching it with so few retailers,” he said. “That really does underscore just how difficult it is to get this data.”</p> <p>Milo has signed up 49 retail chains, covering 48,000 stores and 2 million products. Beyond brands like Best Buy and Sears, which have open systems that let any outside programmers tap into their inventory database, they’ve managed to sign up some big names, including Target, Nordstrom, Macy’s and J.C. Penny.</p> <p>There’s a lot of technological complexity around inventory data, Abraham said, that Milo has solved those problems by developing custom software to plug into each retailer’s own unique inventory system. “We take the raw data in whatever form it comes,” said Abraham. Milo doesn’t have exclusivity from the retailers it taps &#8212; but it also wrote the software that helped bring their inventory online.</p> <p>Over the next year, Abraham says Milo is going to focus on adding 5,000 to 10,000 small businesses into its database. They may actually be easier to integrate than the big retailers, he said, because they’re less likely to have customized systems.</p> <p>The next big challenge has yet to be cracked by either Milo or Google: getting credit – and revenue &#8212; for sending customers into physical stores. Stay tuned, says Milo’s Abraham.</p> <p><a href="http://feedads.g.doubleclick.net/~at/lodepcsKDyo75f1IwF5mM5VE0_c/0/da"><img src="http://feedads.g.doubleclick.net/~at/lodepcsKDyo75f1IwF5mM5VE0_c/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~at/lodepcsKDyo75f1IwF5mM5VE0_c/1/da"><img src="http://feedads.g.doubleclick.net/~at/lodepcsKDyo75f1IwF5mM5VE0_c/1/di" border="0" ismap="true"></img></a></p><div class="feedflare"> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=DbmTED17UMI:rzNhwfX0rSM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=DbmTED17UMI:rzNhwfX0rSM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?i=DbmTED17UMI:rzNhwfX0rSM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=DbmTED17UMI:rzNhwfX0rSM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?i=DbmTED17UMI:rzNhwfX0rSM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=DbmTED17UMI:rzNhwfX0rSM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?d=qj6IDK7rITs" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/wsj/biztech/feed/~4/DbmTED17UMI" height="1" width="1"/>

Posted by Geoffrey A. Fowler on March 12, 2010 06:51 AM · permalink

  <p><a href="http://chris.pirillo.com/when-will-your-bus-arrive/">When Will Your Bus Arrive?</a> is a post from <a href="http://chris.pirillo.com">Chris Pirillo</a></p><p><object width="325" height="264"><param name="movie" value="http://www.youtube.com/v/RFxuTgFRupg&#038;hl=en&#038;fs=1&#038;ap=%2526fmt%3D18"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/RFxuTgFRupg&#038;hl=en&#038;fs=1&#038;ap=%2526fmt%3D18" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="325" height="264"></embed></object><br /> <a href="itms://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=73330048">Add to iTunes</a> | <a href="http://youtube.com/subscription_center?add_user=lockergnome">Add to YouTube</a> | <a href="http://fusion.google.com/add?feedurl=http://feeds.pirillo.com/ChrisPirillo">Add to Google</a> | <a href="http://feeds.pirillo.com/ChrisPirillo">RSS Feed</a></p><p>During our open mic session at Gnomedex last August, <a href="http://twitter.com/bcorrigan"><strong>Bill Corrigan</strong></a> came on stage to talk about <a href="http://onebusaway.org"><strong>OneBusAway</strong></a>. This website was built by some students at the University of Washington who were tired of always missing their bus. You can search for bus stops near your location, and it will give you not only where they are&#8230; but also tell you how much time until the next one departs! Never miss your bus again!</p><p>Right now, this website only works for King County, in the great state of Washington! But who knows? Perhaps it will branch out one day to include your city!</p><p><ul><li style='margin-bottom:15px'><a rel='nofollow' href='http://www.amazon.com/exec/obidos/ASIN/1870979478/lockergnome Bus Custom Handbook (Motorbooks Workshop)</a></li><li style='margin-bottom:15px'><a rel='nofollow' href='http://www.amazon.com/exec/obidos/ASIN/0752450840/lockergnome London Bus Story</a></li><li style='margin-bottom:15px'><a rel='nofollow' href='http://www.amazon.com/exec/obidos/ASIN/0130918857/lockergnome Driver&#8217;s Guide to Commercial Driver Licensing: What You Need to Know to Become Licensed (Arco Professional Certification and Licensing Examination Series)</a></li></ul></p><p>Want to embed this video on your own site, blog, or forum? Use this code or <a href="http://blip.tv/file/get/L0ckergn0me-WhenWillYourBusArrive199.mp4">download the video</a>:</p><p><textarea style="width: 460px; height:60px;">&#60;object width=&#34;425&#34; height=&#34;350&#34;&#62;&#60;param name=&#34;movie&#34; value=&#34;http://www.youtube.com/v/RFxuTgFRupg&#34;&#62;&#60;/param&#62;&#60;param name=&#34;wmode&#34; value=&#34;transparent&#34;&#62;&#60;/param&#62;&#60;embed src=&#34;http://www.youtube.com/v/RFxuTgFRupg&#34; type=&#34;application/x-shockwave-flash&#34; wmode=&#34;transparent&#34; width=&#34;425&#34; height=&#34;350&#34;&#62;&#60;/embed&#62;&#60;/object&#62;&#60;br /&#62;&#60;a href=&#34;http://chris.pirillo.com/&#34;&#62;Chris&#60;/a&#62; | &#60;a href=&#34;http://live.pirillo.com/&#34;&#62;Live Tech Support&#60;/a&#62; | &#60;a href=&#34;http://media.pirillo.com/&#34;&#62;Video Help&#60;/a&#62; | &#60;a href=&#34;http://feeds.pirillo.com/ChrisPirilloShow&#34;&#62;Add to iTunes&#60;/a&#62;</textarea></p><ul class="related_post"><li><a href="http://chris.pirillo.com/seeing-seattle/" title="Seeing Seattle">Seeing Seattle</a></li><li><a href="http://chris.pirillo.com/seattle-twitter/" title="Seattle Twitter">Seattle Twitter</a></li><li><a href="http://chris.pirillo.com/bing-building-bling/" title="Bing Building Bling">Bing Building Bling</a></li><li><a href="http://chris.pirillo.com/google-seattle/" title="Google Seattle">Google Seattle</a></li><li><a href="http://chris.pirillo.com/how-do-you-get-started-in-social-media/" title="How Do You Get Started in Social Media?">How Do You Get Started in Social Media?</a></li><li><a href="http://chris.pirillo.com/putting-the-me-in-social-media/" title="Putting the Me in Social Media">Putting the Me in Social Media</a></li><li><a href="http://chris.pirillo.com/hawaii-weather-is-beautiful-even-without-the-sun/" title="Hawaii Weather is Beautiful (Even Without the Sun!)">Hawaii Weather is Beautiful (Even Without the Sun!)</a></li><li><a href="http://chris.pirillo.com/seattle-night-skyline/" title="Seattle Night Skyline">Seattle Night Skyline</a></li><li><a href="http://chris.pirillo.com/seattle-weather-hot/" title="Seattle Weather: Hot!">Seattle Weather: Hot!</a></li><li><a href="http://chris.pirillo.com/getting-out-is-a-good-thing/" title="Getting Out is a Good Thing">Getting Out is a Good Thing</a></li></ul> <p><a href="http://feedads.g.doubleclick.net/~a/uHwq9tzWA45ZUB5cKm9pTEItAbE/0/da"><img src="http://feedads.g.doubleclick.net/~a/uHwq9tzWA45ZUB5cKm9pTEItAbE/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~a/uHwq9tzWA45ZUB5cKm9pTEItAbE/1/da"><img src="http://feedads.g.doubleclick.net/~a/uHwq9tzWA45ZUB5cKm9pTEItAbE/1/di" border="0" ismap="true"></img></a></p>

Posted by Chris on March 12, 2010 06:50 AM · permalink

  <object width="640" height="385"><param name="movie" value="http://www.youtube-nocookie.com/v/RSRvQtlyK4c&hl=en_US&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/RSRvQtlyK4c&hl=en_US&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object> <p> "Pony Express," a Bulgarian mechanical horse (created by T.J. Tangpuz) is made out of discarded packaging, plastic ties, and other detritus, and it delighted the people of Oryahovo, Bulgaria with its regular perambulations, before it was moved to a gallery. <p> <a href="http://paperforest.blogspot.com/2010/03/mechanical-cardboard-horse.html">Mechanical cardboard horse</a> <div class="previously2"> <em>Previously:</em><ul><li><a href="http://www.boingboing.net/2005/09/10/mechanical-papercraf.html#previouspost">Mechanical papercraft toys -- including a Maneki Neko</a></li> <li><a href="http://www.boingboing.net/2005/08/20/mechanical-flapping-.html#previouspost">Mechanical flapping papercraft bat with tombstone</a></li> <li><a href="http://boingboing.net/2008/06/09/gorgeous-mechanical.html#previouspost">Gorgeous mechanical sine-wave calculator</a></li> <li><a href="http://www.boingboing.net/2006/01/25/freeish-mechanical-p.html#previouspost">Free-ish mechanical paper dragon kit</a></li> </ul> </div> <br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=dfce4b4de714319c8480eeb3dfdda1ee&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=dfce4b4de714319c8480eeb3dfdda1ee&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/JA3BWGV4f1c" height="1" width="1"/>

Posted by Cory Doctorow on March 12, 2010 06:40 AM · permalink

  <p>Hello.</p> <p> The last PyPy video from pycon has been uploaded. It's a very short (less than 10 minutes) "keynote" talk about <a href="http://pycon.blip.tv/file/3332796">state of PyPy</a>.</p> <p> Enjoy!<br /> fijal</p><div class="blogger-post-footer"><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/3971202189709462152-6748503931490058986?l=morepypy.blogspot.com" alt="" /></div><img src="http://feeds.feedburner.com/~r/PyPyStatusBlog/~4/Nma0RZHtIrA" height="1" width="1" />

Posted on March 12, 2010 06:38 AM · permalink

  <img src="http://craphound.com/images/kyoto-university-of-art-and-design-4.jpg"><br> These beautiful, fanciful miniature cities built into household objects like power-strips and desk-fans are part of the graduate show at the Kyoto University of Art and Design. The artist is uncredited, but it's very lovely work. <P> <a href="http://www.spoon-tamago.com/2010/03/08/student-work-kyoto-university-of-art-and-design/">Student Work | Kyoto University of Art and Design</a> (<i>via <a href="http://www.cribcandy.com/">Cribcandy</a></i>) <div class="previously2"> <em>Previously:</em><ul><li><a href="http://boingboing.net/2006/01/27/photographer-takes-p.html#previouspost">Photographer takes photos of real scenes that look like miniature ...</a></li> <li><a href="http://boingboing.net/2010/01/25/incredible-miniature.html#previouspost">Incredible miniature photography </a></li> <li><a href="http://www.boingboing.net/2009/07/13/miniature-bottle-sto.html#previouspost">Miniature Bottle story for Significant Objects</a></li> <li><a href="http://gadgets.boingboing.net/2009/08/10/miniature-neo-geo.html#previouspost">Miniature Neo Geo</a></li> <li><a href="http://boingboing.net/2008/06/21/miniature-paris-repl.html#previouspost">Miniature Paris replica made from trash</a></li> </ul> </div> <br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=810ce0b7ca6cd19145f24c35f7ce498c&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=810ce0b7ca6cd19145f24c35f7ce498c&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/P5fDnPfK5SI" height="1" width="1"/>

Posted by Cory Doctorow on March 12, 2010 06:35 AM · permalink

  For 50 years, residents of the French village of Pont-Saint-Esprit have tried to understand the "cursed bread" incident, a moment of terrifying mass insanity and hallucinations that left at least five dead and dozens in asylums. Now the mystery is solved: the CIA secretly spiked the bread from the bakery with enormous quantities of LSD as part of its cold war mind-control experiments, at least according to recently uncovered documents. The allegation originates with H P Albarelli Jr., an investigative journalist who uncovered the documents while researching his forthcoming book, <a href="http://www.amazon.com/exec/obidos/ASIN/0977795373/downandoutint-20">A Terrible Mistake: The Murder of Frank Olson and the CIA's Secret Cold War Experiments</a>. <blockquote> <img src="http://craphound.com/images/3037923874_1db7b126b7.jpg" class="right" align="right"> One man tried to drown himself, screaming that his belly was being eaten by snakes. An 11-year-old tried to strangle his grandmother. Another man shouted: "I am a plane", before jumping out of a second-floor window, breaking his legs. He then got up and carried on for 50 yards. Another saw his heart escaping through his feet and begged a doctor to put it back. Many were taken to the local asylum in strait jackets... <p> Scientists at Fort Detrick told him that agents had sprayed LSD into the air and also contaminated "local foot products". <p> Mr Albarelli said the real "smoking gun" was a White House document sent to members of the Rockefeller Commission formed in 1975 to investigate CIA abuses. It contained the names of a number of French nationals who had been secretly employed by the CIA and made direct reference to the "Pont St. Esprit incident." In its quest to research LSD as an offensive weapon, Mr Albarelli claims, the US army also drugged over 5,700 unwitting American servicemen between 1953 and 1965. </blockquote> <a href="http://www.telegraph.co.uk/news/worldnews/europe/france/7415082/French-bread-spiked-with-LSD-in-CIA-experiment.html">French bread spiked with LSD in CIA experiment</a> (<i>Thanks, <a href="http://www.stevesilberman.com/">Steve</a> and everyone else who suggested this!</i>) <p> (<i>Image: <a href="http://www.flickr.com/photos/adampieniazek/3037923874/">Shaw's French Bread</a>, a Creative Commons Attribution photo from Adam Pieniazek's photostream</i>) <div class="previously2"> <em>Previously:</em><ul><li><a href="http://www.boingboing.net/2009/06/29/video-drama-about-ci.html#previouspost">Video drama about CIA&#39;s real project to drug unwitting US citizens ...</a></li> <li><a href="http://boingboing.net/2006/01/10/midcentury_lsd_exper.html#previouspost">Midcentury LSD Experiments at Canadian mental hospital</a></li> <li><a href="http://boingboing.net/2005/07/22/more_on_the_cias_evi.html#previouspost">More on the CIA&#39;s evil genius, Dr. Sidney Gottleib</a></li> <li><a href="http://boingboing.net/2007/06/27/digging_deeper_into_.html#previouspost">Digging deeper into CIA &quot;family jewels&quot; docs</a></li> <li><a href="http://boingboing.net/2008/04/29/albert-hoffman-rip.html#previouspost">Albert Hofmann, LSD inventor, RIP</a></li> </ul> </div> <br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=b108492e56c38b83651a2447d07bd888&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=b108492e56c38b83651a2447d07bd888&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/zgzPcKoHlJI" height="1" width="1"/>

Posted by Cory Doctorow on March 12, 2010 06:28 AM · permalink

  The Olympics are coming to London, so our civil liberties are going out the window: because nothing epitomises the spirit of global competition and cooperation like corporate bullying and unfettered truncheon-waving. <blockquote> <img src="http://craphound.com/images/3406972544_f251eab816.jpg" class="left" align="left"> Police will have powers to enter private homes and seize posters, and will be able to stop people carrying non-sponsor items to sporting events. <p> "I think there will be lots of people doing things completely innocently who are going to be caught by this, and some people will be prosecuted, while others will be so angry about it that they will start complaining about civil liberties issues," Chadwick said. <p> "I think what it will potentially do is to prompt a debate about the commercial nature of the Games. Do big sponsors have too much influence over the Games?" </blockquote> <a href="http://uk.news.yahoo.com/22/20100303/tts-uk-olympics-london-ca02f96.html">Eyes turn to "value for money" London 2012 </a> (<i>Thanks, Bobby!</i>) <p> (<i>Image: <a href="http://www.flickr.com/photos/kashklick/3406972544/">More Riot Police</a> a Creative Commons Attribution photo from Kashklick's photostream</i>) <div class="previously2"> <em>Previously:</em><ul><li><a href="http://boingboing.net/2007/03/03/vancouver-olympics-w.html#previouspost">Vancouver Olympics will own words like &quot;winter,&quot; &quot;2010&quot; and ...</a></li> <li><a href="http://boingboing.net/2010/02/20/olympic-bullying-dri.html#previouspost">Olympic bullying drives goggle-maker to verse </a></li> <li><a href="http://boingboing.net/2007/04/30/london_2012_olympics.html#pr eviouspost">London 2012 Olympics: We only buy security tech from ...</a></li> <li><a href="http://boingboing.net/2010/02/20/olympic-bullying-dri.html#previouspost">Olympic bullying drives goggle-maker to verse </a></li> <li><a href="http://boingboing.net/2010/01/08/homeless-people-relo.html#previouspost">Homeless people relocated out of Whister, Canada, ahead of ...</a></li> <li><a href="http://boingboing.net/2010/01/20/intl-olympic-committ.html#previouspost">Int&#39;l. Olympic Committee: gender difference is a disease </a></li> </ul> </div> <br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=c278aae189e56730765ac22f1f01e92c&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=c278aae189e56730765ac22f1f01e92c&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/-JjNJGyVJNA" height="1" width="1"/>

Posted by Cory Doctorow on March 12, 2010 06:19 AM · permalink

  <p>I don&#8217;t know what <a href="http://zone-h.org/">zone-h.org</a> is. Someone pointed me to the site saying that he could not access it from India and believes that the government of India has banned it. He said that he has &#8220;heard (from a reliable source) a rumour that the Government of India has a fairly regular habit of issuing fiats to ISPs to block various websites that it feels are objectionable for some reason.&#8221;<br /> <span id="more-3846"></span></p> <p>When I try to access the site, I get a blank screen. It does not say, &#8220;This page intentionally left blank.&#8221; I guess the govt of India should have the decency to put the notice &#8220;<strong><em>This page intentionally left blank by the government of India.</em></strong>&#8221; </p> <p>Then, contradicting itself, it should further explain why.</p> <blockquote><p>&#8220;You, Indian citizen, are a serf. You are an ignorant serf. You are not capable of handling some information. You are not discerning. You are easily misled. We, your government, are your rulers. We decide what is good for you. We tell you what to think, what to read, what to write, what to listen to on the radio. </p> <p>&#8220;You are a serf. We dictate and you listen. We go around in cars with rotating red flashing lights on top. We are your masters and we get the police to clear the roads when we pass. You dutifully wait till our motorcade has sped through the cleared roads. </p> <p>&#8220;You are slaves that obey without questioning. You are free to do what we order you to do. We want you to only access sites that allow and you read only at our pleasure. </p> <p>&#8220;You are a serf. You know your place. Now stay there and don&#8217;t make a fuss. Or we will send our running dogs and put you away.</p> <p>&#8220;We are your masters. Obey or prepare to be imprisoned.&#8221;</p></blockquote> <p>I used to wonder how small marauding bands of barbarians ruled India for centuries, or how a few thousand people from a tiny island in the Atlantic ruled for nearly a hundred years a population of hundreds of millions. </p> <p>Now I wonder no more. I think there is something in the Indian psyche that make Indians very easy to rule. The foreign rulers have been (to a large extent) replaced by domestic ones. There aren&#8217;t all that many rulers relative to the population. </p> <p>All told, if you consider the members of the various state and central legislative bodies, the bureaucrats in the various ministries, the police and judiciary &#8212; all told it cannot amount to more than a few hundred thousand people. But like their foreign counterparts before 1947, these rule over hundreds of millions. </p> <p>The poor sods &#8212; nearly 1,200,000,000, or one thousand two hundred million &#8212; cowering spineless sods dutifully obey the diktats of the rulers. </p> <p>If this had been a population with any spine, any dignity, or honor, they would have dragged the criminals ruling over them on to the streets and strung them up from the lamp posts. </p> <p>All the poor sods have to do is to drag half a dozen of the most corrupt politicians and judges and lynch them. The other few hundred thousands would get into line. They will know that it is they who are the servants and the people are the rulers.</p> <p>Once I had heard an IAS officer say that if the people of India only knew how much damage the administrative services do to India, the people of India would thrash every government bureaucrat. I told the man that that this has not happened yet should tell us that Indians are incapable of fighting for their rights. </p> <p>There was no freedom struggle. The British were tired of administering a country that had become so poor that there was nothing left to steal. Colonialism was becoming unpopular. Besides the British had trained their replacement &#8212; Mr Nehru &#8212; and were confident that he would do as they dictated. Mr Nehru was happy to be the boss and rule. </p> <p>Indians did not have a freedom struggle. The British left without a fight because India was just not worth it any more. </p> <p>The new rulers found it very convenient to claim that they were the ones that threw out the British. That message was relentlessly broadcast, put in school books, the education system was controlled, and generations of brainwashed Indians believed in this nonsense. </p> <p>The real freedom that India needs is the freedom from the brain washing that they have had for the last 60-odd years. </p> <p>The Indians did not have to fight the British because the British wanted to leave of their own accord. But these present day brown-sahibs are not in a hurry to leave. They will not leave without a fight. And the Indian people are not willing to fight. </p> <p>So let&#8217;s all settle down to many generations of slavery. The children who are growing up today, born into slavery, will give birth to slaves.</p> <p> Welcome to the slave state of India.</p>

Posted by Atanu Dey on March 12, 2010 05:50 AM · permalink

  <p>Expect the same great lineup of talks regarding how Python is being used in the fields of science, maths, games, animation, web development and much much more.</p> <p> Again we'll have a couple of world class keynote speakers and an 'unconference' aspect to the event where you, the delegate, can get involved.</p> <p>Add to all this the fact that it'll be in the beautiful <a href="http://en.wikipedia.org/wiki/Bay_of_Islands" target="_blank">Bay of Islands</a> at an <a href="http://www.millenniumhotels.co.nz/copthornebayofislands/" target="_blank">excellent venue</a> and we're set for an even better event than last year.</p> <p>Keep an eye on the <a href="http://nz.pycon.org" target="_blank">conference website</a> for updates as planning for the event unfolds.</p>

Posted on March 12, 2010 05:44 AM · permalink

 

The Times of India reports:

The government has banned Fashion TV for nine days after finding a program it aired offended good taste and decency by showing women partially nude.

The Information and Broadcasting Ministry statement said FTV channel would go off the air later Thursday until March 21. The statement cited an unnamed FTV program aired in September that showed women with nude upper bodies.

It’s immensely WTF that someone should think that topless women offend “good taste and decency.” Women have breasts. Straight men are attracted to them. These are just ho-hum facts of biology. Only massively repressed and resentful men and women would find partial nudity offensive—and one factor in their repression, certainly, would be this attitude against anything sexual. It’s a self-reinforcing feedback loop—the more you repress, the more repressed they get, the more you find reason to repress them further. In the 21st century, its all a bit bizarre.

What is even weirder is that the continuing spread of the internet threatens to make all this moot. Far wilder things than mere toplessness are a Google search away, and its practically impossible to filter all of that out. And why would you want to do that anyway? Sex is healthy, so let’s be open about it, and not whisper while talking about it or blush when the subject comes up. Or censor boobs.

*

Earlier posts on the subject:

‘A Trial Balloon’.
The Ministry of Wet Dreams.

The India Uncut Blog © 2007 Amit Varma. All rights reserved.
Visit: India Uncut * The IU Blog * Rave Out * Extrowords * Workoutable * Linkastic

<script charset="utf-8" src="http://feeds.feedburner.com/~s/IUB?i=http://www.indiauncut.com/3639/" type="text/javascript"></script>

Posted by Amit Varma on March 12, 2010 05:34 AM · permalink

Slashdot  
  harryjohnston writes "The Register points out that the takedown of a significant number of Zeus command-and-control servers, which we discussed earlier, was a short-lived victory, as about one-third of the affected servers were back on the net in less than 48 hours." Adds itwbennet: "Just hours after network connectivity to Troyak was severed the ISP peered with a new upstream Internet service provider named Ya. The next step will be to 'de-peer' Troyak from its new service provider, either an ISP named Nassist or its upstream provider, Hurricane Electric, said a researcher familiar with the matter. 'We have taken some of their territory, they are trying to out flank us,' the researcher said via IM. 'We are going to win this one — we have 'em boxed in.'"

Read more of this story at Slashdot.

<iframe src="http://slashdot.org/slashdot-it.pl?op=discuss&amp;id=1580108&amp;smallembed=1" style="height: 300px; width: 100%; border: none;"></iframe>


Posted by timothy on March 12, 2010 05:20 AM · permalink

  <p>I&#8217;m speaking at <a href="http://www.sxsw.com">SXSW</a>, the big nerd-fest conference.</p> <p>As expected, I&#8217;m only staying for the tech part of it, then quickly leaving before the film/music stuff starts. I don&#8217;t think they would appreciate my taste in Jodeci and Whitney Houston. And I would not appreciate their lack of marketing abilities.</p> <p>If you&#8217;re around, come check out my talk:</p> <p><strong>What</strong>: &#8220;Building a Bulletproof Personal-Finance System&#8221;<br /> <strong>When</strong>: Saturday, March 13th at 11am<br /> <strong>Where</strong>: Hilton G<br /> <strong>RSVP</strong>: <a href="http://my.sxsw.com/events/event/431">http://my.sxsw.com/events/event/431</a></p> <p><em>Bonuses:</em><br /> 1. Book signing afterwards at 1:50pm (<a href="http://my.sxsw.com/events/event/8391">RSVP</a>)<br /> 2. I&#8217;m revealing 10 things I&#8217;ll be covering at the talk at <a href="http://twitter.com/ramit">twitter.com/ramit</a></p> <blockquote><p>Excerpts:<br /> - What I&#8217;ll cover at SXSW (1/10): How can you use the psychology of money to automate your finances? http://bit.ly/dhEInt #iwillteach<br /> - What I&#8217;ll cover at SXSW (2/10): How did I make $127,000 in one hour last month? http://bit.ly/dhEInt #iwillteach<br /> - What I&#8217;ll cover at SXSW (3/10): How do you handle irregular income &#038; expenses (e.g., freelancers)? http://bit.ly/dhEInt #iwillteach</p></blockquote> <p><center>* * *</center></p> <p><em>Not going to be at SXSW?</em></p> <ul> <li>Read my bookmarks on <a href="http://delicious.com/ramitsethi/psychology+finance">psychology and finance</a></li> <li>Hire me to <a href="http://www.iwillteachyoutoberich.com/about/speaking/">speak at your event</a></li> <li>Go watch a bunch of <a href="http://youtube.com/ramitsethi">videos of me yelling at people</a></li> </ul> <img src="http://www.iwillteachyoutoberich.com/?ak_action=api_record_view&id=4965&type=feed" alt="" /> <p><a href="http://feedads.g.doubleclick.net/~a/dHON7AfgiKnEhTGCcXgbuMt3rrY/0/da"><img src="http://feedads.g.doubleclick.net/~a/dHON7AfgiKnEhTGCcXgbuMt3rrY/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~a/dHON7AfgiKnEhTGCcXgbuMt3rrY/1/da"><img src="http://feedads.g.doubleclick.net/~a/dHON7AfgiKnEhTGCcXgbuMt3rrY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/IWillTeachYouToBeRich?a=eyDDUFVo4vI:kj6yX2hzOVo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/IWillTeachYouToBeRich?i=eyDDUFVo4vI:kj6yX2hzOVo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IWillTeachYouToBeRich?a=eyDDUFVo4vI:kj6yX2hzOVo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/IWillTeachYouToBeRich?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IWillTeachYouToBeRich?a=eyDDUFVo4vI:kj6yX2hzOVo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/IWillTeachYouToBeRich?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IWillTeachYouToBeRich?a=eyDDUFVo4vI:kj6yX2hzOVo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/IWillTeachYouToBeRich?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IWillTeachYouToBeRich?a=eyDDUFVo4vI:kj6yX2hzOVo:cGdyc7Q-1BI"><img src="http://feeds.feedburner.com/~ff/IWillTeachYouToBeRich?d=cGdyc7Q-1BI" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/IWillTeachYouToBeRich/~4/eyDDUFVo4vI" height="1" width="1"/>

Posted by Ramit Sethi on March 12, 2010 05:12 AM · permalink

 

Forget Robert McKee and Syd Field: If you want to learn how to make a successful Hollywood film, watch this:

<object height="261" width="425"><param name="movie" value="http://www.youtube.com/v/nFicqklGuB0&amp;hl=en_US&amp;fs=1&amp;"><param name="allowFullScreen" value="true"><param name="allowscriptaccess" value="always"><embed allowfullscreen="true" allowscriptaccess="always" height="261" src="http://www.youtube.com/v/nFicqklGuB0&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash" width="425"></embed></object>

Someone should do this for Bollywood films as well. With, like, eight mini-song montages, an interval and a kiss where no mouths are opened. Exciting, eh?

(Link via JSV.)

The India Uncut Blog © 2007 Amit Varma. All rights reserved.
Visit: India Uncut * The IU Blog * Rave Out * Extrowords * Workoutable * Linkastic

<script charset="utf-8" src="http://feeds.feedburner.com/~s/IUB?i=http://www.indiauncut.com/3638/" type="text/javascript"></script>

Posted by Amit Varma on March 12, 2010 05:09 AM · permalink

Milliblog!  
  <p><script type="text/javascript"><!-- google_ad_client = "pub-8487400353737535"; /* 468x60, created 7/27/08 */ google_ad_slot = "1855012627"; google_ad_width = 468; google_ad_height = 60; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script></p> <p><em>Dekho raste mein</em> evokes strong memories of Life is crazy from Wake Up Sid, but, thankfully, there are enough nuances here to hold your attention. Vishal Dadlani&#8217;s inimitable voice carries the <em>title song</em> even as it gets crushed under the weight of sounding vaguely reminiscent of many other songs from the trio. <em>Banware se pooche banwariya</em>, with 7 credited singers, is catchy fun, despite the nagging feeling that it is tediously flat as it progresses. Caralisa Monteiro steals the show in <em>Kal tum the yahan</em>, a pensive melody beautifully interrupted with imaginative musical pieces. Short, reasonably sweet and bordering-dreary soundtrack.</p> <p>Keywords: Arshad Warsi, Dia Mirza, Shankar Mahadevan, Ehsaan Noorani, Loy Mendonca</p>

Posted by Karthik on March 12, 2010 05:02 AM · permalink

  Before J.F. Daniell develops a much improved battery, the devices were impractical and downright dangerous. His innovations enable the telegraph and other technology to take off.


Posted by Daniel Dumas on March 12, 2010 05:00 AM · permalink

  <p> I will be speaking in a panel at the <a href="http://conf.headstart.in/2010/hyderabad-mar/agenda.php">HeadStart Conference, Hyderabad today</a> regarding what is the funding that was granted by the Govt. of India to my <a href="http://www.swaroopch.com/archives/category/ionlab/">ex-startup</a>, and how you can apply. </p> <p> <a title="Headstart Panel" href="http://conf.headstart.in/2010/hyderabad-mar/agenda.php"><img src="http://farm5.static.flickr.com/4048/4425030392_d006275807.jpg" alt="Headstart Panel" width="500" height="237" /></a> </p> <p> I converted the content I prepared into for-web-only slides for your perusal: </p> <p></p> <div> <iframe src="https://show.zoho.com/embed?id=460082000000009003" height="335" width="450" name="TePP" scrolling=no frameBorder="0" style="border:1px solid #AABBCC"></iframe> </div> <hr /> <p><small>© swaroop for <a href="http://www.swaroopch.com">Swaroop C H - India, Startup, Technology, Life Skills</a>, 2010. | <a href="http://www.swaroopch.com/blog/startup-funding-india-govt/">Permalink</a> | <a href="http://www.swaroopch.com/blog/startup-funding-india-govt/#comments">No comment</a> | Add to <a href="http://del.icio.us/post?url=http://www.swaroopch.com/blog/startup-funding-india-govt/&title=How to get funding from Government of India">del.icio.us</a> <br/> Post tags: <br/> </small></p>

Posted by Swaroop on March 12, 2010 04:30 AM · permalink

  <p>Hello Pythonistas !</p> <p>This Friday, at 9 am., we want to invite you to an unofficial montreal-python gathering, at Savoir-Faire Linux&#8217;s booth, in the St-Pierre room (across from the blue &#8220;Dinner/Lunch&#8221; room). (Hilton Bonaventure Hotel)</p> <p>Proposed subjects:<br /> - Intro to Python, for newcomers<br /> - Hands-on Pylons, Django and TG2<br /> - Distutils2, packaging .deb, .rpm, .egg<br /> - Documentation in Python, Sphinx and al<br /> - &#8230;</p> <p>And more than that, you can come if you&#8217;re registered to Confoo after 13h30 ! Wow ! </p>

Posted on March 12, 2010 04:27 AM · permalink

  Filmmaker Kathryn Bigelow, who won Best Director and Best Picture Oscars for <em>Hurt Locker</em> this week, "<a href="http://www.papermag.com/blogs/2010/03/kathryn_bigelows_punk_roots.php">was a member in good standing of the [NYC] punk scene of the late '70s and early' 80s</a>," according to <em>Paper Mag</em>. <em><small>(via Cate Park)</small></em> <br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=8050a54a86d6d96533ef2e6a0e683778&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=8050a54a86d6d96533ef2e6a0e683778&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/ghUgkJPKG-8" height="1" width="1"/>

Posted by Xeni Jardin on March 12, 2010 02:55 AM · permalink

  <object width="640" height="385"><param name="movie" value="http://www.youtube-nocookie.com/v/S49d-U5r3Hw&hl=en_US&fs=1&color1=0x5d1719&color2=0xcd311b"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/S49d-U5r3Hw&hl=en_US&fs=1&color1=0x5d1719&color2=0xcd311b" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object><p> Embedded here, a <a href="http://www.youtube.com/watch?v=S49d-U5r3Hw&feature=player_embedded">little teaser video</a> for <a href="http://storyofstuff.org/bottledwater/"><em>The Story of Bottled Water</em></a>, created by the same people behind "<a href="http://storyofstuff.org/">The Story of Stuff</a>" (<a href="http://en.wikipedia.org/wiki/The_Story_of_Stuff">Wikipedia</a>). Looks neat. I'm a big fan of tap water. I spend a fair amount of time in very poor communities in poor countries, with people who don't have access to safe drinking water. For them, like us, water is life&mdash;but it's also scarce or intermittent, contanimated, and a source of disease and death. I always come home feeling totally WTF'd at our obsession with bottled water, when our tap water is so accessible and among the world's purest. <p> <em><small>(via <a href="http://www.burningflags.com/main.php">Glen E. Friedman</a>)</small></em><br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=7ac8b049496f28f6e8b2065946787e92&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=7ac8b049496f28f6e8b2065946787e92&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/Yv26nDbndxE" height="1" width="1"/>

Posted by Xeni Jardin on March 12, 2010 02:51 AM · permalink

  <img alt="RecordingForJane.jpg" src="http://www.boingboing.net/2010/03/11/RecordingForJane.jpg" width="640" height="550" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /> <p> Note the conspicuous lack of smut! Frame from a <a href="http://blog.seattlepi.com/bookpatrol/archives/196227.asp">Seattle Post-Intelligencer gallery</a> of <em>Playboy</em> founder hugh Hefner's teenage doodles, sent to his high school <s>sweetheart</s> friend Jane Sellers in the early 1940s. The full collection is for sale at $250,000, from rare book dealer <a href="http://www.luxmentis.com">Lux Mentis</a> (who will send you a PDF listing collection contents upon request). <strong>Update</strong>: Ian J. Kahn of <a href="http://www.luxmentis.com">Lux Mentis</a> Booksellers tells Boing Boing, <blockquote>I should point out that Hugh and Jane did not date. He dated her best friend and she his...the four were the core of what they called "The Gang". The really interesting element is that as he evolved into "HH", this group of high school friends served as a touchstone...they were the ones who loved him *before*...and he turned them off and on for many, many years. My favorite story out of this is that Jane and the other girls would go over to Hugh's to read "School Daze" to see which of their boyfriends were "stepping out"...Hugh did not edit *anything*. He took notes during the day as to what people were wearing so he could sketch them accurately that evening. It is a remarkable visual diary.</blockquote> <small><em>(Via <a href="http://twitter.com/ebertchicago/status/10336546390">Roger Ebert</a>)</em></small><br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=1fe1dc151286bc7143720f9f39b03f1e&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=1fe1dc151286bc7143720f9f39b03f1e&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/lAyjrjV3L84" height="1" width="1"/>

Posted by Xeni Jardin on March 12, 2010 02:46 AM · permalink

  <p>Buried in<a href="http://www.nytimes.com/2010/03/12/business/global/12pension.html?hp=&amp;pagewanted=all"> this </a><em><a href="http://www.nytimes.com/2010/03/12/business/global/12pension.html?hp=&amp;pagewanted=all">New York Times</a></em><a href="http://www.nytimes.com/2010/03/12/business/global/12pension.html?hp=&amp;pagewanted=all"> article</a> is the calculation that U.S. federal government debt, including pension and health care obligations, is about 500 percent of GDP. This may explain why political debates have become acrimonious. Investors and some politically-minded folks have at least a gut feeling that we&#8217;re ridiculously overextended. Others rely on the stated fraction of GDP and think the debt is not a big deal. So each side is behaving rationally and rationally believes opponents to be insane.</p>

Posted by philg on March 12, 2010 02:42 AM · permalink

  Google's bike maps are "filled with potentially fatal flaws, including routes that cut across Central Park's treacherous transverse roads and steer cyclists through truck-riddled thoroughfares." <a href="http://www.nypost.com/p/news/local/google_gives_city_bikers_bum_steer_ll9XRaiMZUfVMPkc7b3oaJ"><em>New York Post</em></a>, <em><a href="http://www.informationweek.com/news/healthcare/patient/showArticle.jhtml?articleID=223500062">Information Week</a></em>.<br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=e7444dcbc75f63661ebf6b933093e77d&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=e7444dcbc75f63661ebf6b933093e77d&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/tdbOOF0ZvzQ" height="1" width="1"/>

Posted by Xeni Jardin on March 12, 2010 02:39 AM · permalink

  <p>The nine-year-old children who came into work with their father at the JFK Tower (<a href="http://www.nydailynews.com/ny_local/2010/03/06/2010-03-06_pilots_high_on_controller_in_jfk_mess.html">story, with audio recording</a>) seem to have captured the public imagination. I&#8217;ve been asked my opinion on this subject at least 25 times. A lot of why people are excited seems to stem from a misunderstanding of how the air traffic control (ATC) system works. Folks seem to think that controllers make split-second decisions and pilots react instantly to commands heard on the radio. The reality is that a plane can take off from JFK, lose contact with the controllers due to radio failure, and fly all the way to Los Angeles and land, without ever talking to another controller. The route of flight clearance issued prior to departure should be sufficient to get all the way to LAX.</p> <p>How about the takeoff clearances issued by the 9-year-olds? A light simple plane might start rolling immediately after receiving such a clearance. A heavy complex plane could be delayed for 15 seconds or longer as the pilots ran final checklists and waited for the engines to &#8220;spool up&#8221; (going from idle to full thrust takes about 8 seconds on the biggest planes). A controller would have several seconds after issuing the takeoff clearance to cancel it, which would cause the pilot to pull the power back and stop on the runway, possibly after rolling forward a few feet. The opportunities for miscommunication here were very few. The planes had already been told to &#8220;position and hold&#8221; on a particular runway by the father. At this point a jet is parked on an active runway. The pilots know that they can&#8217;t hang out there for very long. The only possible things that could be said to them are &#8220;continue to hold&#8221; (unnecessary but possibly something ATC would say), &#8220;cleared for takeoff&#8221;, or &#8220;exit the runway and contact Ground&#8221;. They already have their assigned departure heading, altitude, and the frequency for the next controller.</p> <p>The 9-year-olds also told some of the pilots to &#8220;contact Departure&#8221;. What would have happened if they never received the instruction and stayed with the Tower? Eventually they would have realized that they shouldn&#8217;t be talking to Tower at 5,000&#8242; above the ground and called to request a frequency change and/or simply switched to their already-assigned Departure control frequency.</p> <p>Because ATC needs to train new controllers, each workstation is equipped so that both the trainee and trainer can talk on the same frequency. The trainer can break in and override the trainee. This happens all the time at Hanscom Field, our home airport. The 9-year-olds did their job perfectly, so there was never a need for their father to correct or step in over them, but he could have done so at any time.</p> <p>There are several aspects to working as a tower controller. One is to figure out an overall flow and sequence that will work for a dozen or so airplanes at a time; this is pretty challenging and involves thinking in four dimensions (3D space plus time). A much simpler task is issuing instructions to make that flow and sequence happen. It seems doubtful that the 9-year-olds were involved in the puzzle solving challenge. They took on part of the instruction-issuing task. As a pilot I am much more nervous when a 25-year-old is being trained at Hanscom than I would have been at JFK talking to these 9-year-olds.</p> <p>For those who thought that the 9-year-olds were truly doing the job, I was surprised that they did not also question why more than $200,000 per year of their tax dollars were going to pay salary/benefits/pension for each controller. As far as the FAA bureaucracy is concerned, this is the organization that spent $9 billion in the 1980s and 1990s on some new software that had to be thrown out, the most expensive civilian software project failure in history. By making America $9 billion poorer, surely some Americans died as a consequence (being poor is generally less safe than being rich). Yet no FAA employees were disciplined. In fact, all concerned got pay raises, promotions, etc. The same organization is now disciplining the father of the 9-year-olds and his supervisor.</p>

Posted by philg on March 12, 2010 02:34 AM · permalink

  <p>My PyCon 2010 talk video is up. Enjoy: <a href="http://pycon.blip.tv/file/3332744">The Zen of CherryPy</a></p> <div class="item_footer"><p><small><a href="http://www.aminus.org/blogs/index.php/2010/03/11/zen-of-cherrypy-video?blog=2">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>

Posted on March 12, 2010 02:29 AM · permalink

Slashdot  
  CWmike writes "Canadian interface design firm MetaLab has accused Mozilla of stealing user interface elements for a development tool in the browser maker's Jetpack project, which aims to simplify add-on making. MetaLab leveled the charges on Tuesday when the 11-person firm's founder, Andrew Wilkinson, blogged about the similarities between his company's designs and those posted by Mozilla for FlightDeck, a Jetpack editor. 'What they did was pretty ridiculous,' Wilkinson said on Thursday. 'There's a difference between inspiration versus ripping something off,' he said. 'The measurements of the graphic elements [Mozilla took from us] were the exact same, the very same pixels. When someone takes your images from the server hosting them, that's crossing the line.' Mozilla apologized to MetaLab on Wednesday, saying in a blog post, 'While the design direction being implemented does not utilize these design elements, we inadvertently included the early mockups in our blog post and video announcing the next phase of development for the Jetpack SDK ... We sincerely apologize to MetaLab for incorporating design elements from their web site in our early mockups and for posting them publicly without proper attribution.'" Alexander Limi of the Firefox User Experience Team points out that MetaLab has accepted the apology, too — worth bearing in mind.

Read more of this story at Slashdot.

<iframe src="http://slashdot.org/slashdot-it.pl?op=discuss&amp;id=1580024&amp;smallembed=1" style="height: 300px; width: 100%; border: none;"></iframe>


Posted by timothy on March 12, 2010 02:08 AM · permalink

  <p>Waiting for a new Cirrus alternator, I&#8217;ve had plenty of time to roam around downtown Memphis, Tennessee. There are buildings or stores available to rent on every block. Approximately one third of the retail space seems vacant. Not too many folks are out on the streets, with the exception of Beale Street and its tourist blues joints. Overall it would appear that the city has about four times as much land as necessary and perhaps twice as much built space. Rehabbed townhouses a mile or so from downtown seem depressingly isolated; there is just not enough density to form a neighborhood and not enough green space to qualify as a suburb.</p> <p>If there is an economic recovery happening, it is difficult to see the effect on Memphis.</p>

Posted by philg on March 12, 2010 02:04 AM · permalink

GigaOM  
  <p><img title="rupertontv" src="http://gigaom.files.wordpress.com/2010/03/rupertontv.gif?w=210&#038;h=115" alt="" width="210" height="115" class="alignright size-thumbnail wp-image-105281" /> Rupert Murdoch, the legendary founder of News Corp., has always had a love-hate relationship with the digital world. Sometimes (read: during the bubbles) he loves it. Sometimes (read: during advertising recessions) he hates it. His recent moves &#8211; whether it be getting rid of some of News Corp&#8217;s digital holdings or shuffling the chairs at MySpace &#8212; are a continuation of that love-hate relationship. (Watch the video below the fold.)</p> <p>And as we all know (and have read), he is not so enamored with Google, the so-called content stealer. (Never mind that he was OK taking Google&#8217;s $900 million when the search giant wanted to run ads on MySpace.) <a href="http://video.foxbusiness.com/v/4100347/murdoch-on-the-future-of-technology-content/?playlist_id=87185">In an interview with Fox Business Network in Abu Dhabi, Murdoch said</a>:</p> <div id="inline-related-posts-105279" class="widget inline-related-posts alignleft clearfix"> <div class="widget-wrap"> <div class="widget-title-wrap clearfix"> <h2 class="widget-title">More on <span><a class="category-link" href="http://gigaom.com/topic/ipad" title="iPad">iPad</a></span></h2> </div> <ul class="inline-related-posts"> <li> <span class="inline-related-posts-article"><a href="http://gigaom.com/2010/03/10/the-power-of-mifi-in-the-tablet-era/">The Power of MiFi in the Tablet&nbsp;Era</a></span> <span class="brand-icon gigaom"><a href="http://gigaom.com" title="Visit: GigaOM - This is a description.">Tech Insider</a></span> </li> <li> <span class="inline-related-posts-article"><a href="http://gigaom.com/2010/03/08/the-unreleased-ipad-haunts-sxswi/">The Unreleased iPad Haunts&nbsp;SXSWi</a></span> <span class="brand-icon gigaom"><a href="http://gigaom.com" title="Visit: GigaOM - This is a description.">Tech Insider</a></span> </li> <li> <span class="inline-related-posts-article"><a href="http://gigaom.com/2010/03/05/ipad-on-sale/">iPad to Be Available in Stores on April 3rd &#8212; Plus, Our&nbsp;Poll</a></span> <span class="brand-icon gigaom"><a href="http://gigaom.com" title="Visit: GigaOM - This is a description.">Tech Insider</a></span> </li> <li> <span class="inline-related-posts-article"><a href="http://gigaom.com/2010/02/26/meet-the-ipads-micro-sim/">Meet the iPad&#8217;s Micro&nbsp;SIM</a></span> <span class="brand-icon gigaom"><a href="http://gigaom.com" title="Visit: GigaOM - This is a description.">Tech Insider</a></span> </li> </ul> </div> <div class="widget-bottom clearfix"></div> </div> <blockquote>“Well Fox is now paid for. People when they pay their cable bills some of it comes to Fox. Cable television is paid television. But search on the Internet whether it be Bing or Google, whatever, it’s free and they simply take all our expensive and we think very good content such as Wall Street Journal or whatever and what they call they scrape it and they use it for search, it gives them their raw material for nothing and then they have this very clever business model of charging for searching it, we don’t get any of that. And they are technologically brilliant, they are a long way ahead but they do not have the right to do it if we want to stop them.”</blockquote> <p>In contrast to Google, it seems he loves Apple&#8217;s iPad and what it can do for the publisher.</p> <blockquote>Now that Apple is coming out with the Ipad that will be a very interesting way, more media is going to go into the Ipad…And they’ll get better and better and you’ll be able to do more tricks with it…And particularly with advertising and you see an advisement and you touch it and it becomes a 30 second commercial it’ll be these sort of things will happen not this year perhaps.”</blockquote> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&blog=1149864&post=105279&subd=gigaom&ref=&feed=1" /><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=GgfYrCLRXBA:2bjIf-M3UNE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/OmMalik?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=GgfYrCLRXBA:2bjIf-M3UNE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/OmMalik?i=GgfYrCLRXBA:2bjIf-M3UNE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=GgfYrCLRXBA:2bjIf-M3UNE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/OmMalik?i=GgfYrCLRXBA:2bjIf-M3UNE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=GgfYrCLRXBA:2bjIf-M3UNE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/OmMalik?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=GgfYrCLRXBA:2bjIf-M3UNE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/OmMalik?i=GgfYrCLRXBA:2bjIf-M3UNE:D7DqB2pKExk" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/OmMalik/~4/GgfYrCLRXBA" height="1" width="1"/>

Posted by Om Malik on March 12, 2010 02:00 AM · permalink

  <p>For years I&#8217;ve maintained a page of <a href="http://www.sauria.com/blog/mac-tips-and-tricks/">Macintosh Tips and Tricks</a>. It&#8217;s one of the most referenced pages on my blog, so someone must be using it, despite the fact that it was only up to date for Mac OS 10.5. I&#8217;ve finally gotten around to updating it for my current world. I hope it continues to be useful.</p>

Posted by Ted Leung on March 12, 2010 01:10 AM · permalink

GigaOM  
  <p><a rel="attachment wp-att-105224" href="http://gigaom.com/2010/03/11/ohai-demos-speedy-game-expansion-help-liz-and-om-fight-off-pr-zombies/wu_photo/"><img title="Wu_Photo" src="http://gigaom.files.wordpress.com/2010/03/wu_photo.jpg?w=209&#038;h=117" alt="" width="209" height="117" class="alignleft size-full wp-image-105224" /></a><a href="http://www.ohai.com">Ohai</a> has grand ambitions of jumpstarting an industry for social massively multiplayer online (MMO) games. Think World of Warcraft crossed with FarmVille &#8212; engaging and rich, but also easy to use and social. The San Francisco-based company has a great ambassador in CEO Susan Wu, a former venture capitalist who became fascinated by the emerging market for virtual goods, then teamed up with MMO tech wizard Don Neufeld, formerly of Sony Online Entertainment, and raised $6 million from August Capital and Rustic Canyon Partners. But it still has a long way to go.</p> <p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="300" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://blip.tv/play/AYHMohkC" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="300" src="http://blip.tv/play/AYHMohkC" allowfullscreen="true"></embed></object></p> <p>Ohai&#8217;s first game, the vampire-themed <a href="http://www.cityofeternals.com/">City of Eternals</a>, came out in November and has 40,000 players across Facebook and the web, and its second game, Project Unicorn Parade (&#8220;an evocative, interactive world environment&#8221; with animals, says Wu), is coming soon. Ohai needs to be prolific, efficient and innovative to take on gaming heavyweights like EA and new juggernauts like Zynga, while growing its user base and revenue per user. So the company has tried to make itself nimble, building a platform for Flash-based games that can be tweaked and expanded on the fly and transformed completely to build a separate game (Ohai aims to release eight games per year). &#8220;I don&#8217;t view us as being in the content business,&#8221; said Wu. &#8220;I view as as being in web services, where we look at things like data and conversion rates.&#8221;</p> <p>We offered Ohai the chance to come in and show us what they&#8217;ve got, so they offered the one-two punch of Wu talking about the company and what it represents, combined with a Ohai content designer coming along to build, in pseudo real time, a virtual representation of the GigaOM office beset by &#8220;PR zombies&#8221; as a mission for City of Eternals. It&#8217;s a little hokey, to be sure, but it got me playing the game! If you&#8217;d like to help Om and I fight the PR zombies yourself, click <a href="http://play.cityofeternals.com?qid=3801107">here</a>. The <a href="http://blip.tv/file/3327229">video</a> of our chat with Wu is embedded above.</p> <p><strong>Related content from GigaOM Pro</strong> (sub req&#8217;d):</p> <ul> <li><a href="http://pro.gigaom.com/2010/01/how-the-next-zynga-could-reinvent-social-gaming/">How the Next Zynga Could Reinvent Social Games</a></li> <li><a href="http://pro.gigaom.com/2009/07/virtual-worlds-trends-and-opportunities/">Virtual Worlds: Trends and Opportunities</a></li> </ul> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&blog=1149864&post=105223&subd=gigaom&ref=&feed=1" /><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=E10DMICigbI:TM8s4hfXxZw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/OmMalik?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=E10DMICigbI:TM8s4hfXxZw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/OmMalik?i=E10DMICigbI:TM8s4hfXxZw:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=E10DMICigbI:TM8s4hfXxZw:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/OmMalik?i=E10DMICigbI:TM8s4hfXxZw:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=E10DMICigbI:TM8s4hfXxZw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/OmMalik?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=E10DMICigbI:TM8s4hfXxZw:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/OmMalik?i=E10DMICigbI:TM8s4hfXxZw:D7DqB2pKExk" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/OmMalik/~4/E10DMICigbI" height="1" width="1"/>

Posted by Liz Gannes on March 12, 2010 01:00 AM · permalink

  Shortly after the creation of the Environmental Protection Agency, the new organization sent 100 photographers out to document the human and natural environments. After a lively few years, the Documerica project was canceled and the photos were archived. Now, this incredible portrait of America in the mid-1970s is making its way onto Flickr.


Posted by Alexis Madrigal on March 12, 2010 01:00 AM · permalink

  With 3-D making a comeback, it's time to dig into Hollywood's history and excavate other cinematic technology that was groundbreaking for its time.


Posted by Lore Sjöberg on March 12, 2010 01:00 AM · permalink

  Out with the CD, in with USB drives, maybe in the form of a cassette tape or spork?


Posted by David Downs on March 12, 2010 01:00 AM · permalink

  With a 45,000-foot cruising altitude, the world's biggest airborne telescope will begin collecting data this spring.


Posted by Katharine Gammon on March 12, 2010 01:00 AM · permalink

Planet Intertwingly: Memes  
  Spotted by:<ul><li>Jeffrey Zeldman: <a href="http://zeldman.com/2010/03/10/my-sxsw/">My SXSW</a></li><li>Google: <a href="http://feedproxy.google.com/~r/blogspot/MKuf/~3/Q2ocCUIVA1M/googles-coming-to-austin-for-sxsw.html">Google’s coming to Austin for SXSW</a></li><li>Kyle Weems: <a href="http://cssquirrel.com/2010/03/08/comic-update-escaping-sxsw/">Comic Update: Escaping SXSW</a></li></ul>

Posted on March 12, 2010 12:47 AM · permalink

  <p>A couple of bad years can really bring down your average annual rate of return.</p> <p>Check out this graphic I posted nearly two years ago:</p> <p><center><img src="http://allfinancialmatters.com/wp-content/uploads/2010/03/BRKA-Returns-1967-2007.gif" alt="" title="BRKA Returns 1967 - 2007" width="322" height="506" class="alignnone size-full wp-image-4689" /></center></p> <p>Now here&#8217;s that same graphic updated through 2009:</p> <p><center><img src="http://allfinancialmatters.com/wp-content/uploads/2010/03/BRKA-Returns-1967-2009.gif" alt="" title="BRKA Returns 1967 - 2009" width="322" height="546" class="alignnone size-full wp-image-4688" /></center></p> <p>What a difference two years can make. </p> <p>It is important to note that Berkshire is currently trading at 122,537 per share, which is up 23.53% so far in 2010. That brings the average annual rate of return back up to 22.89% over the last 42.19 years.</p> <p>The question is: what will the stock return in the future? I&#8217;m not an analyst by any means but I would have to say that it would be tough for Berkshire to notch the kind of gains it has in the past. We have already seen this happen over the last several years. For instance, here is a comparison of Berkshire&#8217;s average annual returns over the first 5, 10, 15, and 20-year periods (beginning in 1968) and it&#8217;s last 5, 10, 15, and 20-year periods:</p> <p><center><img src="http://allfinancialmatters.com/wp-content/uploads/2010/03/Berkshire-Hathaways-Average-ROR-Over-5-10-15-and-20-Years-1968.gif" alt="" title="Berkshire Hathaway&#039;s Average ROR Over 5, 10, 15, and 20 Years (1968)" width="343" height="159" class="alignnone size-full wp-image-4693" /></center></p> <p><center><img src="http://allfinancialmatters.com/wp-content/uploads/2010/03/Berkshire-Hathaways-Average-ROR-Over-5-10-15-and-20-Years.gif" alt="" title="Berkshire Hathaway&#039;s Average ROR Over 5, 10, 15, and 20 Years" width="343" height="133" class="alignnone size-full wp-image-4692" /></center></p> <p>The bigger they grow, the harder it is for them to continue that growth. Each investment is a smaller and smaller piece of the pie.</p> <p><a href="http://feedads.g.doubleclick.net/~a/YbfA_8pK7WPG3LCJLWfJKD6HyRM/0/da"><img src="http://feedads.g.doubleclick.net/~a/YbfA_8pK7WPG3LCJLWfJKD6HyRM/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~a/YbfA_8pK7WPG3LCJLWfJKD6HyRM/1/da"><img src="http://feedads.g.doubleclick.net/~a/YbfA_8pK7WPG3LCJLWfJKD6HyRM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/AllFinancialMatters?a=SEp07Nvd3Gc:zbjkoHxx2Po:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AllFinancialMatters?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AllFinancialMatters?a=SEp07Nvd3Gc:zbjkoHxx2Po:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/AllFinancialMatters?i=SEp07Nvd3Gc:zbjkoHxx2Po:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AllFinancialMatters?a=SEp07Nvd3Gc:zbjkoHxx2Po:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AllFinancialMatters?i=SEp07Nvd3Gc:zbjkoHxx2Po:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AllFinancialMatters?a=SEp07Nvd3Gc:zbjkoHxx2Po:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/AllFinancialMatters?i=SEp07Nvd3Gc:zbjkoHxx2Po:gIN9vFwOqvQ" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/AllFinancialMatters/~4/SEp07Nvd3Gc" height="1" width="1"/>

Posted by JLP on March 12, 2010 12:45 AM · permalink

ongoing  
  <p>Suppose you want to use Flash on your website. I think this is a bad idea, but I accept that some are going to ignore my wise advice and do it anyhow. If you do this and you’re not careful, you can make it absolutely impossible for some people to see your show.</p> <p>Consider for example <a href="http://www.thesixtyone.com/">thesixtyone</a>, a nice sort-of-game-structured music site that I use for background when I’m working on something that’s not particularly taxing. It’s lively and well-designed and dynamic and an example of intelligent and graceful Ajax. Only it wouldn’t work for me when I first visited it.</p> <p>The reason is that it uses Flash to play its music. On both Camino and Safari, like many other people I use a Flash blocker; this disables Flash by default and shows me some sort of graphic indicating that there’s Flash there if I want to click on it. The number of irritating squirmy lame-ass ads that I never have to look at is remarkable; and when I hit YouTube or something like that, I click and watch.</p> <p>On thesixtyone, they’d hidden their Flash player, made it invisible somehow, so there was nowhere to click to make the music go. Don’t do that!</p>

Posted on March 12, 2010 12:01 AM · permalink

rediff.com  
  In what is being termed as a strong message to New Delhi, Pakistan Navy fired a range of missiles including anti-surface missiles from the recently acquired F-22P frigate, air-to-surface missiles from the P-3C aircraft and sub surface-to-surface missiles from Agosta 90B submarines.

Posted on March 12, 2010 12:01 AM · permalink

  The new Alice In Wonderland -- not a patch on Disney's 1951 animated classic of the same name.

Posted on March 12, 2010 12:01 AM · permalink

  A successful weight loss programme involves both, eating the right portions and exercising regularly. Read the following tips given by expert nutritionists on how you can achieve this.

Posted on March 12, 2010 12:01 AM · permalink

  Deccan Chargers' skipper and former Australian star Adam Gilchrist insists his team has much to live up to after rising from the bottom in the Indian Premier League's first season to be the champions in the second.

Posted on March 12, 2010 12:01 AM · permalink

  <p>Continuing with my list of favourite websites:</p> <p><strong><em><u><a href="http://blog.800ceoread.com/">Blog.800ceoread.com</a></u></em></strong></p> <p>I visit this at once a week. It gives very good suggestions on business books. Its reviews expose you to new ideas in the business. The sheer diversity of thought that is out there makes it a fascinating read.</p> <p><strong><a href="http://deeshaa.org/">Deeshaa.org</a></strong></p> <p>This is my colleague Atanu Dey&#8217;s blog. He is an economist and blogs on issues dealing with India&#8217;s development. He writes on what we have done wrong on the policy front, and what are the challenges that India faces on its path to development. He updates it frequently, and I check it about once a day.</p> <p><strong><a href="http://nayanaya.mobi/">NayaNaya.mobi</a></strong></p> <p>This is a made-for-mobile public aggregator of breaking news on many topics (created by my company). I check this on my phone the first thing in the morning. The India-centric headlines aggregated from multiple sources in different topics (national news, business, tech, cricket) provide a very good overview of all the ‘new-new&#8217; happenings.</p>

Posted by rajesh on March 12, 2010 12:00 AM · permalink

client k  
  <p>Where should you hold sales meetings?<br /> The simple answer is<br /> at your customer&#8217;s place of business.</p> <p><a href="http://www.forbes.com/2010/03/08/three-entrepreneur-myths-leadership-managing-rein.html?boxes=Homepagetoprated">As Shaun Rein states</a><br /> &#8220;Clients don&#8217;t want<br /> to come to your office.<br /> They don&#8217;t want to waste their time.&#8221;</p> <p>You also want to spend<br /> as much time in the customer&#8217;s operations<br /> as possible.<br /> The more time you spend there,<br /> the more knowledgable you will be<br /> about their business<br /> and<br /> the more you become<br /> part of their team.</p> <p>Some of the top consultants<br /> have NO real office<br /> (real = a office you can host client meetings at).<br /> They don&#8217;t need one.<br /> They are always consulting.</p> <p>Hold meetings at<br /> your customer&#8217;s place of business.</p>

Posted by k on March 11, 2010 11:56 PM · permalink

  Rich Gibson of the Gigapan project stopped by the Make offices today and showed me some of the cool super high res photos he's got online. The barnacle is mind blowing. Be sure to <a href="http://gigapan.org/alpha/gigapans/27625/">view the full image at GigaPan.org<br /></a> <iframe src="http://api.gigapan.org/beta/gigapans/27625/options/nosnapshots/iframe/flash.html" frameborder="0" height="275" scrolling="no" width="100%"></iframe><br /> <blockquote>This barnacle Nano Gigapan is really cool. Take your time, really zoom in and explore this one. The barnacle was found washed up on the back of a crab shell at Mendocino's big river beach. In this Nano Gigapan you can see the crab shell around the base of the barnacle. <br /><br />This image is composed of 384 pictures taken with a scanning electron microscope, which took me around 5-6 hours to capture. The barnacle is magnified 800x.</blockquote> The <a href="http://nanogigapan.blogspot.com/2010/03/giant-penny.html">penny is really neat</a>, too. Rich said he will soon write a post explaining how he takes these photos. <p><a href="http://nanogigapan.blogspot.com/">Nano Gigapan Blog</a><br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=6753334b43876d516e7783cdb950c7f4&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=6753334b43876d516e7783cdb950c7f4&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/yrivrU8EHhY" height="1" width="1"/>

Posted by Mark Frauenfelder on March 11, 2010 11:33 PM · permalink

GigaOM  
  <p>One of the more solid and genuinely useful Internet startups out there, travel fare aggregator <a href="http://www.kayak.com/">Kayak</a>, was dissected in a report released today by NeXt Up Research for <a href="http://www.sharespost.com/companies/kayak">SharesPost</a>. NeXt Up thinks that with a heavy advertising spend, Kayak should have a compound annual growth rate (CAGR) of 18 percent from 2009 to 2012. Based on estimated revenue and comparison to competitors, the report estimates Kayak&#8217;s market cap at between $705 and $771 million.</p> <p>Is Kayak a promising IPO candidate? You decide. Here are some of the relevant assessments:</p> <table> <tbody> <tr> <td><a rel="attachment wp-att-105191" href="http://gigaom.com/2010/03/11/kayaks-projected-market-cap-more-than-705m/kayakrevenues/"><img title="kayakrevenues" src="http://gigaom.files.wordpress.com/2010/03/kayakrevenues.png?w=485&#038;h=172" alt="" width="485" height="172" class="alignleft size-full wp-image-105191" /></a></td> </tr> </tbody> </table> <ul> <li><p>Meta search engines like Kayak accounted for less than 8 percent of online travel booked in 2009, due mostly to low awareness.</p></li> <li><p>Kayak is spending heavily to make itself better known &#8212; NeXt Up estimates an advertising budget of $50 million a year, but Kayak has said itself it <a href="http://www.prnewswire.com/news-releases/kayakcom-appoints-robert-birge-as-chief-marketing-officer-61936012.html">plans to spend</a> $100 million on marketing.</p></li> <li><p>The travel industry should recover from the recession and see a CAGR of 4 percent from 2009 to 2013, with online travel agents growing with a 7 percent CAGR.</p></li> <li><p>Promising Kayak initiatives include its iPhone apps (<a href="http://gigaom.com/2009/12/09/how-the-iphone-changed-kayaks-business/">see our story</a>) and Travelpost, its TripAdvisor competitor.</p></li> <li><p>Kayak is projected to have revenue of $180 million in 2010, growing to $305 million in 2014 with EBITDA margins of 30-35 percent.</p></li> <li><p>Kayak has raised about $224 million in venture funding and debt from General Catalyst, Sequoia Capital, Accel Partners, Oak Investment Partners, Tenaya Capital, Trident Capital, Gold Hill Capital, Norwest Venture Partners, Silicon Valley Bank and AOL.</p></li> </ul> <p><strong>Related content from GigaOM Pro (sub req&#8217;d): </strong></p> <p><a href="http://pro.gigaom.com/2009/08/what-twitter-airfare-sales-tell-us-about-real-time-e-commerce/">What Twitter Airfare Sales Tell Us About Real-Time E-Commerce</a></p> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&blog=1149864&post=105189&subd=gigaom&ref=&feed=1" /><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=zvKQPKg5wog:tjbxI_Q9nxs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/OmMalik?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=zvKQPKg5wog:tjbxI_Q9nxs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/OmMalik?i=zvKQPKg5wog:tjbxI_Q9nxs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=zvKQPKg5wog:tjbxI_Q9nxs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/OmMalik?i=zvKQPKg5wog:tjbxI_Q9nxs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=zvKQPKg5wog:tjbxI_Q9nxs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/OmMalik?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=zvKQPKg5wog:tjbxI_Q9nxs:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/OmMalik?i=zvKQPKg5wog:tjbxI_Q9nxs:D7DqB2pKExk" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/OmMalik/~4/zvKQPKg5wog" height="1" width="1"/>

Posted by Liz Gannes on March 11, 2010 11:30 PM · permalink

  From Romenesko: "<a href="http://www.poynter.org/column.asp?id=45&amp;aid=179369">NPR blogger uses all of Tribune CEO's banned words in one sentence</a>" <blockquote>He lent a helping hand to a legendary incarcerated pedestrian lone gunman (the perpetrator who over in a neighboring state, perished in a perfect storm of no brainers and things that went terribly wrong, and was plagued by killing sprees in which he gave 110% only to have his senseless murders marred by the untimely deaths of guys and folks whose fatal deaths came in the wake of auto accidents....</blockquote> <br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=158b4b6d7cd3d17608725f99fc43d04c&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=158b4b6d7cd3d17608725f99fc43d04c&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/Z-W0lb2v20c" height="1" width="1"/>

Posted by Mark Frauenfelder on March 11, 2010 11:27 PM · permalink

Slashdot  
  nut writes "Everybody's favourite actor, author and starship captain is bringing some new ideas to the world of social networking. Myouterspace.com is, in the Captain's own words, '...a Sci Fi Social Network for those with a passion for the arts.' Facebook and Myspace should be worried. Sign up now. Go on, you know you want to."

Read more of this story at Slashdot.

<iframe src="http://slashdot.org/slashdot-it.pl?op=discuss&amp;id=1579996&amp;smallembed=1" style="height: 300px; width: 100%; border: none;"></iframe>


Posted by timothy on March 11, 2010 11:22 PM · permalink

GigaOM  
  <p><img title="prius-3" src="http://earth2tech.files.wordpress.com/2010/03/prius-3.jpg?w=300&#038;h=198" alt="" width="300" height="198" class="alignleft size-medium wp-image-53085" />Not too long ago, Toyota reigned as the seemingly untouchable hybrid leader. That dominance &#8212; in terms of both market share (50 percent of hybrids sold in the U.S.) and mindshare (no alt-fuel vehicle on the market is better known or more widely recognized than the Toyota Prius) &#8212; means that as the Prius image takes a beating, other models across the spectrum of green cars will also get bruised. <span id="more-105247"></span></p> <p>Mike Omotoso, senior manager for J.D. Power and Associates&#8217; global powertrain unit, told me the firm plans to lower its hybrid and electric vehicle forecast for 2010, although it has yet to determine how big the hit will be. For the first two months of this year, the hybrid share of light vehicle sales hovered at around just 2.3 percent, compared to 2.8 percent for all of 2009 and 2.4 percent in 2008, according to Omotoso. That&#8217;s due to a number of factors &#8212; including high unemployment, a weak economy and the biggie: gas prices. But the Prius and its technical troubles loom too large to ignore.</p> <p>Prior to 2009, the Prius&#8217; share of U.S. hybrid sales had slipped below 50 percent only once since 2005 &#8212; in 2006, when it dropped to 42 percent. But even that offers a sign of Toyota&#8217;s dominance in the hybrid space. Omotoso explained that 2006 marked &#8220;the first year for the Camry hybrid and the first full year for the Highlander hybrid. So other Toyota models cannibalized Prius sales.&#8221;</p> <p>Regulators are only beginning to look into the most recent incidents. But initial reports suggest the problems may not have been linked to a floor mat that pinned down the gas pedal in other Priuses and prompted Toyota to issue a recall last year for 2004-2009 models of the hybrid. Last month, when problems surfaced with the regenerative braking system of some 2010 Prius models, <a href="http://earth2tech.com/2010/02/07/the-anxiety-of-digital-cars-power-grid-up-next/">Toyota attributed them to a software glitch</a>.</p> <p>Regardless of what investigators and Toyota may turn up if they check out the cars involved in this week&#8217;s incidents more closely, however, one thing&#8217;s already clear: Videos that zipped around the web and TV news shows this week of a visibly shaken driver, and <a href="http://www.msnbc.msn.com/id/35781956/ns/business-autos/">quotes from the 911 call he made</a> during the 23 minutes that his 2008 Prius hurdled at high speeds down a Southern California highway before a highway patrol officer helped him stop, aren&#8217;t helping to repair the reputation of either Toyota or advanced vehicles.</p> <p>Given the Prius&#8217; status as the poster child for hybrids, Omotoso explained, &#8220;consumers might think that if the Prius has a problem then all hybrids might be dangerous.&#8221; That concern creates one more obstacle for new vehicle technologies to penetrate the mainstream, as some car buyers may forgo experimenting with the next generation of green cars &#8212; among them plug-in hybrids and all-electric vehicles from General Motors&#8217; Chevy Volt and Nissan&#8217;s LEAF to BYD Auto&#8217;s e6, Coda Automotive&#8217;s Coda Sedan and Fisker Automotive&#8217;s Nina &#8212; rolling out over the next few years.</p> <p>That perception problem is a hurdle that many car makers can&#8217;t really afford in this nascent market. Plug-in vehicle developers are competing for a niche that&#8217;s likely to remain quite small for years to come. Nearly a decade after the Prius debut, hybrids still hold a single-digit sliver of the pie. And despite optimistic projections from investors like<a href="http://earth2tech.com/2009/11/30/warren-buffett-all-cars-will-be-electric-by-2030/"> Warren Buffett, who has said he expects <em>all</em> cars will run on electricity by 2030</a>, other forecasts suggest significantly slower adoption, mainly due to high price tags.</p> <p><a href="http://earth2tech.com/2009/10/07/even-with-soaring-oil-prices-electric-vehicles-will-trickle-in/">Lux Research forecasts that even if oil costs $200 a barrel in 2020</a>, just 4 percent of vehicles sold globally will be all-electric or plug-in hybrid because of the high costs of the battery technology. According to Lux, plug-in hybrids could sell 3 million units per year by 2020 if the price of oil reaches those heights, while hybrids can be expected to sell that many by 2020 regardless of oil prices.</p> <p>In addition to presenting a challenge to companies vying to win over consumers to advanced vehicles, Toyota&#8217;s ongoing troubles also highlight a need for the government, the auto industry and even drivers to collect and manage (or in the case of drivers, to file), vehicle safety data and complaints in a more open and timely manner. Noting in prepared testimony that regulators and Toyota had received complaints of unintended acceleration in Toyota models seven years ago, Consumers Union is <a href="http://blogs.consumerreports.org/cars/2010/03/consumers-union-testimony-on-nhtsas-oversight.html">issuing that challenge </a>&#8211; to increase transparency of vehicle safety data &#8211; in a hearing this morning on the National Highway Traffic Safety Administration&#8217;s oversight operations. As much as technology may be part of the problem with Toyota&#8217;s vehicles, it could also be part of the solution &#8212; helping identify problems before too many drivers are put in the situation of having to call 911 from behind the wheel of an out-of-control car.</p> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&blog=1149864&post=105247&subd=gigaom&ref=&feed=1" /><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=7V7yTgyNU40:aV5OAbcqXrk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/OmMalik?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=7V7yTgyNU40:aV5OAbcqXrk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/OmMalik?i=7V7yTgyNU40:aV5OAbcqXrk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=7V7yTgyNU40:aV5OAbcqXrk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/OmMalik?i=7V7yTgyNU40:aV5OAbcqXrk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=7V7yTgyNU40:aV5OAbcqXrk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/OmMalik?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=7V7yTgyNU40:aV5OAbcqXrk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/OmMalik?i=7V7yTgyNU40:aV5OAbcqXrk:D7DqB2pKExk" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/OmMalik/~4/7V7yTgyNU40" height="1" width="1"/>

Posted by Josie Garthwaite on March 11, 2010 11:19 PM · permalink

  <object type="application/x-shockwave-flash" data="http://www.todaysbigthing.com/betamax/betamax.swf?item_id=3102&fullscreen=1" width="640" height="480"> <param name="allowScriptAccess" value="sameDomain" /> <param name="allowfullscreen" value="true" /> <param name="movie" quality="best" value="http://www.todaysbigthing.com/betamax/betamax.swf?item_id=3102&fullscreen=1" /> </object> <p> The adorable little boy in this video, whose name is Calen, is sorting out what it means when two fellas get married to one another. <p> At one point, while face-palming, he says pensively: "I always see husbands and wifes, but this is the very first time I saw husbands and husbands! That's so funny. So&mdash;so you love each other! [...] I'm gonna go play now." <p> <p> Video: <a href="http://www.youtube.com/watch?v=PjPgnDT-2Sg">Husbands and Husbands</a>. Flip-cammed and uploaded by YouTube user <a href="http://www.youtube.com/user/TheColonelFrog">TheColonelFrog</a>. <p> <a href="http://www.todaysbigthing.com/2010/03/11">Alternate video url 1</a>, and <a href="http://www.collegehumor.com/video:1930431">Alternate video url 2</a>.<p> <em><small>(<a href="http://www.dangerousminds.net/index.php/site/comments/husbands_and_husbands/">Dangerous Minds</a> via <a href="http://ohhaveyouseenthis.blogspot.com/2010/03/husbands-and-husbands.html">Oh Have You Seen This</a>, thanks <a href="http://www.dangerousminds.net/">Tara McGinley</a>!).</small></em><br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=406eaea4b5e65668397a0c0f5e8706fd&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=406eaea4b5e65668397a0c0f5e8706fd&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/Ncrybb-qIIw" height="1" width="1"/>

Posted by Xeni Jardin on March 11, 2010 11:18 PM · permalink

Ning Blog  
  <p><img class="alignnone size-full wp-image-22646" title="megaphone" src="http://blog.ning.com/wp-content/uploads/2010/03/megaphone.jpg" alt="megaphone" width="616" height="420" /></p> <p>If you&#8217;ve been reading along, you know we&#8217;re pretty excited about the ways we&#8217;ve integrated with <a href="http://blog.ning.com/2010/01/integrate-twitter-with-your-ning-network.html">Twitter</a> and <a href="http://blog.ning.com/2010/02/integrate-your-ning-network-with-facebook.html">Facebook</a>. Both services provide tremendous audiences for sharing and syndicating content from your Ning Network, but we also know they aren&#8217;t the only game in town, at least when it comes to social sharing.</p> <p>For a while now, there&#8217;s <a href=" http://creators.ning.com/forum/topics/sharing-ning-sites-with-digg">been an issue</a> with how Ning Networks framebust, making it difficult to use various services for sharing content across the Internet. While it isn&#8217;t possible to remove the framebust entirely, we put in a fix this week so that content opened within a frame will framebust to the correct page, not to the main page of your Ning Network as it previously did. This fix will make sharing content through these services — and driving traffic back to specific pages on your Ning Network — much more effective.</p> <p>With this fix in mind, we asked a couple of Network Creators to share some of their favorite social sharing services they recommend you get started using.</p> <p>Jen, from the <a href="http://theningdirectory.ning.com/">Ning Directory</a> and <a href="http://www.petbrags.com/">PetBrags</a>, likes using StumbleUpon:</p> <p><a href="http://www.stumbleupon.com">StumbleUpon</a> is a free service from where internet surfers can find (stumble-upon) new sites according to their interests. For Ning Network Creators, it’s a great way to submit interesting content or stories from your Ning site, for others to stumble it. What I really like about StumbleUpon, this service gives anyone the opportunity to share content. Also keep in mind, even if your story isn’t noticed the first time around, it’s likely to get indexed by Google. This will bring you traffic in the future.</p> <p>Alice, from <a href="http://www.mymodernmet.com/">My Modern Met</a>, shares content with Digg and Reddit:</p> <p>Though <a href="http://digg.com/">Digg</a> has more visitors [than <a href="http://www.reddit.com/">Reddit</a>], both sites are equally good in helping a website gain traffic. Due to their size and popularity, a website can gain a good amount of exposure if their content lands on one of these sites. You can also expect a lot of links back to your site if it&#8217;s found on Digg or Reddit. These sites usually trigger other bookmarking sites and blogs to see you as more of a source or content provider</p> <p>For both StumbleUpon and Digg, you can share content directly from your Ning Network. Click on the &#8220;share&#8221; icon on any piece of content, and choose the service you&#8217;d like to send content to.</p> <p>What services do you like using to share and syndicate content?</p>

Posted by Laura Oppenheimer on March 11, 2010 11:00 PM · permalink

  Minnesota seeks to distinguish itself in the increasingly reality TV-esque race to convince Google to build a high-speed fiber optic network there with a video featuring junior US Senator (and former comedian) Al Franken. It's funny stuff, but also serious business as Google shakes up the notoriously uncompetitive ISP business just by showing up.


Posted by Eliot Van Buskirk on March 11, 2010 10:56 PM · permalink

  Visit <a href="http://astore.amazon.com/boiboi-20">our new online store</a>, filled with a hand-picked selection of books, toys, games, gadgets and miscellaneous tat that we like. It uses Amazon's platform, which means that we get paid with referral fees cut from their end: the prices to you are the same as usual. We're going to regularly prune it, too, so that the choices are fresh!<br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=42ba83b308a79c242db6bdd2cd41b39e&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=42ba83b308a79c242db6bdd2cd41b39e&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/11Br_cqw3Ok" height="1" width="1"/>

Posted by Rob Beschizza on March 11, 2010 10:48 PM · permalink

Slashdot  
  MikeChino writes "A group of scientists from Germany's Fraunhofer Institute have devised a way to encode a visible-frequency wireless signal in light emitted by plain old desklamps and other light fixtures. The team was able to achieve a record-setting data download rate of 230 megabits per second, and they expect to be able to double that speed in the near future. While the regular radio-frequency Wi-Fi most of us use currently is perfectly fine, it does have its flaws — it has a limited bandwidth that confines it to a certain spectrum and if you've ever had someone leech off of your connection, you know that it also leaks through walls. LED wireless signals would theoretically have none of these downsides."

Read more of this story at Slashdot.

<iframe src="http://slashdot.org/slashdot-it.pl?op=discuss&amp;id=1579924&amp;smallembed=1" style="height: 300px; width: 100%; border: none;"></iframe>


Posted by timothy on March 11, 2010 10:38 PM · permalink

  <p><em>From <a href="http://blogs.barrons.com/techtraderdaily/2010/03/11/apple-iphone-os-40-reportedly-to-include-multitasking/">Tech Trader Daily</a>:</em></p> <p>Apple (<a href="http://online.barrons.com/public/quotes/main.html?symbol=aapl">AAPL</a>) plans to offer a “full-on solution” for multitasking in version 4.0 of the iPhone OS, <a href="http://www.appleinsider.com/articles/10/03/11/apples_iphone_4_0_software_to_deliver_multitasking_support.html">according to AppleInsider</a>. </p> <div class='mceTemp' style='text-align: left;'> <dl class='wp-caption alignleft caption-alignleft' style='width: 262px'> <dt class='wp-caption-dt'><img src='http://online.wsj.com/media/iphone_D_20100311173019.jpg' width='262' height='174' class='size-full wp-image-5'/></dt> <dd class='wp-caption-dd wp-cite-dd' style='text-align: right;'>Associated Press</dd> <dd class='wp-caption-dd' style='text-align: left;'>A customer displays an iPhone at an Apple store in Palo Alto, Calif.</dd> </dl> </div> <p>An inability to run more than one application at a time is one of the most frequent criticisms of the iPhone OS - and the ability to multitask is often touted as a point of differentiation by rival handset makers. The new version of the iPhone OS is expected to launch this summer.</p> <p>The story is attributed to “people with a proven track record in predicting Apple’s technological advances.”</p> <p>The piece notes that there has never been a technical issue preventing the phone from running multiple third-party apps at the same time; the issue is that the phone’s security model takes that approach to prevent apps from running in the background without the user knowing it, eliminating potential spyware, adware and viruses.</p> <p>AAPL today is down 46 cents, or 0.2%, to 224.38.</p> <p><a href="http://feedads.g.doubleclick.net/~at/92SwQyG7Q1BIw_K6GqqLvY46bCU/0/da"><img src="http://feedads.g.doubleclick.net/~at/92SwQyG7Q1BIw_K6GqqLvY46bCU/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~at/92SwQyG7Q1BIw_K6GqqLvY46bCU/1/da"><img src="http://feedads.g.doubleclick.net/~at/92SwQyG7Q1BIw_K6GqqLvY46bCU/1/di" border="0" ismap="true"></img></a></p><div class="feedflare"> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=9fWxNU1hSnw:TxpuX328XJ0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=9fWxNU1hSnw:TxpuX328XJ0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?i=9fWxNU1hSnw:TxpuX328XJ0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=9fWxNU1hSnw:TxpuX328XJ0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?i=9fWxNU1hSnw:TxpuX328XJ0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=9fWxNU1hSnw:TxpuX328XJ0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?d=qj6IDK7rITs" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/wsj/biztech/feed/~4/9fWxNU1hSnw" height="1" width="1"/>

Posted by Eric Savitz on March 11, 2010 10:32 PM · permalink

  <img src="http://www.boingboing.net/aerogel.jpg" height="348" width="431" border="0" align="left" hspace="4" vspace="4" alt="Aerogel" /> <br clear="all"><P>Now in the <a href="https://makersmarket.com/market_collections/2">Boing Boing Bazaar</a>: chunks of aerogel! $50 buys you a pair of aerogel discs. <blockquote>Silica aerogel, the infamous and ethereal material comprised of up to 99.98% air, can be yours at last. Known for its superinsulating abilities, ultralow density, and its use on the Mars rovers, silica aerogel is just one member of the amazing class of materials known as aerogels, which promise to revolutionize everything from buildings to electric energy storage to hydrogen to lightweight structures. <p>These discs here are the old-fashioned "Classic Silica" flavor of aerogel and are composed of 96% air. While in principle capable of supporting 2000 times their weight in applied force, remember that 2000 times almost nothing is a small number, and that in its classic form, silica aerogel is fragile. This form factor of aerogel, what we call "monolithic" aerogel, is best for curiosity, display, shooting lasers through, etc.</blockquote> <p><a href="https://makersmarket.com/products/217-silica-aerogels-one-to-keep-one-to-break">Aerogel chunks in Boing Boing Bazaar</a> <p><div class="previously2"> <em>Previously:</em><ul><li><a href="http://boingboing.net/2010/03/02/chaotic-pendulums-fo.html#previouspost">Chaotic Pendulums for sale in Bazaar</a></li> <li><a href="http://boingboing.net/2010/02/19/miniboss-t-shirt-in.html#previouspost">Miniboss T-shirt in the Bazaar </a></li> <li><a href="http://boingboing.net/2010/02/24/get-a-p8tch-at-the-b.html#previouspost">Get a P8TCH at the Bazaar</a></li> <li><a href="http://boingboing.net/2010/02/15/hines-felt-camera-ca.html#previouspost">Hine&#39;s felt camera cases in the Bazaar </a></li> <li><a href="http://boingboing.net/2010/03/03/tiny-glass-bell-jar.html#previouspost">Tiny glass bell jar display case</a></li> <li><a href="http://boingboing.net/2010/03/02/zombie-shadow-maker.html#previouspost">Zombie shadow maker</a></li> <li><a href="http://boingboing.net/2010/02/16/hollow-spy-coins-for.html#previouspost">Hollow spy coins for all your micro-smuggling needs </a></li> </ul> </div><br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=655052cef881e234ae378030ed417124&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=655052cef881e234ae378030ed417124&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/R3i3SPkBGZc" height="1" width="1"/>

Posted by Mark Frauenfelder on March 11, 2010 10:31 PM · permalink

  The key to your health may be the feedback loop that a lot of new health data-gathering gadgets can create. It's like a game where your stats are the score, and a better score means better health.


Posted by Thomas Goetz on March 11, 2010 10:30 PM · permalink

  A co-conspirator in the TJX hack was sentenced Thursday to 3 years and 10 months in prison for laundering money on behalf of TJX hacker Albert Gonzalez.


Posted by Kim Zetter on March 11, 2010 10:30 PM · permalink

Slashdot  
  HvitRavn writes "SolarPHP 1.0 stable was released by Paul M. Jones today. SolarPHP is an application framework and library, and is a serious contender alongside Zend Framework, Symphony, and similar frameworks. SolarPHP has in the recent years been the cause of heated debate in the PHP community due to provocative benchmark results posted on Paul M. Jones' blog."

Read more of this story at Slashdot.

<iframe src="http://slashdot.org/slashdot-it.pl?op=discuss&amp;id=1579908&amp;smallembed=1" style="height: 300px; width: 100%; border: none;"></iframe>


Posted by timothy on March 11, 2010 10:18 PM · permalink

  <p>The <strong>Federal Reserve</strong>’s latest flow of funds report offers a clue for those trying to understand why banks often don’t want to lend to businesses: By some measures, businesses’ finances are still deteriorating.</p> <p>In the fourth quarter of 2009, nonfinancial corporate businesses’ net worth &#8212; what they have minus what they owe &#8212; declined 1.9%, notching its ninth straight quarter of contraction. The main driver of the drop is companies’ real-estate holdings, which tend to include things like land, warehouses and offices that have kept falling in value even as residential real estate has rebounded a bit.</p> <p>One problem with the fall in net worth is that it can drive a wedge between the interests of a company’s owners and its creditors. With less to lose, the owners might be willing to take on more risk in the hopes of making big gains. The creditors, by contrast, are more likely to take a bigger loss if the owners’ bets go wrong. Consider, for example, a guy who bets $11 on a horse that pays double if it wins, $1 of his own money and $10 borrowed at 10% interest. In the best case, he makes $10; in the worst, he loses $1, with the creditors taking the rest of the hit.</p> <p>Those odds can make bankers wary of lending to anyone, a problem noted long ago by economists <strong>Ben Bernanke</strong> and <strong>Mark Gertler</strong>, who developed a concept known as the “financial accelerator” to describe how such lending problems can aggravate economic downturns. If the latest data on bank lending are any indication, the accelerator could still be engaged: As of the end of 2009, total bank lending to businesses &#8212; known as commercial and industrial lending &#8212; was down 18% from a year earlier.</p> <p><a href="http://feedads.g.doubleclick.net/~at/8kgvDDAVyj7gdXXUKF6B_7xhUN0/0/da"><img src="http://feedads.g.doubleclick.net/~at/8kgvDDAVyj7gdXXUKF6B_7xhUN0/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~at/8kgvDDAVyj7gdXXUKF6B_7xhUN0/1/da"><img src="http://feedads.g.doubleclick.net/~at/8kgvDDAVyj7gdXXUKF6B_7xhUN0/1/di" border="0" ismap="true"></img></a></p><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/wsj/economics/feed?a=dg9JZxWwfnI:PuSyBCjRWhM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wsj/economics/feed?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wsj/economics/feed?a=dg9JZxWwfnI:PuSyBCjRWhM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/wsj/economics/feed?i=dg9JZxWwfnI:PuSyBCjRWhM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wsj/economics/feed?a=dg9JZxWwfnI:PuSyBCjRWhM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wsj/economics/feed?i=dg9JZxWwfnI:PuSyBCjRWhM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wsj/economics/feed?a=dg9JZxWwfnI:PuSyBCjRWhM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wsj/economics/feed?d=qj6IDK7rITs" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/wsj/economics/feed/~4/dg9JZxWwfnI" height="1" width="1"/>

Posted on March 11, 2010 10:16 PM · permalink

  <p><a href="http://chris.pirillo.com/afternoon-quickie/">Afternoon Quickie</a> is a post from <a href="http://chris.pirillo.com">Chris Pirillo</a></p><p><a href="http://www.flickr.com/photos/lockergnome/4425909404/" title="Afternoon Quickie by l0ckergn0me, on Flickr"><img src="http://farm5.static.flickr.com/4035/4425909404_61d522c31f.jpg" width="375" height="500" alt="Afternoon Quickie" /></a></p><p>&#8220;Make it fast, please.&#8221;</p><p>Snapped at the Austin International Airport &#8211; as suggested by <a href="http://twitter.com/hipsforhire">Imei</a>.<ul class="related_post"><li><a href="http://chris.pirillo.com/no-entry/" title="No Entry">No Entry</a></li></ul> <p><a href="http://feedads.g.doubleclick.net/~a/Bq453jJgkx0BaOgnGGGSqxeOosY/0/da"><img src="http://feedads.g.doubleclick.net/~a/Bq453jJgkx0BaOgnGGGSqxeOosY/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~a/Bq453jJgkx0BaOgnGGGSqxeOosY/1/da"><img src="http://feedads.g.doubleclick.net/~a/Bq453jJgkx0BaOgnGGGSqxeOosY/1/di" border="0" ismap="true"></img></a></p>

Posted by Chris on March 11, 2010 10:11 PM · permalink

Slashdot  
  j00bhaka writes "I am a US citizen attending university in Nova Scotia, Canada. I currently have the Verizon America and Canada plan (also known as the North American plan). My bill is currently around $80-$100 per month. I chose this for a couple reasons. One, I have had my number for about 7 years. Two, I do not permanently live in Canada. I live in Canada for 8 months out of the year at school, then travel home for the summer months. Either way, I would be dealing with international roaming without having both countries in my plan. Currently, I obviously don't have a smartphone. Through Verizon, I could purchase one, and add their international unlimited data plan on top of my (already) hefty phone bill. I have looked into Telus and Rogers here in Canada and cannot find anything better. As a student, my budget is obviously limited. Is there any way to reasonably have (and utilize) a smartphone while I am living in both countries? If so, what do you suggest I do?"

Read more of this story at Slashdot.

<iframe src="http://slashdot.org/slashdot-it.pl?op=discuss&amp;id=1579870&amp;smallembed=1" style="height: 300px; width: 100%; border: none;"></iframe>


Posted by timothy on March 11, 2010 09:54 PM · permalink

  <a href="http://jalopnik.com/5491101/">Jalopnik reports that</a> "James Sikes, the <a href="http://jalopnik.com/5488716/runaway-toyota-prius-stopped-by-california-patrol-car">San Diego runaway Toyota Prius driver</a>, filed for bankruptcy in 2008 and now has over $700,000 in debt. According to one anonymous tipster, we're also told he hasn't been making payments on his Prius." So was his story a fake? <em><small>(via <a href="http://twitter.com/chr1sa/status/10338792151">Chris Anderson</a>)</small></em><br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=ec6dc0d8233db54d42a2b1983ba1b80c&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=ec6dc0d8233db54d42a2b1983ba1b80c&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/Xovj0nk02CE" height="1" width="1"/>

Posted by Xeni Jardin on March 11, 2010 09:29 PM · permalink

  <img alt="stavro_family-tree.jpg" src="http://www.boingboing.net/2010/03/11/stavro_family-tree.jpg" width="640" height="626" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /> <p> <em>Holga</em>, © <a href="http://magnesiumagency.com/category/photos/stavropapadopoulos/">Stavro Papadopoulos</a>, from an image gallery curated by <a href="http://seanbonner.com/">Sean Bonner</a> of work by various <a href="http://magnesiumagency.com/2010/03/08/toy-cameras/">photographers using toy cameras</a>, over at <a href="http://magnesiumagency.com">Magnesium Agency</a>.<br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=bd296b2e9b9cbf6bbeff15fde1b74826&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=bd296b2e9b9cbf6bbeff15fde1b74826&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/PpLkjnxtpNU" height="1" width="1"/>

Posted by Xeni Jardin on March 11, 2010 09:15 PM · permalink

  <p><em>From <a href="http://blogs.wsj.com/dailyfix/2010/03/11/youtubes-modest-proposal-sports-online-almost-instantly/">The Daily Fix</a>:</em><br /> Friday brings the opening of cricket’s wildly popular Indian Premier League and with it, hopefully for sports fans, a window into the future of international sports broadcasting. (NBC Sports executives, please keep reading).</p> <div class="mceTemp" style="text-align: left;"> <dl class="wp-caption alignleft caption-alignleft" style="width: 262px;"> <dt class="wp-caption-dt"><img class="size-full wp-image-5" src="http://s.wsj.net/public/resources/images/OB-HV006_0311cr_D_20100311150410.jpg" alt="Indian Premier League" width="262" height="174" /></dt> <dd class="wp-caption-dd wp-cite-dd" style="text-align: right;">Getty Images</dd> <dd class="wp-caption-dd" style="text-align: left;">Matthew Hayden, seen last season with Chennai of the Indian Premier League.</dd> </dl> </div> <p>IPL, which has quickly become one of the most popular forms of one of the world’s most popular sports, has new wrinkle this year. Google’s YouTube unit has purchased the world wide Internet rights to the event and plans to use them in a way that many sports fans wish NBC uses its rights to the Olympics. NBC ultimately put footage of all Olympic events on its Web site, but in many prominent cases it did not carry live footage online in an attempt to maximize its audience for prime time television.</p> <p><a href="http://www.youtube.com/IPL">Using a designated URL</a>, YouTube will Webcast every minute of the IPL game during the next 43 days. The Webcasts will stream nearly live (five-minute delay in India) virtually all over the world. To avoid streaming the games in the U.S. while much of the population is sleeping, the U.S. Webcast will have a one- or two-hour delay, depending on the game. YouTube thinks the idea will work because while cricket has some 2 billion devotees according to industry estimates, they are scattered across the globe and live in certain countries with IPL has no television presence.</p> <p>Mr. Ebersol, are you hearing this?</p> <p><a href="http://feedads.g.doubleclick.net/~at/-bMQ5sd6_vjkbQnis85ddSX5ETc/0/da"><img src="http://feedads.g.doubleclick.net/~at/-bMQ5sd6_vjkbQnis85ddSX5ETc/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~at/-bMQ5sd6_vjkbQnis85ddSX5ETc/1/da"><img src="http://feedads.g.doubleclick.net/~at/-bMQ5sd6_vjkbQnis85ddSX5ETc/1/di" border="0" ismap="true"></img></a></p><div class="feedflare"> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=DE0qaW_Q71I:qtjA3nbxmjE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=DE0qaW_Q71I:qtjA3nbxmjE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?i=DE0qaW_Q71I:qtjA3nbxmjE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=DE0qaW_Q71I:qtjA3nbxmjE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?i=DE0qaW_Q71I:qtjA3nbxmjE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=DE0qaW_Q71I:qtjA3nbxmjE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?d=qj6IDK7rITs" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/wsj/biztech/feed/~4/DE0qaW_Q71I" height="1" width="1"/>

Posted by Matthew Futterman on March 11, 2010 09:11 PM · permalink

Slashdot  
  An anonymous reader writes "Pennsylvania's chief information security officer Robert Maley has been fired for publicly talking about a security incident involving the Commonwealth's online driving exam scheduling system. He apparently did not get the required approval for talking about the incident from appropriate authorities."

Read more of this story at Slashdot.

<iframe src="http://slashdot.org/slashdot-it.pl?op=discuss&amp;id=1579824&amp;smallembed=1" style="height: 300px; width: 100%; border: none;"></iframe>


Posted by timothy on March 11, 2010 09:07 PM · permalink

  <p><a href="http://passionforcinema.com/right-yaaa-wrong/right-yaaa-wrong-poster/" rel="attachment wp-att-29760"><img src="http://passionforcinema.com/wp-content/uploads/Right-Yaaa-Wrong-Poster-173x249.jpg" alt="" title="Right Yaaa Wrong Poster" width="173" height="249" class="alignleft size-medium wp-image-29760" /></a><strong>Language</strong>: Hindi</p> <p><strong>Director</strong> : Neeraj Pathak</p> <p><strong>Writers</strong>: Neeraj Pathak, Girish Dhamija, Sanjay Puran Singh Chauhan</p> <p><strong>Release Date</strong>: 12 March 2010 ( India ) </p> <p><strong>Cast</strong>: Sunny Deol, Irrfan Khan, Eesha Koppikhar</p> <p><strong>Producers</strong>: Neeraj Pathak, Krishan Choudhary, Puneet Agarwal</p> <p><strong>Music</strong>: Monty Sharma</p> <p><strong>Cinematography</strong> : Ravi Walia</p> <p><strong>Film Editing</strong>: Ashfaque Makrani</p> <p><a href="http://passionforcinema.com/right-yaaa-wrong/gr-banner-5/" rel="attachment wp-att-29759"><img src="http://passionforcinema.com/wp-content/uploads/GR-Banner4-500x100.jpg" alt="" title="GR-Banner" width="500" height="100" class="aligncenter size-large wp-image-29759" /></a></p> <h4>Vote your reactions for the movie below. Click on the number of stars you would like to give to the movie and add your short reaction in the comment block</h4> <br /><div><img src="http://passionforcinema.com/wp-content/plugins/gd-star-rating/gfx.php?type=thumbs&value=0" /></div><div>Score: 0 (0 votes cast)</div><br /> <p><a href="http://feedads.g.doubleclick.net/~a/SUEX0XSe0nvhfxwmkgu__Bq5h4Q/0/da"><img src="http://feedads.g.doubleclick.net/~a/SUEX0XSe0nvhfxwmkgu__Bq5h4Q/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~a/SUEX0XSe0nvhfxwmkgu__Bq5h4Q/1/da"><img src="http://feedads.g.doubleclick.net/~a/SUEX0XSe0nvhfxwmkgu__Bq5h4Q/1/di" border="0" ismap="true"></img></a></p><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=amIyyPAzdKA:MigmR1vR3kc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/passionforcinema?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=amIyyPAzdKA:MigmR1vR3kc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/passionforcinema?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=amIyyPAzdKA:MigmR1vR3kc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/passionforcinema?i=amIyyPAzdKA:MigmR1vR3kc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=amIyyPAzdKA:MigmR1vR3kc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/passionforcinema?i=amIyyPAzdKA:MigmR1vR3kc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=amIyyPAzdKA:MigmR1vR3kc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/passionforcinema?i=amIyyPAzdKA:MigmR1vR3kc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=amIyyPAzdKA:MigmR1vR3kc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/passionforcinema?d=yIl2AUoC8zA" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/passionforcinema/~4/amIyyPAzdKA" height="1" width="1"/>

Posted by PFCdesktop on March 11, 2010 09:03 PM · permalink

  <img src="http://www.boingboing.net/201003111257.jpg" height="819" width="588" border="0" align="left" hspace="4" vspace="4" alt="201003111257" /> <br clear="all"><P>I don't know where this came from, or if it is from a real choose-your-own-adventure book, but as Margaret Wise Brown might say, the important thing is that it is funny. <p><a href="http://itsthe90s.tumblr.com/post/425570756/via-shaqshead">Page 56</a><br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=bc33a06c4dd9733d64b8541eead52298&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=bc33a06c4dd9733d64b8541eead52298&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/eVMzS9tSlB4" height="1" width="1"/>

Posted by Mark Frauenfelder on March 11, 2010 09:01 PM · permalink

  After a second jury is hopelessly deadlocked, hate blogger Hal Turner is granted a another mistrial in the government's quest to imprison him on accusations he threatened to "kill" judges.


Posted by David Kravets on March 11, 2010 09:00 PM · permalink

  <p class="intro"><img style="margin: 0px 0px 10px 10px; display: inline" title="Angela Baxley gets called out at Happy Cog&#39;s Karaoke, SXSW 2009 (my pic)" alt="Angela Baxley gets called out at Happy Cog&#39;s Karaoke, SXSW 2009 (my pic)" align="right" src="http://www.technotheory.com/wp-content/uploads/2010/03/image.png" width="300" height="192" /> SXSW is one of my favorite annual events.&#160; But while the panels are good, it’s really about the people.</p> <p class="intro">I’m moderating a session on Friday, organizing runs every day at 8, and generally have time between a bunch of things.&#160; I want to meet you!</p> <p> <span id="more-864"></span><br /> <h3>My Panel: All About Communications</h3> <p>I’m pretty excited for my panel, which which will discuss the state and future of communication technology.&#160; We’ll talk about the challenge of creating workflows that are more productive…when it may take a bit of learning before the new tool becomes practical (example: Google Wave).&#160; We’ll explore where things are headed and offer suggestions for facilitating and designing more effective communications.&#160; (It’s more interesting than that sounds, promise.)</p> <p>I’ll be joined by <a href="http://fudge.org/">Jay Cuthrell</a> of <a href="http://cuthrell.com/">Cuthrell Consulting</a>, <a href="http://www.crunchbase.com/person/daniel-raffel">Daniel Raffel</a> of Yahoo!, and <a href="http://research.google.com/pubs/author18680.html">Casey Whitelaw</a> of Google (Wave).&#160; If the panel is anything like our discussions have been, it’ll be quite entertaining.</p> <p>The panel is Friday at 5pm in Ballroom C.&#160; <a href="http://my.sxsw.com/events/event/5283#">More information on the panel, “Wave and Communication&#8217;s (R)evolution: Better Than Being There?”…</a></p> <h3>Running</h3> <p>Conferences are rarely healthy experiences.&#160; SXSW is particularly bad—late nights, a fair bit of alcohol, and a carnivorous cuisine.&#160; So the running group should help to counter that.</p> <p>We meet at 8am Saturday-Tuesday and get to know each other the way humans should—chewing the fat at high speed on the trails.</p> <p><a href="http://www.facebook.com/group.php?gid=8415312365">You can sign up for updates about the running here.</a></p> <h3>Meeting Up</h3> <p>That stuff above is probably a little more about roping you into my stuff.&#160; But I want to see <strong><em>you</em></strong>!&#160; The best way to reach me is to shoot me an email (jared AT technotheory) with a few times you’re around.&#160; If you’re trying to catch me with something last minute, send me a text through AwayFind: <a href="https://awayfind.com/jared">https://awayfind.com/jared</a>.&#160; We’ll find at least a few minutes!</p> <h3>And a Little Bit of SXSW Advice</h3> <p>Last year I wrote a lot about how to navigate SXSW.&#160; This year I took that to an extreme and planned a zillion things for Austin—it’s going to be so much better for it.&#160; <a href="http://www.technotheory.com/2009/03/heading-to-sxsw-interactive-10-quick-ideas-to-make-sure-it-rocks/">If you’re looking for some tips, here they are…</a></p> <p>&#8211;</p> <p>Hope to see you in Austin.&#160; Be good.</p> <div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/technotheory?a=i2OGHIA75Ng:nmdFChsYxn8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/technotheory?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/technotheory?a=i2OGHIA75Ng:nmdFChsYxn8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/technotheory?i=i2OGHIA75Ng:nmdFChsYxn8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/technotheory?a=i2OGHIA75Ng:nmdFChsYxn8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/technotheory?i=i2OGHIA75Ng:nmdFChsYxn8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/technotheory?a=i2OGHIA75Ng:nmdFChsYxn8:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/technotheory?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/technotheory?a=i2OGHIA75Ng:nmdFChsYxn8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/technotheory?i=i2OGHIA75Ng:nmdFChsYxn8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/technotheory?a=i2OGHIA75Ng:nmdFChsYxn8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/technotheory?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/technotheory?a=i2OGHIA75Ng:nmdFChsYxn8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/technotheory?i=i2OGHIA75Ng:nmdFChsYxn8:gIN9vFwOqvQ" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/technotheory/~4/i2OGHIA75Ng" height="1" width="1"/>

Posted by Jared Goralnick on March 11, 2010 08:51 PM · permalink

  <p>Sen. <strong>Bob Corker</strong> (R., Tenn.) on Thursday talked openly of the bipartisan compromise he nearly reached with Senate Banking Committee Chairman <strong>Christopher Dodd</strong> (D., Conn.) over new financial regulations.</p> <p><strong>On consumer protection:</strong></p> <p>“I think the consumer title that Chairman Dodd puts forth will be very much shaped by our discussions. My guess is he’ll probably veer it to a hair left to be candid  … but hopefully not. But where it was left, it was housed at the Fed, appointed by the president, confirmed by the Senate.”</p> <p>“One of the things about the Fed, and since I can come real clean now…the thing about the Fed if you remember the President said that he wanted an independent source of funding. The way the Fed works, the Fed gives whatever surplus is left to the Treasury each year, and that was a way of solving that problem because in essence the consumer protection agency would have an independent source of funding.”</p> <p>Mr. Corker said the consumer division within the Fed wouldn’t “report to the chairman. It was a lot different than people thought. Here’s where it’s been: Republicans, conservative Republicans I might add, have agreed to broad-scope rulemaking, and that’s never happened. And were talking about rulemaking where the shadow industry has to live by the same rules that the regulated market has. If I’m a consumer person, I’m saying that’s breaking ground. Where Republicans have drawn a line in the sand, and that line has been honored, we do not want (the consumer division) involved in enforcement. … In other words, if consumer issues exist, we want the OCC to implement, or the Fed to implement, or the FTC to implement. We don’t want rulemaking and enforcement combined.”</p> <p>“There was a veto process. We made the first real offer on consumer a week ago Saturday. It was actually a real offer to try to get a deal done. There was a process through which rules would be made. It’s consultative. There is a veto process if the safety and soundness of the financial system or systemic risk is created, there’s a veto process by the regulators. …  We were down to issues that I promise you none of you ever dreamed of in your life.  … If there’s a conflict and there’s a judgment, then how does that all work out. It got down to judicial issues if you will. So that’s the sort of fine-tuning that we had gotten to on consumer. But again, the major concepts, actually agreed to.”</p> <p><strong>On rating agencies:</strong></p> <p>“We have at present a pretty painful clause for rating agencies, if you are one of the large ones in there. I know the House basically wrote them out of the code, and I’m not saying I’m opposed to that I might add. But on the credit rating side, we had a pretty big liability burden that was going to be placed on credit rating agencies, and I think (would have) caused them to pay a lot more attention to what they are doing.”</p> <p><strong>On derivatives:</strong></p> <p>“The issue that has kept (Sens. <strong>Jack Reed</strong> and <strong>Judd Gregg</strong>) from coming to closure, although they are this close, has been how much of an end-user exclusion should exist. I have not seen their language, nor has Chairman Dodd seen their language, I might add, because it&#8217;s not ready yet. …  I give Chairman Dodd some additional slack because I think he knows that it&#8217;s going to take probably a couple weeks to be honest for them to resolve their differences. … I probably felt a better way to do that is to leave that section out and add it as an amendment when it comes.”</p> <p><a href="http://feedads.g.doubleclick.net/~at/mkAKgdYyVdu-ZBtceMFQ2HnDlik/0/da"><img src="http://feedads.g.doubleclick.net/~at/mkAKgdYyVdu-ZBtceMFQ2HnDlik/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~at/mkAKgdYyVdu-ZBtceMFQ2HnDlik/1/da"><img src="http://feedads.g.doubleclick.net/~at/mkAKgdYyVdu-ZBtceMFQ2HnDlik/1/di" border="0" ismap="true"></img></a></p><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/wsj/economics/feed?a=dAbEmisFztw:mz5s2uSZzWE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wsj/economics/feed?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wsj/economics/feed?a=dAbEmisFztw:mz5s2uSZzWE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/wsj/economics/feed?i=dAbEmisFztw:mz5s2uSZzWE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wsj/economics/feed?a=dAbEmisFztw:mz5s2uSZzWE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wsj/economics/feed?i=dAbEmisFztw:mz5s2uSZzWE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wsj/economics/feed?a=dAbEmisFztw:mz5s2uSZzWE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wsj/economics/feed?d=qj6IDK7rITs" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/wsj/economics/feed/~4/dAbEmisFztw" height="1" width="1"/>

Posted on March 11, 2010 08:48 PM · permalink

Slashdot  
  Kanan excerpts from a BBC report out of Scotland: "A study of sexually scrambled chickens suggests that sex in birds is determined in a radically different way from that in mammals. Researchers studied three chickens that appeared to be literally half-male and half-female, and found that nearly every cell in their bodies — from wattle to toe — has an inherent sex identity. This cell-by-cell sex orientation contrasts sharply with the situation in mammals, in which organism-wide sex identity is established through hormones." Kanan also supplies this link to some pictures of the mixed-cell birds.

Read more of this story at Slashdot.

<iframe src="http://slashdot.org/slashdot-it.pl?op=discuss&amp;id=1579850&amp;smallembed=1" style="height: 300px; width: 100%; border: none;"></iframe>


Posted by timothy on March 11, 2010 08:48 PM · permalink

  <p>Using <a href="http://developer.yahoo.com/yui/2/" title="YUI 2 &mdash; Yahoo! User Interface Library">YUI 2</a> components in the context of <a href="http://developer.yahoo.com/yui/3/" title="YUI 3 &mdash; Yahoo! User Interface Library">YUI 3</a> implementations is important for some implementers making the transition between YUI 2 and YUI 3. In some cases, we simply want to transition our code in stages, but we want to do so within the context of a YUI 3 implementation pattern. In other cases, we may be relying on high-level components like <a href="http://developer.yahoo.com/yui/datatable/">YUI DataTable</a> that aren&#8217;t yet present in YUI 3.</p> <p>As part of the upcoming 3.1.0 release, Adam has improved the experience of using <a href="http://developer.yahoo.com/yui/2/" title="YUI 2 &mdash; Yahoo! User Interface Library">YUI 2</a> components from within <a href="http://developer.yahoo.com/yui/3/" title="YUI 3 &mdash; Yahoo! User Interface Library">YUI 3</a>. To this end, he&#8217;s added some intelligence to YUI 3&#8217;s loader that allows you to load YUI 2 modules directly from your <code>YUI().use()</code> statement:</p> <pre> YUI().use("yui2-button", function(Y) { //YAHOO is not a global object; it is sandboxed along //with the rest of your YUI 3 functionality. This line //is necessary if you want to use existing implementation //code: var YAHOO = Y.YUI2; //YUI 2 implementation code var button = new YAHOO.widget.button("mybutton"); }); </pre> <p>You&#8217;ll find this functionality in the YUI 3 codeline as of build 1933, and we&#8217;ve deployed an experimental YUI 3 build (nominally &#8220;yui3.1.0pr2&#8243;) and an early build of YUI 2.8.0 functionality wrapped for use in YUI 3.</p> <p>When you <a href="http://github.com/yui/yui3/downloads" title="Downloads for yui's yui3 - GitHub">download YUI 3&#8217;s latest source from GitHub</a> you&#8217;ll find some working examples in <code>sandbox/loader</code> (look for files with the <code>2in3</code> prefix). These examples demonstrate the use of a number of YUI 2 modules. We&#8217;ve posted <a href="http://ericmiraglia.com/yui/demos/2in3dt.php" title="YUI 2 in 3: Using YUI 2 DataTable from YUI 3">a simple live example that shows how to use YUI 2 DataTable within YUI 3</a>, which is one of the most frequently requested transitional features.</p> <p><a href="http://ericmiraglia.com/yui/demos/2in3dt.php" title="YUI 2 in 3: Using YUI 2 DataTable from YUI 3"><img src="http://yuiblog.com/assets/2in3datatable-20100310-140033.jpg"></a></p> <p>Key points about the YUI 2 in 3 effort:</p> <ul> <li><strong>This work is available in the <a href="http://github.com/yui/yui3/downloads">latest builds</a> of the upcoming 3.1.0 release (build 1933 and later).</strong> It is not available in 3.0.0 or in the 3.1.0pr1 preview.</li> <li><strong>The project is in an experimental state.</strong> Neither the yui3.1.0pr2 build nor the wrapped YUI 2 builds from which it pulls have been extensively tested, although we&#8217;ve staged them on the CDN to make it convenient to explore the implementation.</li> <li><strong>Download the latest build for examples.</strong> You&#8217;ll find a few of Adam&#8217;s proof-of-concept files in <code>sandbox/loader</code> &mdash; other than the simple example above, those are the best code references available until the official 3.1.0 release (which is still about a month out).</li> <li><strong>Your feedback <a href="http://yuilibrary.com/forum/viewforum.php?f=18" title="YUI Library :: Forums :: View forum - General">in the forums</a> is welcome</strong> &mdash; and, if you find problems, we&#8217;re interested in hearing about them.</li> <li><strong>When used this way, YUI 2 does not create a global <code>YAHOO</code> object.</strong> YUI 2 components are wrapped in YUI 3 module definitions and they stay contained in the YUI 3 sandbox to which they&#8217;re attached. The line from the codesample above, <code>var YAHOO = Y.YUI2;</code>, is needed in order to cut and paste YUI 2-style implementation code &mdash; or you can change <code>YAHOO</code> references to <code>Y.YUI2</code>.</li> <li><strong>YUI 2 releases are supported back to 2.2.2</strong> &mdash; the latest bug-fix release for every minor version is supported (2.2.2, 2.3.1, 2.4.1, 2.5.2, 2.6.0, 2.7.0, 2.8.0). You can specify the YUI 2 version to <code>use</code> as follows: <code>YUI({yui2: '2.7.0'}).use('yui2-button', ...)</code>. The goal here is to allow you to avoid migrating to 2.8.0 (or later) prior to a YUI 3 migration.</li> </ul> <h3>Gallery Is Easier To Use, Too</h3> <p><a href="http://ericmiraglia.com/yui/demos/galleryintegration.php"><img src="http://yuiblog.com/assets/galleryintegration-20100311-072806.jpg"></a></p> <p>Adam&#8217;s enhancements to YUI 3&#8217;s intrinsic loader have improved the experience of working with the rapidly growing <a href="http://yuilibrary.com/gallery">YUI 3 Gallery</a>, too. As of 3.1.0, you&#8217;ll be able to bring gallery modules into the page from the <code>use()</code> statement without additional configuration &mdash; the loader will be able to determine and resolve dependencies for you and will do the right thing with respect to combo&#8217;ing the gallery source code with other YUI files. <a href="http://ericmiraglia.com/yui/demos/galleryintegration.php">Here&#8217;s an example Dav Glass put together for 3.1.0</a> that demonstrates the use of his <a href="http://yuilibrary.com/gallery/show/yql">YQL Query gallery module</a> in combination with a pre-release build of 3.1.0.</p> <div class="feedflare"> <a href="http://feeds.yuiblog.com/~ff/YahooUserInterfaceBlog?a=eJGGn5zaa1A:PxBCAUmc3L4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/YahooUserInterfaceBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.yuiblog.com/~ff/YahooUserInterfaceBlog?a=eJGGn5zaa1A:PxBCAUmc3L4:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/YahooUserInterfaceBlog?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.yuiblog.com/~ff/YahooUserInterfaceBlog?a=eJGGn5zaa1A:PxBCAUmc3L4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/YahooUserInterfaceBlog?i=eJGGn5zaa1A:PxBCAUmc3L4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.yuiblog.com/~ff/YahooUserInterfaceBlog?a=eJGGn5zaa1A:PxBCAUmc3L4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/YahooUserInterfaceBlog?i=eJGGn5zaa1A:PxBCAUmc3L4:F7zBnMyn0Lo" border="0"></img></a> </div>

Posted by Eric Miraglia and Adam Moore on March 11, 2010 08:44 PM · permalink

  <a href="http://www.mongeonprojects.com/4_by_Poe_-_Home.html"><img alt="mongeon-poe.jpg" src="http://www.boingboing.net/assets_c/2010/03/mongeon-poe-thumb-501x753-30879.jpg" width="250" height="376" class="mt-image-left" style="float: left; margin: 0 20px 20px 0;" /></a>Boing Boing readers are interested in Edgar Allan Poe (examples <a href="http://boingboing.net/2009/09/11/poe-archive-from-ut.html">1</a>, <a href="http://boingboing.net/2008/10/13/poe-paper-toy.html">2</a>, <a href="http://boingboing.net/2009/01/19/gaiman-on-poe-read-h.html">3</a>, and <a href="http://boingboing.net/2010/01/20/poes-mysterious-stra.html">4</a>), so I suspect you'll want to be the first to know about <a href="http://www.mongeonprojects.com/4_by_Poe_-_Home.html">4 by Poe</a>, an upcoming collection of four Poe stories designed and illustrated by <a href="http://www.mongeonprojects.com/">Eric Mongeon</a>. Mongeon is best-known 'round these corners as a <a href="http://mongeonprojects.com/Eric_Mongeon_-_Mongeon_Projects_-_Forrester_1.html">fabulous magazine designer and art director</a> (and as the man behind the look of <a href="http://www.boingboing.net/2010/03/09/free-download-return.html">a record that's particularly close to me</a>), and this is a new project for him, although one that has haunted him since design school. Each story will be published quarterly as an individually-bound limited-edition softcover volume. Mongeon promises surprises: <blockquote>"<em>4 by Poe</em> isn't going to be yet another cinderblock tome, printed on crummy paper, typeset by a designer who dares you to actually read the text, and embellished by an illustrator who operates from a safely detached position of irony. This is going to be an illustrated collection for us grown-ups. One that approaches Poe's stories of murder, mystery, and mayhem on their own beautiful, sensationalistic terms. One that highlights the black humor, celebrates the philosophical insights, and yes, revels in the violence ... Poe's deviants lived in the real world, and that's how I'm going to show them."</blockquote> Subscribe. I just did. <a href="http://www.mongeonprojects.com/4_by_Poe_-_Home.html">4 by Poe: A collection of four short stories by Edgar Allan Poe</a><br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=595326a315da80eb2fd47df77c5dd4c9&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=595326a315da80eb2fd47df77c5dd4c9&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/I5ITLvsNAEc" height="1" width="1"/>

Posted by Jimmy Guterman on March 11, 2010 08:42 PM · permalink

  <p><a href="http://passionforcinema.com/hide-seek/hide-seek-poster/" rel="attachment wp-att-29757"><img src="http://passionforcinema.com/wp-content/uploads/Hide-Seek-Poster-171x250.jpg" alt="" title="Hide &amp; Seek Poster" width="171" height="250" class="alignleft size-medium wp-image-29757" /></a><strong>Language</strong>: Hindi</p> <p><strong>Director</strong> : Shawn Arranha</p> <p><strong>Writers</strong>: Apoorva Lakhia, Suresh Nair ( Story, Screenplay ), Raj Vasant ( Dialogues )</p> <p><strong>Release Date</strong>: 12 March 2010 ( India ) </p> <p><strong>Cast</strong>: Purab Kohli, Arjan Bajwa, Mrinalini Sharma</p> <p><strong>Producers</strong>: Laxmi Singh, Apoorva Lakhia </p> <p><strong>Music</strong>: Chirantan Bhatt, Gourov Dasgupta, Ritesh Batra</p> <p><strong>Cinematography</strong>: Srikant Naroj</p> <p><strong>Film Editing</strong>: Chintu Singh</p> <p><a href="http://passionforcinema.com/hide-seek/gr-banner-4/" rel="attachment wp-att-29756"><img src="http://passionforcinema.com/wp-content/uploads/GR-Banner3-500x100.jpg" alt="" title="GR-Banner" width="500" height="100" class="aligncenter size-large wp-image-29756" /></a></p> <h4>Vote your reactions for the movie below. Click on the number of stars you would like to give to the movie and add your short reaction in the comment block</h4> <br /><div><img src="http://passionforcinema.com/wp-content/plugins/gd-star-rating/gfx.php?type=thumbs&value=0" /></div><div>Score: 0 (0 votes cast)</div><br /> <p><a href="http://feedads.g.doubleclick.net/~a/i4FYDMhqviEO8sUHF64TKPGgUM0/0/da"><img src="http://feedads.g.doubleclick.net/~a/i4FYDMhqviEO8sUHF64TKPGgUM0/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~a/i4FYDMhqviEO8sUHF64TKPGgUM0/1/da"><img src="http://feedads.g.doubleclick.net/~a/i4FYDMhqviEO8sUHF64TKPGgUM0/1/di" border="0" ismap="true"></img></a></p><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=vn48G7aielw:zJc2JT2xB8w:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/passionforcinema?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=vn48G7aielw:zJc2JT2xB8w:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/passionforcinema?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=vn48G7aielw:zJc2JT2xB8w:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/passionforcinema?i=vn48G7aielw:zJc2JT2xB8w:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=vn48G7aielw:zJc2JT2xB8w:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/passionforcinema?i=vn48G7aielw:zJc2JT2xB8w:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=vn48G7aielw:zJc2JT2xB8w:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/passionforcinema?i=vn48G7aielw:zJc2JT2xB8w:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=vn48G7aielw:zJc2JT2xB8w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/passionforcinema?d=yIl2AUoC8zA" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/passionforcinema/~4/vn48G7aielw" height="1" width="1"/>

Posted by PFCdesktop on March 11, 2010 08:41 PM · permalink

  A Wichita, Kansas man was apparently beaten up by a drug dealer after the man paid for crack cocaine with Monopoly money. The man, who was bleeding from the head when police pulled him over, said he had purchased the drugs weeks before and the dealer was only now taking revenge. It's not clear why it took the dealer so long to realize that the multi-colored bills were not legal tender. From NBC: <blockquote> "The man from whom he had bought the drugs was upset and invited him over to his house and upon arrival struck him in the head several times with a handgun and other people jumped into the fray," said Gordon Bassham with the Wichita Police Department. <p>The victim was able to get away and escape serious injury.<p> At this point police say he's being uncooperative. </blockquote> <a href="http://www.ksdk.com/news/national/story.aspx?storyid=197439&catid=28">"Wichita man pays crack dealer with Monopoly money"</a> <br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=6a2bcf00b05f4c7abfcaa1bc9625dea4&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=6a2bcf00b05f4c7abfcaa1bc9625dea4&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/5wr_bX7xjas" height="1" width="1"/>

Posted by David Pescovitz on March 11, 2010 08:29 PM · permalink

  <p><a href="http://passionforcinema.com/na-ghar-ke-na-ghaat-ke/na-ghar-ke-na-ghaat-ke-poster/" rel="attachment wp-att-29751"><img src="http://passionforcinema.com/wp-content/uploads/Na-Ghar-Ke-Na-Ghaat-Ke-Poster-200x139.jpg" alt="" title="Na Ghar Ke Na Ghaat Ke Poster" width="200" height="139" class="alignleft size-medium wp-image-29751" /></a><strong>Language</strong>: Hindi</p> <p><strong>Director</strong> : Rahul Aggarwal</p> <p><strong>Writers</strong>: Alok Upadhyaya</p> <p><strong>Release Date</strong>: 12 March 2010 ( India ) </p> <p><strong>Cast</strong>: Rahul Aggarwal, Om Puri, Paresh Rawal</p> <p><strong>Producer</strong>: T.P.Aggarwal </p> <p><strong>Music</strong>: Lalit Pandit</p> <p><strong>Cinematography</strong>: K.Rajkumar</p> <p><a href="http://passionforcinema.com/na-ghar-ke-na-ghaat-ke/gr-banner-3/" rel="attachment wp-att-29754"><img src="http://passionforcinema.com/wp-content/uploads/GR-Banner2-500x100.jpg" alt="" title="GR-Banner" width="500" height="100" class="aligncenter size-large wp-image-29754" /></a></p> <h4>Vote your reactions for the movie below. Click on the number of stars you would like to give to the movie and add your short reaction in the comment block</h4> <br /><div><img src="http://passionforcinema.com/wp-content/plugins/gd-star-rating/gfx.php?type=thumbs&value=0" /></div><div>Score: 0 (0 votes cast)</div><br /> <p><a href="http://feedads.g.doubleclick.net/~a/0NOjh7z3E06qxe2ydKFal-NvrLw/0/da"><img src="http://feedads.g.doubleclick.net/~a/0NOjh7z3E06qxe2ydKFal-NvrLw/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~a/0NOjh7z3E06qxe2ydKFal-NvrLw/1/da"><img src="http://feedads.g.doubleclick.net/~a/0NOjh7z3E06qxe2ydKFal-NvrLw/1/di" border="0" ismap="true"></img></a></p><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=Zp5GclV5-vY:vfRfnC5nW3I:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/passionforcinema?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=Zp5GclV5-vY:vfRfnC5nW3I:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/passionforcinema?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=Zp5GclV5-vY:vfRfnC5nW3I:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/passionforcinema?i=Zp5GclV5-vY:vfRfnC5nW3I:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=Zp5GclV5-vY:vfRfnC5nW3I:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/passionforcinema?i=Zp5GclV5-vY:vfRfnC5nW3I:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=Zp5GclV5-vY:vfRfnC5nW3I:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/passionforcinema?i=Zp5GclV5-vY:vfRfnC5nW3I:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/passionforcinema?a=Zp5GclV5-vY:vfRfnC5nW3I:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/passionforcinema?d=yIl2AUoC8zA" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/passionforcinema/~4/Zp5GclV5-vY" height="1" width="1"/>

Posted by PFCdesktop on March 11, 2010 08:26 PM · permalink

Slashdot  
  adeelarshad82 writes "T-Mobile announced that the webConnect Rocket USB Laptop Stick, the first HSPA+ device for the US, will be available beginning on Sunday, March 14. The device was originally announced at MWC in February. HSPA+ is interesting because it could enable 4G LTE-like speeds using existing 3G infrastructure and according to a hands-on, it smokes Wi-Max. Right now, it's still just for Philadelphia, although we should see several major cities light up with HSPA+ on both coasts well before the end of 2010."

Read more of this story at Slashdot.

<iframe src="http://slashdot.org/slashdot-it.pl?op=discuss&amp;id=1579722&amp;smallembed=1" style="height: 300px; width: 100%; border: none;"></iframe>


Posted by timothy on March 11, 2010 08:24 PM · permalink

  <p>As health care goes, so goes job growth?</p> <p>Amid the worst labor market in more than a generation, it is surprising that discussions &#8212; pro and con &#8212; about overhauling health insurance tend to ignore one key issue: The current insurance system that relies on employer-provided policies and little portability threatens future job growth.</p> <p>If left alone, the current system will curtail job creation in many ways, from raising the total cost of U.S. labor to hurting global competitiveness, besides dimming the entrepreneurial spirit. While it&#8217;s hard to pin down numbers, it&#8217;s safe to say that no change on health care will make it even tougher to bring down the unemployment rate, currently at 9.7%.</p> <p>A study by <strong>Hewitt Associates</strong> forecasts that absent change, U.S. companies providing health insurance will face an annual bill of $28,530 per employee by 2019 &#8212; almost three times more than the $10,700 cost in 2009.</p> <p>That leaves U.S. multinationals and exporters at a huge disadvantage because their foreign competitors in developed economies don&#8217;t provide health insurance to their workers. Instead, medical care is funded by the government.</p> <p>As a report by the <strong>Business Roundtable</strong> said, &#8220;America&#8217;s businesses cannot win in the marketplace when bidding against global companies [that are] shouldering significantly lower health-care cost burdens.&#8221;</p> <p>In other words, U.S. companies will lose sales, lessening the need for more U.S.-based labor.</p> <p>Domestic demand will take a hit as well. Higher health-care bills means less money to give out in the form of cash wages. Slower income growth will hurt consumer spending. Small businesses, from restaurants to hair salons, depend on households as customers. Without increased sales, they have no need to take on extra staff.</p> <p>At the same time, workers will have fewer career paths because of the possible loss of health insurance if they leave their current jobs. That will reduce earnings growth and the number of start-up companies that could create new jobs.</p> <p>Workers with health problems (or with an ill dependent) often stay in a job because of the fear that a new insurance plan will not cover an existing condition. Economists have estimated this job-lock reduces voluntary turnover from 16% yearly to 12%. That means about 2 million workers stay in a job because of health insurance concerns.</p> <p>Switching jobs expands income potential (since people most often take new jobs that pay more). Research shows that reducing job-lock by making health insurance portable could raise personal income by $30 billion a year. But if workers are stuck in jobs, the loss of potential income will hurt consumer spending growth.</p> <p>Similarly, workers decide against becoming entrepreneurs because of the unavailability or high cost of individual insurance policies. Past research on male workers indicates that their worries about insurance stop about a quarter of possible entrepreneurs from going out on their own. Start-up businesses that survive and become small firms are the primary generators of jobs.</p> <p>So whether you are for the Senate bill, the House proposals or prefer an entirely new approach, keep this in mind: Maintaining the status quo isn&#8217;t a viable option. The current insurance system will lead to many fewer jobs in the U.S. in the coming decades.</p> <p><a href="http://feedads.g.doubleclick.net/~at/Bbc5kim9CoLZZIehuWyNIzs1pPw/0/da"><img src="http://feedads.g.doubleclick.net/~at/Bbc5kim9CoLZZIehuWyNIzs1pPw/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~at/Bbc5kim9CoLZZIehuWyNIzs1pPw/1/da"><img src="http://feedads.g.doubleclick.net/~at/Bbc5kim9CoLZZIehuWyNIzs1pPw/1/di" border="0" ismap="true"></img></a></p><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/wsj/economics/feed?a=x8aY-vBEegI:U-c4h5fILVM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wsj/economics/feed?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wsj/economics/feed?a=x8aY-vBEegI:U-c4h5fILVM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/wsj/economics/feed?i=x8aY-vBEegI:U-c4h5fILVM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wsj/economics/feed?a=x8aY-vBEegI:U-c4h5fILVM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/wsj/economics/feed?i=x8aY-vBEegI:U-c4h5fILVM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/wsj/economics/feed?a=x8aY-vBEegI:U-c4h5fILVM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wsj/economics/feed?d=qj6IDK7rITs" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/wsj/economics/feed/~4/x8aY-vBEegI" height="1" width="1"/>

Posted on March 11, 2010 08:21 PM · permalink

  Quantum systems may need a little disorder to effectively couple light with matter. The discovery eventually lead to simple quantum computers.


Posted by Lisa Grossman on March 11, 2010 08:20 PM · permalink

GigaOM  
  <p><a rel="attachment wp-att-97670" href="http://gigaom.com/2010/02/09/foursquare-teams-with-zagat-to-make-yelp-squeal/foursquare-screen/"><img title="foursquare screen" src="http://gigaom.files.wordpress.com/2010/02/foursquare-screen.jpg?w=248&#038;h=168" alt="" width="248" height="168" class="alignleft size-full wp-image-97670" /></a><a href="http://foursquare.com/">Foursquare</a>, the New York-based location services startup, has more than 500,000 users and 1.4 million venues, it <a href="http://foursquare.tumblr.com/post/441568658/happy-birthday-foursquare">announced</a> today, one year after it launched at SXSW. The company says it had its biggest day ever last Friday, with 275,000 check-ins from users declaring they were located at a certain venue. It also now has 16 employees and 1,200 venues offering specials (which is one revenue model the company is working on, alongside a coming <a href="http://bits.blogs.nytimes.com/2010/03/09/foursquare-introduces-new-tools-for-businesses/">small business analytics tool</a>).</p> <p>While we&#8217;re at the stats game, Foursquare also says it&#8217;s had 15.5 million check-ins and 1,000,000 badges awarded to encourage users to participate (in a bid to inspire further loyalty, it is offering <a href="http://www.flickr.com/groups/1340603@N24/pool/">temporary tattoo badges</a> at this year&#8217;s SXSW). Foursquare <a href="http://gigaom.com/2009/09/04/union-square-ventures-injects-1-35m-into-foursquare/">raised $1.35 million</a> in September and continues to be actively pursued by VCs.</p> <p>The company is most definitely <a href="http://gigaom.com/2009/11/24/why-i-love-the-foursquare/">hyped</a> disproportionately to its adoption, but at least it has more users than media mentions. The word &#8220;foursquare&#8221; has been used 4,140 times in articles indexed in <a href="http://news.google.com/archivesearch?um=1&amp;cf=all&amp;ned=us&amp;hl=en&amp;q=foursquare&amp;cf=all&amp;sugg=d&amp;sa=N&amp;lnav=d0&amp;as_ldate=2009&amp;as_hdate=2010&amp;ldrange=1930%2C1989">Google News</a> since 2009 and 89,311 times in <a href="http://blogsearch.google.com/blogsearch?hl=en&amp;ie=UTF-8&amp;q=foursquare&amp;as_maxm=3&amp;as_miny=2009&amp;as_maxy=2010&amp;as_minm=1&amp;as_mind=1&amp;as_maxd=11&amp;as_drrb=b&amp;ctz=480&amp;c1cr=1%2F1%2F2009&amp;c2cr=3%2F11%2F2010&amp;btnD=Go">Google Blog Search</a> &#8212; but surely many more times on Twitter, which doesn&#8217;t offer a long-term index.</p> <p><strong>Related content from GigaOM Pro (sub req&#8217;d): </strong></p> <p><a href="http://pro.gigaom.com/2009/12/how-social-networks-will-help-yelp-not-kill-it/">How Social Networks Could Help Yelp, Not Kill It</a></p> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&blog=1149864&post=105212&subd=gigaom&ref=&feed=1" /><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=n8ot8jijfhE:7vvxJqv8094:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/OmMalik?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=n8ot8jijfhE:7vvxJqv8094:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/OmMalik?i=n8ot8jijfhE:7vvxJqv8094:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=n8ot8jijfhE:7vvxJqv8094:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/OmMalik?i=n8ot8jijfhE:7vvxJqv8094:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=n8ot8jijfhE:7vvxJqv8094:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/OmMalik?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=n8ot8jijfhE:7vvxJqv8094:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/OmMalik?i=n8ot8jijfhE:7vvxJqv8094:D7DqB2pKExk" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/OmMalik/~4/n8ot8jijfhE" height="1" width="1"/>

Posted by Liz Gannes on March 11, 2010 08:12 PM · permalink

jwz  
 

French bread spiked with LSD in CIA experiment

The mystery of Le Pain Maudit (Cursed Bread) still haunts the inhabitants of Pont-Saint-Esprit, in the Gard, southeast France. On August 16, 1951, the inhabitants were suddenly racked with frightful hallucinations of terrifying beasts and fire.

Eventually, it was determined that the best-known local baker had unwittingly contaminated his flour with ergot, a hallucinogenic mould that infects rye grain. Another theory was the bread had been poisoned with organic mercury.

However, H P Albarelli Jr., an investigative journalist, claims the outbreak resulted from a covert experiment directed by the CIA and the US Army's top-secret Special Operations Division (SOD) at Fort Detrick, Maryland.

The scientists who produced both alternative explanations, he writes, worked for the Swiss-based Sandoz Pharmaceutical Company, which was then secretly supplying both the Army and CIA with LSD.

Posted by jwz (jwz@jwz.org) on March 11, 2010 08:07 PM · permalink

  The overutilization of emergency rooms is often cited as a dangerous symptom of America's broken healthcare system. But a new Slate article from Zachary Meisel and Jesse Pines offers a rosier picture of emergency room usage, and dispels several pervasive myths.


Posted by By FREAKONOMICS on March 11, 2010 08:00 PM · permalink

  A Senate Armed Services Committee hearing on the future of the F-35 Joint Strike Fighter finds the next-generation stealth aircraft years behind schedule and soaring over budget.


Posted by Nathan Hodge on March 11, 2010 08:00 PM · permalink

jwz  
 

The Coolest Carnivorous Toilet Plant You'll See This Week

N. rapah pitchers have huge orifices, but they also grow large concave lids held at an angle of about 90 degrees away from the orifice. The inside of these lids are covered with glands that exude huge amounts of nectar. Most importantly, the distance from the front of the pitcher's mouth to the glands corresponds exactly to the head to body length of mountain tree shrews.

The shrew perches on the plant to lick nectar from the "lid" and on most occasions it poops into the conveniently positioned toilet bowl to mark its territory. [...] This toilet bowl system is so effective that the plant satisfies almost all its nutritional needs from the shrew feces.


Posted by jwz (jwz@jwz.org) on March 11, 2010 07:59 PM · permalink

  <p>With so many e-readers on the market, what should you be looking for? Plus, Sony makes a move into Wii-like technology. <a href="http://online.wsj.com/article/SB10001424052748703701004575113701718277126.html?mod=WSJ_PersonalTechnology_LEADTop">Walt Mossberg </a>and Dan Gallagher join Stacey Delo on Digits to discuss.</p> <p><object id="wsj_fp" width="512" height="363"><param name="movie" value="http://online.wsj.com/media/swf/VideoPlayerMain.swf"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="flashvars" value="videoGUID={FC35E15B-A337-4541-8252-663DEB83CC43}&#038;playerid=1000&#038;plyMediaEnabled=1&#038;configURL=http://wsj.vo.llnwd.net/o28/players/&#038;autoStart=false" base="http://online.wsj.com/media/swf/"name="flashPlayer"></param><embed src="http://online.wsj.com/media/swf/VideoPlayerMain.swf" bgcolor="#FFFFFF"flashVars="videoGUID={FC35E15B-A337-4541-8252-663DEB83CC43}&#038;playerid=1000&#038;plyMediaEnabled=1&#038;configURL=http://wsj.vo.llnwd.net/o28/players/&#038;autoStart=false" base="http://online.wsj.com/media/swf/" name="flashPlayer" width="512" height="363" seamlesstabbing="false" type="application/x-shockwave-flash" swLiveConnect="true" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed></object><br /> Follow <a href="http://twitter.com/staceydelo">@staceydelo</a> on Twitter.</p> <p><a href="http://feedads.g.doubleclick.net/~at/-p7jK4lMzeSBIG8iZ8rGvLBMlTI/0/da"><img src="http://feedads.g.doubleclick.net/~at/-p7jK4lMzeSBIG8iZ8rGvLBMlTI/0/di" border="0" ismap="true"></img></a><br/> <a href="http://feedads.g.doubleclick.net/~at/-p7jK4lMzeSBIG8iZ8rGvLBMlTI/1/da"><img src="http://feedads.g.doubleclick.net/~at/-p7jK4lMzeSBIG8iZ8rGvLBMlTI/1/di" border="0" ismap="true"></img></a></p><div class="feedflare"> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=M8EjM7uyKpU:ttf2voBClck:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=M8EjM7uyKpU:ttf2voBClck:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?i=M8EjM7uyKpU:ttf2voBClck:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=M8EjM7uyKpU:ttf2voBClck:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?i=M8EjM7uyKpU:ttf2voBClck:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.wsjonline.com/~ff/wsj/biztech/feed?a=M8EjM7uyKpU:ttf2voBClck:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/wsj/biztech/feed?d=qj6IDK7rITs" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/wsj/biztech/feed/~4/M8EjM7uyKpU" height="1" width="1"/>

Posted by WSJ Staff on March 11, 2010 07:51 PM · permalink

  A British judge is siding with Pink Floyd, ruling its EMI label must protect artist integrity and stop selling single digital tracks. The acid-inspired band, known for concept albums, said single-song sales were an injustice to their art.


Posted by David Kravets on March 11, 2010 07:49 PM · permalink

 

Cache Machine: Automatic caching for your Django models. This is the third new ORM caching layer for Django I’ve seen in the past month! Cache Machine was developed for zamboni, the port of addons.mozilla.org to Django. Caching is enabled using a model mixin class (to hook up some post_delete hooks) and a custom caching manager. Invalidation works by maintaining a “flush list” of dependent cache entries for each object—this is currently stored in memcached and hence has potential race conditions, but a comment in the source code suggests that this could be solved by moving to redis.

Posted on March 11, 2010 07:35 PM · permalink

GigaOM  
  <p class="excerpt"><img title="iphoneos_4" src="http://gigapple.files.wordpress.com/2010/01/iphoneos_4.png?w=260&#038;h=37" alt="" width="260" height="37" class="alignright size-full wp-image-39506" />The iPhone has a number of advantages over its smartphone competitors, but one thing it hasn&#8217;t had that users have been clamoring for is true multitasking. Push notifications were intended as a workaround designed to give users the ability to stay up-to-date with multiple apps without having to actually run them at the same time.</p> <p>It&#8217;s still only a partial solution, though, and one many iPhone users aren&#8217;t satisfied with. True multitasking is still high on the want list of many iPhone users, and really remains the only thing not addressed by the many major feature additions iPhone 3.0 brought. Luckily, true app backgrounding capabilities are said to be on the way in iPhone 4.0. <span id="more-105204"></span></p> <p>That&#8217;s according to sources <a href="http://www.appleinsider.com/articles/10/03/11/apples_iphone_4_0_software_to_deliver_multitasking_support.html" target="_self">AppleInsider</a> describes as having a &#8220;proven track record in predicting Apple&#8217;s technological advances.&#8221; According to those same sources, though, Apple still has a ways to go before it can introduce these features to iPhone users. But the problem doesn&#8217;t lie with the iPhone&#8217;s ability to run multiple applications at once.</p> <p>In fact, the iPhone is quite good at multitasking in its current incarnation. Nike+ runs great while you do other things like take calls and/or check your email. But it&#8217;s the only non-Apple app that&#8217;s allowed that privilege. And Apple developed it for Nike, so it doesn&#8217;t really count. What&#8217;s new in iPhone 4.0 is that third-party developers will finally be able to run their apps in the background, too.</p> <p>Apple hasn&#8217;t enabled true multitasking for all apps not because it&#8217;s been technically prevented from doing so, but because doing so represents a security risk in terms of opening the door to apps being able to run in the background without the user&#8217;s knowledge, which is how viruses and other malware works.</p> <p>There&#8217;s also the issue of increased performance requirements, and increased battery usage. Apple is said to be addressing both of those with the new framework, though the source provided no specifics about how exactly that would be managed. I predict that mutitasking will only work on newer hardware, most likely the 3GS and above. A next-gen iPhone will probably be built from the ground up with multitasking in mind, and should offer battery and processor improvements scaled to compensate.</p> <p>Another challenge Apple faces in bringing background multitasking to the iPhone is redesigning the user interface. As of now, users can access any currently running Apple programs that use backgrounding by tapping a thin colored bar at the top of the screen. While that works quite well for just one app, if you have a number running at once, it could quickly become way too cluttered and obscure the app you&#8217;re actually using at the moment.</p> <p>According to AppleInsider&#8217;s source, the solution in the works at Apple leverages some existing tech from OS X to accomplish this. Personally, I&#8217;m betting on some kind of Exposé-type interface, possibly accessed through a special gesture or in a way similar to the one used now to bring up the iPhone&#8217;s Spotlight search screen. It might also take a page out of mobile Safari&#8217;s book, and use an interface similar to the one the browser has for displaying multiple pages.</p> <p>The iPhone&#8217;s interface in general could probably use a makeover at the point. It&#8217;s been unchanged since its launch, and while many would call that a testament to its strength and intuitiveness, there&#8217;s no denying that as the iPhone gains new abilities, Apple might want to consider some more drastic changes to the ways in which users access and make use of those functions.</p> <p>I&#8217;m sure Apple can handle the UI challenges, but I&#8217;m much more wary about how it addresses the potential security risks that come with opening up backgrounding. Luckily, it still has absolute control over the App Store, but it still might be possible for industrious hackers to bypass the safeguards in place and get some malicious software onto people&#8217;s devices.</p> <p><strong>Related GigaOM Pro Research:</strong> <a href="http://pro.gigaom.com/2010/02/the-app-developers-guide-to-choosing-a-mobile-platform/">The App Developer’s Guide to Choosing a Mobile Platform</a></p> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&blog=1149864&post=105204&subd=gigaom&ref=&feed=1" /><div class="feedflare"> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=8XkxLqYinDw:B4qDNSU2kMU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/OmMalik?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=8XkxLqYinDw:B4qDNSU2kMU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/OmMalik?i=8XkxLqYinDw:B4qDNSU2kMU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=8XkxLqYinDw:B4qDNSU2kMU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/OmMalik?i=8XkxLqYinDw:B4qDNSU2kMU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=8XkxLqYinDw:B4qDNSU2kMU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/OmMalik?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/OmMalik?a=8XkxLqYinDw:B4qDNSU2kMU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/OmMalik?i=8XkxLqYinDw:B4qDNSU2kMU:D7DqB2pKExk" border="0"></img></a> </div><img src="http://feeds.feedburner.com/~r/OmMalik/~4/8XkxLqYinDw" height="1" width="1"/>

Posted by Darrell Etherington on March 11, 2010 07:22 PM · permalink

 

There are two kinds of companies I really like. One that ignores the competition entirely. And one that picks a fight. Method, and their new laundry detergent line, is a great example of the latter.

The new Method laundry product eschews the standard awkward, heavy, messy jug for a svelte, light, one-handed, easily stored, pump-powered dispenser bottle. It’s so much better.

They claim it works better too, but I’m not concerned about that for this post. Even if it works just the same, the form factor is a huge win.

I’ve run out of laundry detergent so many times because I haven’t felt like lugging home one of those big jugs when I was at the store (I often walk home and one of these jugs weighs nearly as much as everything else I’m buying). I’m always like “I’ll get it another time” and then it’s too late. But the new Method bottle is just like a bottle of water. There’s no barrier to carry.

The pump dispenser is perfect fit for laundry detergent. My pour spout detergent bottles almost always leak, drip, or get dirty from dust and grime that is attracted to the gooey viscous liquid. The pump ends all that. Four pumps for a normal load and you’re good to go.

Yes, there are more important problems in the world than laundry detergent, but I’m still glad Method picked a fight and kicked ass. This is a wonderfully designed product with a form factor has been taken for granted for too long. Good for them.

Posted by Jason F. on March 11, 2010 07:21 PM · permalink

  <p><strong>India is ideally suited to provide the military trainers that NATO needs in Afghanistan.</strong></p> <p>Afghanistan needs more military trainers &#8212; <a rel="nofollow" target="_blank" href="http://www1.voanews.com/english/news/asia/New-Effort-to-Get-NATO-Troops-for-Afghanistan-87147527.html">NATO has been able to provide only 541 out of 1278 trainers needed</a> for the growing Afghan Army and Police forces &#8212; and they aren&#8217;t getting them from anywhere. Pakistan has been rather <a rel="nofollow" target="_blank" href="http://timesofindia.indiatimes.com/world/south-asia/India-close-friend-but-Pak-conjoined-twin-says-Afghanistan/articleshow/5672129.cms">keen to provide the trainers</a>, but NATO has been guarded in <a rel="nofollow" target="_blank" href="http://beta.thehindu.com/news/international/article236688.ece?homepage=true">its reactions to the Pakistani proposal</a>. And there are valid reasons for that reluctance.</p> <p>The issue of regional sensitivities has been mentioned by the NATO Senior Civilian Representative in Afghanistan upfront as the primary reason for their disinclination. In any case, Pakistan has favoured only one tribe, the Pashtuns, in Afghanistan and played them up against all the other tribes in that country. This, coupled with its continued support to the Afghan Taliban, has severely damaged Pakistan&#8217;s credibility among the Afghans. Moreover Pakistan army, despite all its claims to professionalism, has never been part of a real democracy and doesn&#8217;t understand the basic dynamics of a healthy civil-military relationship. A fledgling democracy like Afghanistan can ill-afford an example like Pakistan when it comes to the critical democratic principle of civilian control of the military. In addition, Afghanistan army and police forces have to be trained to fight against Taliban, al Qaeda and other jehadis who are waging their war in the name of Islam against the Karzai government. Pakistan army, when <a rel="nofollow" target="_blank" href="http://pragmatic.nationalinterest.in/2009/11/04/why-fight-my-muslim-brethren/">asking its troops to fight the co-religionist jehadis</a> on its own land, has often used the subterfuge of Pakistani Taliban being part of a Hindu-Zionist-Christian conspiracy hatched <a rel="nofollow" target="_blank" href="http://www.dailytimes.com.pk/default.asp?page=2010&#92;03&#92;04&#92;story_4-3-2010_pg1_1">by RAW, Mossad and CIA</a> who are hell-bent on destroying the Islamic republic of Pakistan. Can such an army ever be trusted to train the Afghan National Army?</p> <p>In contrast, India suffers from none of these disadvantages. It has a professional armed force, which has been always subservient to the civilians, and which understands the constraints of operating in a vibrant democracy. Indian armed forces also possess the rich experience of conducting counter-insurgency campaigns in diverse social settings in various regions of the country, where successful security operations have often culminated in political negotiations for lasting peace. Moreover India, and Indians, have historically enjoyed a favourable reputation in Afghanistan, which has been further enhanced by India&#8217;s liberal economic and developmental assistance to the war-torn country since 2001.</p> <p>But is the NATO asking India for its military trainers in Afghanistan? Going by the evidence so far, No. NATO&#8217;s anticipation of Pakistani objections to Indian involvement in military training in Afghanistan is perhaps holding it back.</p> <p>Is Indian government offering its military trainers to NATO for Afghanistan? Nothing in the public domain suggests so. Perhaps, the belief that India can achieve its aims in Afghanistan <a rel="nofollow" target="_blank" href="http://acorn.nationalinterest.in/2010/03/05/shovels-are-insufficient/">by shovels alone</a> is preventing the government from making that offer.</p> <p>It is in the mutual interest of both the parties to overcome their doubts and start cooperating in Afghanistan. The earlier they do it, the better it is &#8212; for Afghanistan, for the region, and for exterminating the jehadi threat emanating from the region.</p>

Posted on March 11, 2010 07:18 PM · permalink

  <img src="http://www.boingboing.net/images/_albums_jj314_roqlarue_StageOnesm.jpg" height="620" width="620" border="1" align="left" hspace="4" vspace="4" alt=" Albums Jj314 Roqlarue Stageonesm" /> <br clear="all"> Roq La Rue Gallery's "<a href="http://www.roqlarue.com//index.php?module=Exhibits&id=51">Lush Life 2</a>" group show opens in Seattle this Friday and it's a tour-de-force of Pop Surrealism and contemporary painting and sculpture. The show includes new work by: Joe Sorren, Chris Berens, Marion Peck, Kris Kuksi, Travis Louie, Brian Despain, John Brophy, Martin Wittfooth, Ryan Heshka, Michael Brown, Charlie Immer, Mandy Greer, Gail Potocki, Laurie Hogin, Boomer, Madeline Von Foerster, Ryan Heshka, and Andrew Arconti. Above is Berens's "Stage One" (mixed media: ink, paint, photopaper on panel, 40" x 40"). The thread running through the show, according to curator Kirsten Anderson, is "an opulence or richness, either in subject matter or technique." Lush Life 2 runs until May 7 and all of the art is also <a href="http://roqll2.blogspot.com/">viewable online</a>.<br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=c180672a1d72c147de25c6d89bb3d697&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=c180672a1d72c147de25c6d89bb3d697&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/qpUPCPAZOWA" height="1" width="1"/>

Posted by David Pescovitz on March 11, 2010 07:08 PM · permalink

  <img src="http://www.boingboing.net/images/_images_products_big_sb_tele_org_lg.jpg" height="300" width="300" border="1" align="left" hspace="4" vspace="4" alt=" Images Products Big Sb Tele Org Lg" /> <img src="http://www.boingboing.net/images/_images_products_huge_sb_tele_gre_xl-2.jpg" height="300" width="300" border="1" align="left" hspace="4" vspace="4" alt=" Images Products Huge Sb Tele Gre Xl-2" /> <br clear="all"> Twine is selling these magnificent vintage rotary phones, retrieved from the British General Post Office where they were never used. They ain't cheap though: $210. <a href="http://shoptwine.com/productDetail.php?productId=654&categoryId=131&optionId=1501&productItemId=1090&imageId=3098">Tellies</a> <em>(Thanks, Kelly Sparks!) </em><br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=1e886b56bc3615ddf908326ec51162e1&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=1e886b56bc3615ddf908326ec51162e1&p=1"/></a> <img alt="" height="0" width="0" border="0" style="display:none" src="http://a.rfihub.com/eus.gif?eui=2226"/><img src="http://feeds.feedburner.com/~r/boingboing/iBag/~4/2E9dScmBMo8" height="1" width="1"/>

Posted by David Pescovitz on March 11, 2010 07:07 PM · permalink

  Victor Pineiro put a lot of work into a funny, popular post about the "top ten geek anthems of all time." Shortly after, CNN ran an extremely similar article, which replicated many of Victor's picks and had extremely similar copy. But the CNN article didn't credit Victor with the inspiration. <P> Victor doesn't think that this is a copyright violation (I think he's right), but it <em>does</em> smack of plagiarism and intellectual dishonesty. It's possible that CNN was inspired to write the extremely similar piece at the same time, but the more likely explanation is that CNN just ripped Victor off. Victor couldn't find any contact info for the author and when he posted a question about it to the article's comment thread, it was rejected. <p> We often hear big media companies talk about how bloggers rip them off by posting fragments of their articles, but there's a well-developed practice of linking and crediting in blogging that often doesn't go the other way, and it sucks that media companies don't play nice in link economy. <blockquote> <img src="http://craphound.com/images/geekanthemsripoff.jpeg"><br> Had the article I'd penned been something more general or topical, I wouldn't have batted an eye. But I'd researched the topic before writing the post, and found almost nothing on geek anthems- and no articles at all in the past few years. It was a niche I was excited to fill. The post I wrote did well, getting picked up by Veronica Belmont and BuzzFeed among others, and garnering close to 20,000 visits at last count. Not Gawker numbers, but for our young blog it was a nice spike that's resulted in substantially more regulars. CNN's article, however, stopped the post's momentum dead in its tracks. <p> Talking over my discovery with a prominent journalist buddy, she told me it was a common occurrence. More and more she noticed big media borrowing unique topics and ideas from viral blog posts in the hopes that they'd go unnoticed. With all the recent search-term omniscience being developed, it's getting harder to hide that sort of thing. And what about the little guy? <p> The real issue here is search rank. For young blogs hoping for traction, SEO is king, and knock-off articles pose a much greater threat to scrappy bloggers than old media. We scramble to find topical/SEO niches and plant our flags with posts like "Top Ten Depressing Songs" or "How to Prepare For a Steampunk Prom", using each as a foothold to climb higher up Mt. Blogosphere. But a copycat article by one of the big guys immediately supplants that flag, and incinerates it with the ensuing ripple effect. In this case, CNN's article wrested the top "geek anthems" search spot from mine, and the flood of blogs linking to it filled up the rest of the first page. </blockquote> <a href="http://www.popten.net/2010/03/copycat-articles-trample-bloggers-pwnd-by-cnn/">Copycat Articles Trample Bloggers: PWND By CNN</a> (<i>Thanks, Victor!</i>) <br clear="both" style="clear: both;"/> <br clear="both" style="clear: both;"/> <a href="http://ads.pheedo.com/click.phdo?s=87cc8d725eb7f4ba2bc234b8ef7c20a6&p=1"><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=87cc8d725eb7f4ba2bc234b8ef7c20a6&p=1"/></a> <img alt="" height="0" width="0" border="0"