by Drew Gulan
The mark of a truly gifted group of musicians is the ability to follow-up a brilliant collection of songs with even more impressive work, bucking the common trend of spending all of your energy and creativity in one fell swoop. In the case of the Baltimore-based duo Beach House,…
Wake Up (Arcade Fire cover) - Macy Gray
happy cover friday everyone
Children wake up, hold your mistake up before they turn the summer into dust
I want to listen to this but am on my phone and cannot. So, I will reblog it for everyone incl me!
We had a blind test to determine the best chocolate sandwich cookie at the NPR Music office, you know, like you do. Nothing about it was scientific: No notes were taken, we didn’t any make pie charts (cookie charts?) or Venn diagrams. My boss and I mostly just wanted to settle a score between our favorite cookies, which we both end up betraying in the blind taste test.
The surprising winner across a limited testing population was Tuxedos, the Safeway-brand. Gotta give the grocery store credit: Tuxedos kinda out-does Oreos at its own game, at least when it comes to single-creme cookies (Double Stuf might have broken the “control” of the operation). Other cookies in contention: Target-brand Market Pantry and Newman-O’s.
What’s your favorite chocolate sandwich cookie?
This is really awesome.
(via npr)
Insta-book. $1B! 13 employees! 700K+ a day “salary”! Systrom! Photos! Yay! FB! OMG. LOUD VOICES!
Ok, now that Instagram madness is covered above let’s talk about why FB bought. I’m breaking down my thoughts into 2 categories: 1) Why I think FB bought and 2) how they helped justify the price tag….
Took me a while to realize this was you writing. I enjoyed.
by Drew Gulan
It only took until mid-March, but 2012 has finally seen the release of a truly great record: The Shins’ “Port of Morrow”. The year has not been completely barren, with some really solid efforts from Sleigh Bells, Poliça, Air, and the “New Multitudes” tribute album to folk-great…
Love you, Mom!
Hello dear family and friends!
Gearing up for my FMLA - huh? Family Medical Leave Act. - I’ve never had to pay much attention to my employee health benefits. Glad I have ‘em, but I’ve been a healthy gal so haven’t had to think much about them… Until now.
Went in for a routine mammogram on Feb…
(Source: marbuchok)
I am positive that a person can be reading too many books.
However, an important distinction must be made: Do you have to finish every book you start?
If the answer is, “No, we are not obligated to finish every book we begin reading” (who does?)—the concept of reading too many books becomes a bit more interesting.
Think about your Kindle. (You do have a Kindle, right?)
I have far more books hovering in the 50,60,70-percent range than in the 95+ zone. From a technical standpoint, I think I am currently reading about 28 books.
But that’s not fair.
I try to split my reading into fun and work. I do feel lucky that my fun reading influences my work, and my work reading is enjoyable. But this distinction helps me maintain several texts at a time. It also feels different to sit down with a novel than some mega-dork code jam.
Further, with the Kindle I can pick and choose when to resume different books. It’s liberating.
I’ve made a rule with myself that I’d always find budget for books because I fully believe they are an investment.
But this rule also means I need to change what it means to be “reading” a book as I am shifting from book-to-book often.
I’m constantly confusing myself when calculating timezones for meetings.
9 o’clock a.m. in San Francisco is what time in Madrid? What time is a 3 p.m. meeting in New York? In general, what time is it in Minneapolis?
I’m finally getting around to writing a really simple JS widget to help me calculate differences in key timezones.
However, when calculating the number 0, I was seeing my tests fail and it was a bit confusing.
Turns out the number 0 causes a bit of a hiccup when using short-circuit evaluations.
var zero = 0;
var myVar = zero || 0; // => NaN.
Hmm, confusing.
Some assertions that prove this point:
TestCase('TestForZero', {
'test zero' : function() {
// Set `zero` and `one` to number values:
var zero = 0;
assertNotNaN(zero);
assertNotNull(zero);
assertNotUndefined(zero);
assertNumber(zero);
var one = 1;
assertNotNaN(one);
assertNotNull(one);
assertNotUndefined(one);
assertNumber(one);
// If either variable is null, set a string just for fun.
// Note: Expectation is that *neither* will be null:
zero = zero || 'zero';
one = one || 'one';
// `one` maintains itself.
// Assertions copied from above:
assertNotNaN(one);
assertNotNull(one);
assertNotUndefined(one);
assertNumber(one);
// `zero` unfortunately does not:
assertNotNull(zero);
assertNotUndefined(zero);
assertNaN(zero); // => Gotcha!!
assertTypeOf('string', zero);
// Using a more strict ternery operator yields expected results:
zero = 0;
zero = (zero !== null) ? zero : 'zero';
// Assertions copied from above:
assertNotNaN(zero);
assertNotNull(zero);
assertNotUndefined(zero);
assertNumber(zero);
}
})
-
-
Floating away on Khao San Road. (Bangkok, Thailand)
-
“The House That Heaven Built” is the take-no-prisoners first single from Japandroids’ upcoming sophomore LP, Celebration Rock.

