Feed aggregator

BJ Fogg's Behavior Grid

FriendFeed Updates (atom) - Wed, 08/25/2010 - 08:06
Matt J. Sorenson BJ Fogg's Behavior Grid - http://behaviorgrid.org/ August 25 from delicious - Comment - Like

#php uses a backslash as namespace delimiter "cuz 'twas the only character still available"; I happen to think that is brilliantly pragmatic

FriendFeed Updates (atom) - Wed, 08/25/2010 - 06:25
Matt J. Sorenson #php uses a backslash as namespace delimiter "cuz 'twas the only character still available"; I happen to think that is brilliantly pragmatic August 25 from Twitter - Comment - Like

/wonders (from afar) how many headed for the coder's lounge to kill kittens (hack core) after @rasmus' keynote at #drupalconcph

FriendFeed Updates (atom) - Wed, 08/25/2010 - 06:21
Matt J. Sorenson /wonders (from afar) how many headed for the coder's lounge to kill kittens (hack core) after @rasmus' keynote at #drupalconcph August 25 from Twitter - Comment - Like

RT @10yearsago: @1yearfromnow So, what's Twitter's business model?

FriendFeed Updates (atom) - Wed, 08/25/2010 - 05:27
Matt J. Sorenson RT @10yearsago: @1yearfromnow So, what's Twitter's business model? August 25 from Twitter - Comment - Like

just watched Rasmus' insightful #drupalcon #dckeynote about PHP, Drupal and performance... from North Dakota. thx @drupalradar

FriendFeed Updates (atom) - Wed, 08/25/2010 - 05:24
Matt J. Sorenson just watched Rasmus' insightful #drupalcon #dckeynote about PHP, Drupal and performance... from North Dakota. thx @drupalradar August 25 from Twitter - Comment - Like

following deaths in 1991, 1999, and 2010, OSHA imposes fines on SeaWorld; 6-ton orcas in captivity an occupational hazard?! NAAAAHHHOO C'MON

FriendFeed Updates (atom) - Mon, 08/23/2010 - 23:06
Matt J. Sorenson following deaths in 1991, 1999, and 2010, OSHA imposes fines on SeaWorld; 6-ton orcas in captivity an occupational hazard?! NAAAAHHHOO C'MON August 23 from Twitter - Comment - Like

too much going on; no single thing in my life is getting the attention it deserves right now. on top of it all, it's #drupalcon week.

FriendFeed Updates (atom) - Mon, 08/23/2010 - 15:58
Matt J. Sorenson too much going on; no single thing in my life is getting the attention it deserves right now. on top of it all, it's #drupalcon week. August 23 from Twitter - Comment - Like

coldfusion arrays *do* have an iterator interface; but rather than .each(), it's .hasnext() and .next(). I smell an abstraction forthcoming!

FriendFeed Updates (atom) - Mon, 08/23/2010 - 14:43
Matt J. Sorenson coldfusion arrays *do* have an iterator interface; but rather than .each(), it's .hasnext() and .next(). I smell an abstraction forthcoming! August 23 from Twitter - Comment - Like

so, looks like twitter does some microformat stuff, but no foaf/RDFa stuff. why not? not a social graph?? I ought to view source more often.

FriendFeed Updates (atom) - Fri, 08/20/2010 - 23:26
Matt J. Sorenson so, looks like twitter does some microformat stuff, but no foaf/RDFa stuff. why not? not a social graph?? I ought to view source more often. August 20 from Twitter - Comment - Like

jQuery code smells

Backtype.com/emjayess - Wed, 01/06/2010 - 12:21

alternatively, if there are going to be a ton of anchors, then registering click handlers on all them can become an inconsiderate resource hawg — so you might instead choose to register just a single click handler on a wrapper element, and then only perform some logic if the event target is an anchor you are interested in adding behavior to.

Read more comments by matt j. sorenson

jQuery code smells

Backtype.com/emjayess - Wed, 01/06/2010 - 12:14

If anchors are continually being added to the page after “ready”, and you need to handle events on them… you can use:

var anchors = $('a');anchors.live('click',function(){ anchors.not(this).addClass('wow');});

so, you still have no excuse for not caching DOM selections in the case of event handling.

Read more comments by matt j. sorenson

Syndicate content