h1

Inman ConnectTech – Aug 5, 2009 in San Francisco

May 18, 2009

A quick note to let you know about the Inman Connect conference coming up this Aug 5-7 at the Palace Hotel in San Francisco.  This is always one of the best conferences of the year, and they’ve got some really great speakers this year.

Click for Inman Connect info.

Inman is also bringing back a workshop specifically designed for CTO’s, developers, entrepreneurs and product managers – it’s designed to explore innovation in a program tailored to geeks.  I will be the moderator – the “BIG GEEK” – for the day.  Check out the agenda – there’s some great speakers already signed up, and I know they’re working on a couple more that will really blow everyone away.  Let me know if you have any questions or other input.

Click for ConnectTech workshop info.

Finally, if you’re a developer (or know or employ developers) check out this opportunity.  This is your chance for fame and glory – a great way to get added to the main Inman Connect agenda and in front of the entire industry.  Real Estate Connect SF 2009 will host the first-ever real estate developer challenge.  A hack-a-thon called Connect Create,  it’s a brand-new opportunity to demonstrate your (or your company’s) innovative streak.

Here’s the short version of how it works:

  1. You or your team have 48 hours to create an interesting real estate application (during the first two days of Real Estate Connect).
  2. You demo your application in front of 1,000 of the most important people in real estate during our Friday general session.
  3. You wow our judges, win our grand prize, and become and instant real estate rock star.

Participation is limited.  Email create@inman.com before close of business on Friday, May 22nd to express your interest. This contest is platform agnostic and applications may be business-to-business or business-to-consumer in nature.   Official rules and logitical plan will be distributed to interested parties.

Please feel free to forward this to any others in our industry.  Hope to see you in SF this summer!

h1

Syndication and consumer internet search in real estate

May 4, 2009

I was asked by Mark Lesswing to give a talk to CCIMLS – the Cape Cod MLS – last week about about “How syndication helps”.  I don’t know all the details of the politics in that area, but apparently the MLS has had to turn off their property search portal due to brokers demands, and the MLS is now fighting demands to also turn off listing syndication to other major search portals.  My notes from the presentation are below.

Side note:  I did the talk over Skype video, which worked surprisingly well.  It’s great when a 10 minute talk literally takes 10 minutes, versus the two days it would take traveling there and back.  The new Skype v2.8 has noticeably better quality and has added screen sharing.  It’s in beta for Mac and you can download it here.

Buyers

The California Association of Realtors (CAR) recently published their annual survey – “2008 Survey of California Home Buyers”.  In former years, this report was called “Internet v. Traditional Buyer Survey”, but they changed it this year.  I think this is an important point – they no longer see a distinction between internet and traditional buyers, as well over 80% of buyers now start their search on-line.  The study found that:

  • Consumers do an average of 6.2 weeks of research on-line before ever contacting a Realtor.
  • 90% of those buyers who use the internet also find their agent on-line.

We also know from other studies that consumers are performing their research on multiple sites.

This aligns with consumer search behavior when researching other large ticket items such as cars and flat screen TV’s – consumers will go to multiple sites like consumerreports.org or cnet.com to research, rather than only visiting a manufacturers site like samsung.com or a store site like bestbuy.com.

Sellers

Want to know:

  • What is the market right now so the home can be properly priced.
  • The marketing plan to ensure maximum exposure of the property.
  • Agent is going to take care of them from start to finish.

If the seller goes to a popular search portal like realtor.com or remax.com and does not see their house listed for sale, that’s going to cause a big problem.

Build

Building a successful real estate search portal takes:

  • Content
  • Technology
  • Marketing (to drive consumers to the site)
  • Business model (to pay for and sustain the site)

Agents cannot do the above, and very few brokers can.  There needs to be a cooperative local effort, led by someone like an MLS, or there needs to be syndication of the content to companies that have done the above and can drive traffic and exposure to those listings.  Some of the MLS vendors – like FBS – are doing work in this area to enable local MLS search portals.

The Shift

Agents and brokers need to shift their focus from simply providing listing data to efficiently managing and nurturing the consumers search, adding value with things like:

  • Local area knowledge (like neighborhoods, schools, community)
  • Current local market knowledge (like pricing trends and competition)
  • Even broader, macro economic and financing trends (like tax credits and financing programs).

Wrap Up

This is what W&R Studios is focused on as a company, starting with our Dwellicious product:

  • Helping consumers to organize, share, and discuss their search for homes.
  • Giving agents and brokers visibility into that process and tools to add value earlier in the research process.
  • Hopefully this gives consumers a better experience and makes agents and brokers more efficient.

Questions?

h1

items for 2.13.2009

February 13, 2009
h1

Mechanize to the rescue

February 10, 2009

If you’re using Ruby to download pages via http, you have a couple of standard choices.  Open-uri is the easiest method, as it abstracts the download and treats it just like a file.  If you need to do something like examine headers or do a POST instead of a GET, you can step down into net/http and be a little closer to the details.

If you need the complexity of sharing cookies across a session and handling re-directs from an MS IIS web server, then don’t spend two days trying to get these two to work like I just did.  Jump straight to Mechanize – just install the gem.  It handled the complex re-directs, the cookie sharing, and both GETs and POSTs with a magical ease.

I haven’t gone any further with it, but apparently Mechanize can do a lot of other stuff too, like find fields and fill out forms.  In combination with Hpricot, it would be a natural for some pretty complex web spidering.

Hope this helps save someone else two days.

h1

Dwellicious interview at NAR 2008 Orlando

November 12, 2008

Dan Rothamel, Mike Cutlip, and Chris McKeever interviewed me and Greg about Dwellicious in the CRT Bloggers Lounge.  See the whole thing here.

Dwellicious beta signup links went out to about 25 people today.  If you want one, just drop me a line.

h1

items for 10.26.2008

October 26, 2008
h1

Github is cool

September 19, 2008

One of the things I’m enjoying most about Ruby is the energy and sharing that goes on within the community.  Github is turning into the hub that feeds that community.  They bill it as “social code hosting”.  Huh?  Code has never really been a social thing, and the root of github is git – a source code control app – just about the most boring class of software apps there is.  But github offers some innovative new features:

  • every member gets their own space where they can upload their code projects to share with the community, along with the standard profile and RSS feed features you’d expect.
  • search for code you need to complete your own projects and sign up to “watch”, or be notified when any project that you’re using changes.
  • a seamless way to push version controlled code from your desktop to the hub, into either public or private repositories – public repositories are free, whereas privates ones have a reasonable price.
  • and an easy way to fork others code so that you can modify it for your needs or to fix bugs, then push back up to the hub for the benefit of the rest of the community.

Since it went live this year, many very high profile projects have moved to github, including Rails, Merb, Capistrano, Scriptaculous, and Prototype.  In my new project, I am using Will_Paginate, Hpricot, Restful_Authentication, JSON_Printer, and Acts_as_taggable_on_steroids – all downloaded from github.

I was able to add a feature I needed to JSON_Printer, a small project produced by the programmers at TechCrunch, and posted it back to the community.  Just today, I uploaded a new project called NumberTwoPencil which I created to interface with the Education.com API announced earlier this week.  If you have a need for school data in your Ruby app, check it out, make improvements, and share it back with me.  I’m also hosting two private repositories there, code I push every night for backup purposes.

The most popular projects can be seen at http://github.com/popular/watched.  My projects can be viewed at http://github.com/danwoolley.

h1

items for 09.19.2008

September 18, 2008
  • We’re Never Content – Amazon Web Services Blog
    Before the end of the year we are planning to release a new service for content delivery. This new (and as yet unnamed) service will provide you with a high performance way to distribute popular, publicly readable content to your customers all over the world, with low latency and high data transfer rates.

    New CDN coming from Amazon, joining their other web services.

  • Second set of logo drafts are here! – Lightning | Twice

    Another set of logo drafts for dwellicious – come and tell us which one you like.
h1

items for 09.15.2008

September 13, 2008
  • Plastic Logic Reader: Get to the wow – Signal vs. Noise
    But there’s a demo lesson to be had here: When you’ve got a product that does something amazing, don’t waste 40 seconds talking about it. Just show it! The best demo is a usage demo, especially if you’ve got wow factor.

    Dude! I want one of these! Where do I send my money?

  • Help us pick the logo for our new web app! – Lightning | Twice Blog
    The new blog for the Woolley | Robertson Group.  Help us pick the logo for our new app!

h1

items for 09.08.2008

September 4, 2008
h1

What are you doing?

August 14, 2008

Writing mad gobs of beautiful code, unshaven, in my new VendorAlley.com t-shirt (still available here) and hoping WordPress will forgive me for being absent so long.

(Dear WordPress – sorry for the ironic title of this post – if it even gets through your uberspam filter.)

This post sponsored by vendoralley.com.

This site is in no way affiliated with vendoralley.com, especially editorially, and especially especially those fill in the blank posts.

h1

items for 08.01.2008

August 1, 2008
  • We live in a cynical world of tough competitors . . . – FBS Blog
    There’s a lot corny about Tom Cruise’s “you complete me” dialog at the end of Jerry Maguire but the part that always sticks with me is where he says something like “we live in a cynical world of tough competitors.”  Implicit is that there’s something more to life and I’ve been fortunate to witness that this week.

    In business, as in sports, people’s true character comes out when you’re down and need to mount a big comeback.  The true winners and team players are revealed.  Scaling is the most difficult thing in the web world right now – I’ve been there many times.  This particular game might have been hard to watch at times, but I’m calling it a scrappy, come from behind win for the home team – and I’m a fan.

  • The Art of Visual Thinking – How to Change the World
    The more slides and pages that you need to explain your business, the less likely you will succeed. Truly, the best pitches and plans require nothing more than one page or a picture to explain them.

    Can you do this?  It’s harder than it sounds.

  • Advanced Access Earthquake Photo in LA Times – Advanced Access BlogThe “Your Scene” section of the LA Times published a photo taken after our 5.4 earthquake on 7/29/08 at 11:42 AM. The photo included is the office of Marketing Director, Gary Brackle – his office took quite a beating! Friends at Advanced Access also has a tough week – but they’re all ok.
h1

items for 07.30.2008

July 30, 2008
  • Yuil – Google BlogoscopedYuil is “a mashup of Yahoo! search results (using their BOSS platform), presented using the new Cuil look and feel, and running on Google’s App Engine,” as Tyler Hall tells us. (“Just in case things weren’t confusing enough”.)

    Classic!!!

  • Can Rails Affect Your Business’ Bottom Line? – Ruby on Rails Website Development Blog from Atlantic Dominion SolutionsMeasuring Return on Investment (ROI) is interesting as there are a few approaches, many of which are determined by how a company defines and determines returns and costs.
  • Kickfire
    This sounds killer: a high-performance database appliance for MySQL. The custom SQL chip uses parallel, pipelined data flow to deliver the power of tens of high-end CPUs. Query performance 10-100X faster than a traditional RDBMS.
    (tags: mysql hardware post:tzetzefly)
  • Streamfile
    Simple, clean, and free way to get large files (up to 2MB) to people when you can’t e-mail them a large attachment. File is uploaded to site, where it is available for 24 hours, and recipient is sent a link to download it.
    (tags: web file transfer post:tzetzefly)
h1

http_authentication plugin with Rails 2.1

July 17, 2008

If you’re using the popular http_authentication plugin from DHH and getting a NoMethod error “protected method `render’ called for <SomeController>”, the problem is that in Rails 2.x controller.render is now protected.  This was a pain to figure out, but it can be easily solved using an updated plugin from Matthew Rudy at http://github.com/matthewrudy/http_authentication/tree/master.  Google wasn’t much help, so I’m hoping this post will save someone with this issue some time.  Just run

script/plugin install git://github.com/matthewrudy/http_authentication.git –force

and you should be fine after that.  The README in the plugin’s folder has further examples on use.

h1

items for 07.11.2008

July 11, 2008
  • Mapstraction – map abstraction API for Javascript – Hackszine.com
    Mapstraction is an abstracted Javascript mapping API that can make use of Google Maps, Microsoft Virtual Earth, Yahoo Maps and Mapquest. Instead of deciding on a particular mapping provider, you can build your web application with Mapstraction and easily switch to a different service by changing a single line of code.
  • Browse Del.icio.us Bookmarks Visually With FavThumbs – TechCrunch
    FavThumbs offers a visually-pleasing web application to view screen shots of your bookmarks using the del.icio.us API.

    Not so interested in the app itself, but in the fact that clear, published, open API’s make it so easy to add value around a great service.

  • When Distraction is Good – O’Reilly Radar – Insight, analysis, and research about emerging technologies
    Distraction is getting a bad name. This past month, I’ve been heads down on a few projects and noticing something I’d not been very conscious of before now. When I get “stuck” or when I reach a natural break point on a piece of work, the menu of potential distractions includes everything from email and telephone calls to getting food, socializing and more.I did an informal audit. Sometimes I would check email. Other times, I would pace, get a glass of iced-tea, or walk outside for a few minutes. When I did the latter — any activity that was quiet, reflective and receptive, I would feel refreshed. I was open to receiving an insight and to being in the moment. When I returned to the project that had momentarily stumped me, I would enjoy new energy. I started calling this receptive distraction. Receptive distraction is any sort of distraction that creates mental space.

    When I went to email, however, I would “spin out.” That is, I would completely lose track of what I had been working on and get immersed in all sorts of other issues. I started calling this deceptive distraction. I thought I could take a short break and crank out a few emails, but it took longer to do the emails than I thought, and longer to get back into my project afterward.

  • Scaling on EC2 – WebMynd Blog
    Interesting post about how WebMynd is scaling quickly using EC2, Solr, and nginx.
    (tags: ec2 scalability architecture solr)
h1

Useful utility – Jott

July 10, 2008

I’ve been using Jott now for a few weeks and it’s super useful.  You set up a (free) account, give it your e-mail address and phone number, and (optionally) any other friends e-mail addresses who you may want to Jott.  Once set up, you just dial Jott (a toll-free 866 number) and the automated system asks who you want to Jott and what your message is.  You can Jott “myself” or any friends name that you already set up on the web site.  A few minutes later, the recipient gets an e-mail with a text transcription of your message.  The voice to text translation works really well in my experience.

I use this all the time driving to or from work – anything I’m trying to remember, especially to do lists – I just Jott them and then I have a nice list waiting in my inbox when I get there.  Highly recommended.

h1

items for 07.09.2008

July 9, 2008
  • All I need is a red guitar, 3 chords and the TRUTH! – Welcome to Vendor Alley
    So it begins…  Woolley | Robertson Group has found a home!

    What more do you need?  (Products, customers, employees – yeah, yeah, I know – let us enjoy a day at a time).

  • del.icio.us is social search – skwpspace
    I find myself more often turning to tag search on del.icio.us when I’m looking for ‘best of’ type searches.
    (tags: delicious)

    Good insight – totally agree with this – delicious is one of my most used web tools.

h1

items for 07.05.2008

July 5, 2008
h1

The Six Phases of Twitter Uptake

July 3, 2008

From my experience.

  1. “That sounds stupid.  Why would I want to use that?  My life is busy enough already.”
  2. “Hey – this is kind of fun, especially at this conference.”
  3. “Man, the web site is down a lot.”
  4. “Cool – using twhirl will solve all my problems.”
  5. “Hmmmm – I guess all of twitter is down a lot.”
  6. “How can I live my life when twitter is f’ing down all the time!?!?!?!?!?”
h1

items for 07.02.2008

July 3, 2008