Post Job Free
Sign in

It Software

Location:
United States
Posted:
December 07, 2012

Contact this candidate

Resume:

skip to main skip to sidebar

AmiableCoder - Ian Stewart's Blog

Posts on software, marketing, and bringing the two together

Rails, OpenID, XRDS, and Especially Yahoo!

When setting up OpenID (using AuthLogic), I ran into this problem when logging in with a Yahoo ID:

"Warning: Yahoo! cannot verify this website. We recommend you do not share any personal information with this website."

Andrew's writeup goes into the details of why that's occurring, and below is the solution I used: A dynamic XRDS template. Though a static document would have been nice, I needed something more flexible because my users might arrive on any of a number of different subdomains (i.e. user.mydomain.com, mydomain.com, www.mydomain.com). The four steps are:

Set a META tag in the head of whichever layout is going to be used to render requests for your domain root.

Adjust the controller action that responds to requests for the root (set in routes.rb with a line like map.root) to set an X-XRDS-Location header when responding, and add a yadis action (but don't cache it!).

Add a yadis.xml.erb file into app/views/controller_name.

Add the route to connect requests to /yadis.xml to your erb template.

Here's a gist showing the code.

Posted on Monday, January 11, 2010. View Comments

Personalized Media

Recommender Systems aren't new - most of us are familiar with those run by Netflix, Amazon, etc. They're great ways to find new things you might like, based on previous preferences.

I've been wondering recently - How long until the movie/TV show/eBook itself is customized James Bond's car, for example, might show as a different make and model depending on the iTunes account that rented the movie. It certainly seems like advertising would be the first use - change a label here, a word or two there.

What about changing a more substantial part of the content in order to try and improve the experience of the end user I imagine all of us have walked away from a movie before thinking "I would have liked it a lot more if they had (or hadn't) done $THING". Some of the more formulaic movie plots already feel a little like Mad Libs. Perhaps we're just a few software versions away from taking the writers out of popcorn movies entirely.

Feel like watching a new movie tonight We'll MAKE ONE for you.

Posted on Tuesday, October 13, 2009. View Comments

The Database of Intentions v2

We need a better way to detect attention on a webpage.

The problem with unique page views, subscribers or followers as metrics is that they're not scarce enough. It's very easy to friend someone online, and just as easy to ignore most of what they say. LinkedIn references are even worse - the incentive for making a reference is just reciprocity, yet it has the appearance of somehow being more genuine. Some of us might take the time to trim down their friends lists, but most of us won't.

Designing content for engagement (forcing unnecessary clicks just so you can measure them) is wrong - you should not make something less user friendly for the sake of metrics. Eye tracking is a better measurement, and it's already being applied to usability studies. Could we take it a step further somehow, perhaps augmenting eye tracking with continuous MRI scans and facial emotional response recognition Could we miniaturize such a device and install them *everywhere*

OK, that's a little creepier than cookie tracking. Plus which, it might not even be that much better. Eye movement isn't always under cognitive control, and one might confuse the moments my proto-brain grabs the wheel with intellectual interest.

What about a complex javascript function Something that takes inputs we do have (like onmouseover, window focus events, scrolling, zooming) and is able to mathematically determine an attention probability map. I won't pretend for a second that it's a simple calculation - it would need a lot of research papers, community support and intuitively correct outputs. But if it worked, content and service creators could be that much closer to understander their audience and further refine their offerings. If webmasters were willing to anonymously share their data, we could build a content discovery network without any participation bias or random sampling - we'd have the whole population.

Posted on Tuesday, September 15, 2009. View Comments

Operating System Independance

I love Snow Leopard - the speed, UI design and the underlying Unix goodness are all awesome. It's an operating system that has only one critical flaw: it doesn't run Galactic Civilizations 2.

Being able to manage a galactic economy, design ships and construct starbases is important.

Virtualization solutions are getting better, but they still don't do a great job with 3D graphics. So now that Boot Camp can mount HFS+ partitions, I installed Windows Vista. (Speaking of Vista, I've come to the conclusion that after two services packs it's no longer a terrible operating system. I spent some time running both Vista and the Windows 7 Release Candidate, and I now suspect that Windows 7 is far more a branding change than it is a technological upgrade. I also think that Vista was made a rough transition on_purpose to rapidly force 3rd party application developers though a system architecture change, but I digress.)

I wanted access to all the services I used on my Mac while using Vista, so that being away from OS X would only be a little painful. Here's a list of the programs and synchronization services I found most useful:

Dropbox: Man this is an awesome file sync service.

MobileMe: Does a nice job keeping my bookmarks in sync between my iPhone, Mac, and Windows worlds. I like the iDisk component too, I just wish it was better integrated into Windows. Since it's not, I use Dropbox for all my "actively edited" files and use the iDisk as an archive.

Pidgin: A multiprotocol IM client. It's related to Adium, so I feel right at home.

Microsoft Office: I bought Office 2007 back when I started school (and a year before I switched to a Mac), so it's nice to put that purchase to work again.

Google Apps: Email, contacts, and calendar, all nicely synchronized between my PC, Mac and iPhone.

NetBeans: I liked NetBeans already (I run it in OS X), and JRuby lets me avoid the hassle of building a Ruby development environment in Windows. To get it working, you'll need the latest Java SDK and the NetBeans installer. My apps use SQLite, so just by changing the line in database.yml the reads "adapter: sqlite3" to "adapter: jdbcsqlite3" (having installed the jdbc-sqlite3 and activerecord-jdbcsqlite3-adapter gems), I'm good to go.

Hulu Desktop, iTunes: Both have Windows and Mac versions, and let me access and update my video queues.

Posted on Friday, September 04, 2009. View Comments

Rails Dive: Module MimeResponds

As I'm learning rails, I occasionally hit sections of code that don't make any sense to me. When I saw the following (fairly common) block of code within the rails controller, it wasn't obvious to me exactly what was happening:

respond_to do format

format.html # index.html.erb

format.xml { render :xml => @posts }

end

Sure, I know I can add lines like this

respond_to do format

format.html # index.html.erb

format.xml { render :xml => @posts }

format.json { render :json => @posts }

end

and it JustWorks, but I'm skeptical of almost everything and that seems like sorcery. So, I spent some quality time with rails and my debugger and found that there's really 10 steps involved that make that block work. For reference, I'm using the following:

ruby (1.8.6 p287 [universal-darwin9.0])

rails (2.3.3)

ruby-debug (0.10.3)

ruby-debug-base (0.10.3)

ruby-debug-ide (0.4.6)

NetBeans 6.7

1.) mime_responds.rb, lines 157-159:

Mime::SET.each do mime

generate_method_for_mime(mime)

end

As part of rails startup, the MimeResponds module is loaded through a reflectively added include statement. This include causes the class declarations in that module to execute, and the above little block of code to run in the included Responder class (Lines 157-159 Yet run on load Why isn't this near the head of the file, where it might be noticed). For each mime in Mime::SET (a constant Array of Mime types defined in your config/initializers/mime_types.rb, also loaded during initialization), generate_method_for_mime is run.

2.) mime_responds.rb, lines 147:155:

def self.generate_method_for_mime(mime)

sym = mime.is_a(Symbol) mime : mime.to_sym

const = sym.to_s.upcase

class_eval

def #{sym}(&block)

custom(Mime const}, &block)

end

RUBY

end

Here are the comments I had to clip out for space:

# def html(&block)

# custom(Mime::HTML, &block)

# end

It's a good example of what's being added to the Responder class by reflection - a small, simple method for each mime type that calls Responder's custom method.

3.) *_controller.rb (based on your controller name)

respond_to do format

format.html # index.html.erb

format.xml { render :xml => @posts }

end

Finally we can start looking at the code I was originally interested in... but only execute part of it. (yaaarrrg!)

respond_to is an instance method in MimeResponds, and in this case we're passing it the do format block as an argument.

4.) mime_responds.rb, lines 102-105:

def respond_to(*types, &block)

raise ArgumentError, "CLIP" unless types.any ^ block

block = lambda { responder types.

each { type responder.send(type) } }

responder = Responder.new(self)

block.call(responder)

responder.respond

end

The "CLIP" text in there is mine, just to make the line fit. What it says is this: "respond_to takes either types or a block, never both". It's just a logical XOR to make sure you don't try to pass it both kinds of arguments. In our case, we just passed it the block - so far so good.

The second (and third here, just to make it fit) line initializes the block if it's currently null. It's not in our case, so we just keep going and create a new Responder object.

5.) mime_responds.rb, lines 111-125:

class Responder #:nodoc:

def initialize(controller)

@controller = controller

@request = controller.request

@response = controller.response

if ActionController::Base.use_accept_header

@mime_type_priority =

Array(Mime::Type.lookup_by_extension(

@request.parameters[:format])

@request.accepts)

else

@mime_type_priority = [@request.format]

end

@order = []

@responses = {}

end

The previous call of Responder.new calls the initialize method shown above. Basically, it's initializing a bunch of instance variables, the most important of which (to us, anyway) is @mime_type_priority. It's going use the method in Mime::Type to return an array of mime types with it's values ordered by the by the request header the client browser sent. In my case, it turned Firefox's request for "text/html, application/xhtml+xml, application/xml; q=0.9 q=0.8" into

[0] = "text/html"

[1] = "application/xml"

[2] =

6.) mime_responds.rb, line 106:

def respond_to(*types, &block)

raise ArgumentError, "CLIP" unless types.

any ^ block

block = lambda { responder types.

each { type responder.send(type) } }

responder = Responder.new

(self)

block.call(responder)

responder.respond

end

Now that we have a new responder object, we can run the block that piqued my interest in the first place.

7.) *_controller.rb (based on your controller name)

respond_to do format

format.html # index.html.erb

format.xml { render :xml => @posts }

end

For each line of the block, we're now executing the little methods we created by reflection back in step 2. If you're debugging with NetBeans, the IDE will jump now to the code shown in step 2, where we created the methods. A totally reasonable thing to do, in my opinion. It's only confusing if you didn't know that code had already been executed (for example, because it was executed on include but buried two thirds of the way through the file

8.) mime_responds.rb, lines 127-137

def custom(mime_type, &block)

mime_type = mime_type.is_a(Mime::Type) mime_type :

Mime::Type.lookup(mime_type.to_s)

@order @controller.action_name)

end

end

Each of those reflectively created methods just calls the custom method, passing in the appropriate mime type. After validating that the passed in variable is, in fact, a Mime::Type (in our case it is - we reference them explicitly in our created methods), we append a new entry to the @order array, and add a new entry to the @responses hash, both of which were declared in Responder's initialize function.

Since @responses did not have a value for the mime type (it was empty when we started executing our reflection-generated methods, and each method is a different mime type), the key pair evaluates to null and the new key is the block in the method above (Proc.new ... end). The end result of what we're doing (after we've executed the custom method for each mime type in our controller) is that the @responses hash table will have keys for each of the different mime types we're set up to handle, and value will be the block for handling them. Quite cool.

9.) mime_responds.rb, line 107:

def respond_to(*types, &block)

raise ArgumentError, "CLIP" unless types.

any ^ block

block = lambda { responder types.

each { type responder.send(type) } }

responder = Responder.new

(self)

block.call(responder)

responder.respond

end

Home Stretch!

10.) mime_responds.rb, lines 172-190

def respond

for priority in @mime_type_priority

if priority == Mime::ALL

@responses[@order.first].call

return

else

if @responses[priority]

@responses[priority].call

return # mime type match found, be happy and return

end

end

end

if @order.include(Mime::ALL)

@responses[Mime::ALL].call

else

@controller.send :head, :not_acceptable

end

end

In our base case, an actually very simple method. It steps through each mime type in @mime_type_priority, which was the array of mime types (ordered by preference) we created in step 5. If @responses has an entry for that mime type it executes the block from step 8 and then returns. If not, we roll over to the next-most-preferred response type, and try again. If we reach the end of @mime_type_priority, and still haven't returned from the method (and either they don't want or we can't handle

MIME:

:ALL), we raise an error. In our case, this method should have returned on the first iteration - html was the first type we set up to handle.

With that return, our block-of-interest is complete. We've parsed what the client can handle, mapped that in (in order) to what we can handle, and done our best to respond in his most preferred mime type. So it's not actually sorcery - it's reflection!

(Which, really Is a little like sorcery.)

Posted on Saturday, August 15, 2009. View Comments

Personal Web Crawlers

There are well over a trillion pages on the internet.

The most of them are not good. Everyone may have their own definition, but even the stuff we know isn't good gets posted anyway. Storage is free, and thinking is hard! Brute force your way to excellence!

But there are great pages out there too. Original ideas, brilliant insights, and stunningly different perspectives. How do I navigate the volume How do I find the good pages without my having to sort through all the rest

Social search could help, and social browsing might too. But while some of my friends are a good indicator of what I might like, a lot of them aren't. I don't typically make friends with people like me, I make friends with people *unlike* me. So not everything they like is good, by my definition.

Recommendation engines (which assert that people who like what I have liked will continue to do so) seem to do a little better. But if we're already at the point where we're working like mad for a 10% improvement, that doesn't seem like the way forward either.

I wonder how I might teach a computer to make quality decisions like I do. Are there mathematical harmonics behind articles I like Do the authors share certain determinable characteristics Do they tend to use similar references (And if they did, would that bias my stream to the point where it was no longer useful)

One day, I will have my own web crawler.

Posted on Thursday, August 06, 2009. View Comments

Software Craftsmen

Among my coding friends, we've been struggling with the term "software engineering" for some time. The term just doesn't seem to fit. Here's our major stumbling point:

In engineering, the functional requirements are translated into complete technical specifications well before construction starts.

In software development, the work starts when you have the functional requirements, and the final completed product is the *only* accurate technical specification.

Great engineers are intentional and highly disciplined. Ask for a bridge You get a rock solid, efficiently constructed bridge. Because engineering has all kinds of specifications, laws and codified knowledge, anything "engineered" by definition meets prescribed levels of safety, fault tolerance and reliability. For the right kinds of projects, those are very desirable characteristics (bridges, for example).

Great software developers are craftsmen. Their knowledge isn't regulated by regulations or ethos statements, and their textbooks really only teach syntax. Most of what they know is tacit and hard to learn. Their real value is in their ability to take basic requirements and incrementally build (with agile feedback) the Best Version of What You Actually Needed.

Great developers are few and far between, and they're the single most powerful positive force in any development project. They're expensive, and they should be - building the Right Thing (and often in fewer iterations) is really, really valuable.

Find them and get them on the bus.

Posted on Tuesday, July 21, 2009. View Comments

Older Posts

Subscribe to: Posts (Atom)

About Me

Ian Stewart (***@************.***)

I'm a recent masters graduate and open source software developer.

Also Me

GitHub Projects

Google Reader Shared Articles

Disqus Comments

2008 Internship Blog (Sun)

Search This Blog

Loading...

Archive

2010 (1)

January (1)

Rails, OpenID, XRDS, and Especially Yahoo!

2009 (55

)

October (1)

Personalized Media

September (2)

The Database of Intentions v2

Operating System Independance

August (2)

Rails Dive: Module MimeResponds

Personal Web Crawlers

July (2)

Software Craftsmen

The End of the Realtime Experiment

May (15)

A Tale of Two Social Networks

A New Front Page and A More Complete Picture

Convergence

An Open Letter To New Twitter Followers

MBA'ed

Negative Externality Billing, Inc.

Consumers' Marginal Cost of Media

Babel. We Should Not Have Built That.

ShareThis

Dropping Out of Warp

Monday Night Starcraft

Succeed Silently, Fail Loudly

Nothing to See Here

This Isn't a Blog

We Like Walled Gardens

April (22)

Briefly

The Job Market of Imperfect Information

What They Didn't Teach Us in Business School

Re-Publishing

Real Live Blogging

Punch-Out!

The Least Expensive Option

The Value of the Conversation

Oracle and Sun

Graduation Countdown

Quick Search Box

Corporate Social Networking

Discovery

URL Shortening

Twitter Discussion Sourcing

Software Thefts Aren't Always Lost Sales

The Internet-TV Interface

Twitter's Answer

Twitter Questions

A 15-Second Programmers Guide to VBA

April First Winner

Blogger and FeedBurner

March (10)

Depreciate Your Home

Browser Game Adoption

Mindfields Ahead

Overthinking Link Etiquette

Post Once, Read Anywhere

January (1)

2008 (45)

December (3)

November (1)

October (6)

September (7)

August (3)

July (4)

June (1)

May (2)

April (1)

March (2)

February (6)

January (9)

2007 (36)

December (2)

November (1)

October (1)

September (2)

June (1)

May (1)

April (6)

March (3)

February (6)

January (13)

2006 (193)

December (14)

November (22)

October (22)

September (22)

August (24)

July (25)

June (37)

May (24)

April (3)

2005 (7)

April (7)

This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States

License



Contact this candidate