RSS
 

Archive for the ‘Google Reader’ Category

Steve Jobs On The Difference Between A Vice President And A Janitor (AAPL)

07 May

steve jobs ipad

Steve Jobs gives employees a little speech when they're promoted to Vice President at Apple, according to Adam Lashinsky in a new article in Fortune that's not online yet.*

Lashinsky calls it the "Difference Between the Janitor and the Vice President."

Jobs tells the VP that if the garbage in his office is not being emptied regularly for some reason, he would ask the janitor what the problem is. The janitor could reasonably respond by saying, "Well, the lock on the door was changed, and I couldn't get a key."

An irritation for Jobs, for an understandable excuse for why the janitor couldn't do his job. As a janitor, he's allowed to have excuses.

"When you're the janitor, reasons matter," Jobs tells newly minted VPs, according to Lashinsky.

"Somewhere between the janitor and the CEO, reasons stop mattering," says Jobs, adding, that Rubicon is "crossed when you become a VP."

In other words, you have no excuse for failure. You are now responsible for any mistakes that happen, and it doesn't matter what you say.

Related: 10 Dumbest Things Steve Jobs Has Ever Done

* The story is available for downloading by Fortune subscribers (free) and single-copy purchases.

For the latest tech news, visit SAI: Silicon Alley Insider. Follow us on Twitter and Facebook.

Join the conversation about this story »

See Also:



 
 

Learning how the brain does its coding

06 May

Most organisms with brains can store and process a staggering range of information. The fundamental unit of the brain, a single neuron, however, can only communicate in the simplest of manners, by sending a simple electrical pulse. The challenge of understanding how information is contained in the pattern of these pulses has been bothering neurobiologists for decades, and has been given its own name: neural coding.

In principle, there are two ways coding could be handled. In dense coding, a single neuron would convey lots of information through a complex series of voltage spikes. To a degree, however, this creates as many problems as it solves, since the neuron on the receiving end will have to be able to interpret this complex series properly, and separate it from operating noise.

The alternative, sparse coding, tends to be used for memory recall and sensory representations. Here, a single neuron only conveys a limited amount of information (i.e., there's something moving horizontally in the field of vision) through a simple pulse of activity. Detailed information is then constructed by aggregating the inputs of lots of these neurons.

A study released in yesterday's Science provides some perspective on just how flexible this sort of system can be. Researchers worked with the olfactory system of insects, where structures in the brain called mushroom bodies integrate the inputs from sensory neurons. (they're called mushroom bodies for the highly technical reason that they're shaped kind of like a mushroom.) The mushroom bodies use sparse coding to interpret and recall odors, with most neurons only firing a few times in response to a scent.

The authors of the paper traced the connections among the neurons in the mushroom body, and found that most were contacted by a single, giant interneuron that sent them inhibitory signals. By toning all the other neurons down, this giant cell enforces sparse coding by limiting the amount of activity that is elicited by a new odor. It also allows the fine tuning of activity for the entire mushroom body. Increasing its activity is sufficient to shut the entire system down, essentially making the insect blind to smells, while decreasing its activity will make the insect hypersensitive to scents.

Although us mammals don't have neurons of this sort—they appear to be an innovation exclusive to the insects—the authors predict that a system that functions similarly may be found in vertebrates, simply because it's so simple and functional.

Science, 2011. DOI: 10.1126/science.1201835  (About DOIs).

Read the comments on this post

 
 

This Portal 2 Movie Poster is Just About the Best Thing Ever

06 May

 Chell never looked so good.
 Chell never looked so good.
As much as we all love Portal 2, I know that every single one of you has, at one time or another, wished in your heart of hearts that the game were a little bit more like a Logan's Run-meets- Super Fly 1970s sci-fi action exploitation extravaganza. It's a story that's just begging for that kind of treatment.

While the folks at Valve are unlikely to grant you your greatest of wishes in playable form, one of the studio's artists, Tristan Reidford, whipped up a completely amazing '70s-style movie poster featuring the game's various characters. While your immediate reaction might just be to make it your desktop background, you can actually do yourself one better and put it on your real life, non-computerized wall, as the poster will be going on sale in the Steam store in a couple of weeks.

As our own Ryan Davis histrionically pointed out over Twitter this morning, yes, there are a few spoilers floating around inside that poster. We're going to drop the main poster below If you haven't played yet, so maybe don't stare at it too hard? As for me, I know I'll be grabbing one as soon as they go on sale. 


     
     
 
 

Jerry Seinfeld Puts His 30 Years of Comedy Online

06 May


Jerry Seinfeld has launched a website, which serves as a warehouse for pretty much everything he’s ever performed.

JerrySeinfeld.com went live Friday morning with three short comedy clips — “The Fattest Man in the World” from The Tonight Show in 1981, “Do the Horses Know They’re Racing?” from a 1988 HBO special and “No Room in the Newspaper” from The Tonight Show in 1990.

The site is taking an unusual approach to offering the content by running just three new clips per day. The clips, which range from 30 seconds to two minutes, will be available for only 24 hours and then will be replaced with three new ones.

On the site, Seinfeld explains he’s offering the site to young would-be comedians. “Somewhere out there are 10-year-olds just waiting to get hooked on this strange pursuit,” he writes. “This is for them.”

Seinfeld’s straight-to-the-fans media model comes after Trey Parker and Matt Stone of South Park launched South Park Digital Studios, a joint venture between the two and Comedy Central in 2007 that made all their work available online. Meanwhile, the model of treating comedy bits like songs by cutting them into bite-sized digital pieces has been employed by Sirius XM’s various comedy channels for some time. And just this week, Pandora also added 10,000 such bits to its libraries.

More About: jerry seinfeld, media, pandora, South Park, trending

For more Media coverage:

 
 

Window Inactive Styling

06 May

You can customize the text color and background color of text when it's selected with ::selection and ::-moz-selection. We've covered that a number of times here in various forms and it's a cool little trick.

Even the HTML5 Boilerplate has it in there by default, using super hot pink, which is the easiest way to spot a boilerplate site =).

But when you change text selection styling away from its default, you lose the default styling's ability to desaturate itself when the window goes out of focus. See:

I rather like how the default desaturates and becomes less visually intense. After all, chances are you are focused on another window right now and don't need a background window fighting for attention.

Perhaps a little known fact, but you can use a pseudo selector in conjunction with ::selection to apply styling when the window is in it's inactive state. It uses the :window-inactive pseudo selector, like this:

::selection {
  background: hsl(136,65%,45%);
  color: white;
}
::selection:window-inactive {
  background: hsl(136,25%,65%);
}

Using HSL for color value there, I was able to lower the saturation and increase the lightness to get a less intense version of the same hue.

Remember Firefox has it's own version of ::selection, ::-moz-selection. It also has it's own version of :window-inactive, :-moz-window-inactive. Unfortunately using these things together doesn't work.

/* Does work */
::-moz-selection {
  background: rgba(255,0,0,0.9);
  color: white;
}
/* Doesn't work */
::-moz-selection:-moz-window-inactive {
  background: rgba(255,0,0,0.3);
}
/* Nor this */
:-moz-window-inactive::-moz-selection {
  background: rgba(255,0,0,0.3);
}

So anyway, you can at least get a custom text selection color in Firefox (3.6+ ?) but you can't style it specially for window inactive. However, Firefox (3.6 and 4 tested) automatically make your text selection gray on when the window is out of focus.

It's important to note that it's not because :-moz-window-inactive doesn't work, it does, you can use it on any element, actually, like making a div change background color in that state. It's just using them together that doesn't.

This is not a case where we can shake our fists at the browser vendors. None of this is standardized. ::selection isn't standard. :window-inactive isn't standard. In fact, ::selection is actually technically a pseudo element not pseudo selector so it should have to come last in the selector, but if you switch them around it doesn't work.

More than just text selection

If :window-inactive was standardized and more widely supported, you could do way more with it than just deal with text selection colors. Think of gray-scaling a whole website or stopping animations.


Advertise here with BSA

 
 

Fall of the metrosexual, rise of the hipster | Gene Expression

05 May

1

 
 

Design By Newconcept

05 May

Rating: 3/5

0 comments

 
 

Mapped Wiki

05 May

Mapped Wiki

Using the Wikipedia API this visualization tool grabs the articles that are linked to a main Wikipedia entry and counts all the categories that those articles belong to, while also exposing the most popular ones and their respective links. Wikipedia categories provide a good measure of article relevance since they are assigned by various individual users.

 
 

Beautiful Japan Photography by James Carmichael

05 May
These photographs were taken in different cities across Japan including Tokyo, Kyoto, Mount Fuji, Kanazawa and Koyasan by backpacker, photographer and web designer James Carmichael during a backpacking trip in August 2008.



























 
 

Facebook To Buy Skype? [REPORT]

04 May


Two reliable sources say Facebook CEO Mark Zuckerberg is talking to Skype about either buying the company or forming a joint venture, according to Reuters.

One of the sources said Facebook is considering a buyout of Skype at a price of between $3 billion and $4 billion.

The other source told Reuters the deal won’t be a purchase by Facebook but rather a joint venture between Facebook and Skype.

Skype and Facebook are no strangers. In October, when Skype released its version 5.0 software for Windows, it included a Facebook tab that let users chat or call Facebook friends via Skype, right from the Facebook newsfeed that can be viewed from within the Skype application.

Facebook isn’t the only one chasing Skype. One of the sources talking to Reuters added that Google was also in “early talks” with Skype about a joint venture.

Update: When we contacted Skype Wednesday night, the company responded, “As a practical matter, we avoid commenting on rumor and speculation.”

Let us know in the comments what you think of this deal and who stands to gain the most.

More About: buyout, facebook, joint venture, Skype, trending, Zuckerberg

For more Business & Marketing coverage: