Thursday, January 07, 2010

Untitled

I've set up a playlist so that I can listen to music throughout the day today without stopping to futz with iTunes. The playlist consists of entirely new music that I've never heard before. Listened to Studio's "Yearbook 1" this morning. Amazing. Now, I'm listening to Air France. Love that, too. Air France reminds me of Blade Runner/Antarctica-era Vangelis.

Posted via email from Dave's posterous

Monday, November 16, 2009

TIP: FiddlerHook: Easier Support for Fiddler in Firefox

You may all already know about this, but on reinstalling Fiddler I was pleasantly surprised to discover this: official support for Fiddler in Firefox. Not bad, right? It comes in the form of an extension called “FiddlerHook.”

Read more here: http://www.fiddler2.com/fiddler2/addons/fiddlerhook/

David

PS. Up until now I had been using something called “SwitchProxy” to do almost the same thing, but this is definitely better.

Posted via email from Dave's posterous

Trying out Friendbinder for the first time.

My Google Wave experience over with, I'm on another Web 2.0 binge...trying out every service I can. Right now: Friendbinder.

Posted via email from Dave's posterous

A 'Go' Linked List Implementation

So I've been experimenting with Google's Go programming language. So far I'm liking it quite a bit. Here's a rudimentary implementation of a Stack I made using a Linked List. As you can see, I've defined two interfaces -- one for the Linked List functionality and one for the Stack functionality -- but I haven't implemented either fully. There's also a main() function thrown in to demonstrate the functionality. Right now the Linked List only stores integers, but this could be changed very easily. 

--David

Click here to download:
LinkedListStack.go (1 KB)

Posted via email from Dave's posterous

Wednesday, November 04, 2009

How to get Facebook to recognize your Flickr username.

I was trying to integrate my flickr profile into my facebook feed, but I kept getting this message: "The email or user name you entered is not valid. Please verify and try again."

Here's what I did. I went to my flickr profile. I right-clicked on the main photostream page and hit "View Source." In the HTML source I found my flickr ID. This was in a line formatted as follows:
global_nsid = '12176869@N00',
This means that my flickr ID was "12176869@N00" (minus the quotes). Went back into Facebook. Went to my profile. Hit the options button on the top right hand side of my Wall. Hit the Settings button. Next I re-added Flickr integration in the "Imported Stories" section, but instead of using my username I used my flickr ID. That was it.

-David

Simon Page

Good god. These are great:

Simon Page: "

simon2

3908800121_f6963e3b61_o-634x896

simon4

simon3

This series by Simon Page is great. I’m always a fan of this retro minimalist look. I think he does a great job making it feel aged without going overboard. The color and texture is spot on and the vintage feel is skillfully conjured. Sounded like what started as a personal project turned into a successful client job after they saw the work. Got to love when that happens!




Permalink |
Comment On This Post (10) |
Tweet This Post | Add to
del.icio.us | Stumbleupon


Post tags: , ,


"

Wednesday, October 28, 2009

Neon Indian

Been listening to the new Neon Indian album and reorganizing the record collection. Not bad at all.

Posted via email from Dave's posterous

Carson Daly

What happened to Carson Daly's show? Does anyone else remember when it used to have a set? 

Posted via email from Dave's posterous

Sunday, April 12, 2009

check this out. it's awesome

check this out. it's awesome: http://monome.org/

this video makes me want to cry:


Welcome to Monome from sam_square on Vimeo.

these people make synthesizer controllers from computers. very very cool.

Labels: ,

Saturday, March 21, 2009

delicious thumbnails

Ever wish you could see thumbnail images of those delicious link feeds? now you can. this handy tool will take a delicious rss feed and add thumbnails to it.

Feed URL:

Labels: , , , ,

Monday, October 06, 2008

iPhone Programming Tip: How to find the full URL of a file within your Application's Bundle

How to find the full URL of a file within your Application's Bundle (mainBundle)

This would return the full URL of a file named "Sound2.caf":

CFURLRef fileURL;
NSString *path;
path = [[NSBundle mainBundle] pathForResource:@"Sound2" ofType:@"caf"];
fileURL = (CFURLRef)[NSURL fileURLWithPath:path];

Labels: