Sunday, December 4, 2011

Combined Aggregate Web Site

A few years back I developed a Key Word Analyzer (KAT) tool. It is at www.davismission.org/keyword

Now I am working on another feat of web programming that I call a "CAF" web site.  Imagine having your Facebook, YouTube, Ebay, Twitter and many more sites all aggregated onto one web site.

I am developing what I call a Combined Aggregate Feed (CAF) Web Site to bring several of my web sites together into one location. What do you think is the best Three Letter Acronym (TLA) for this kind of web site? It is a work in progress and can be found at http://www.davismission.org/bobdavis321/

This was not easy and just doing an < object data="web site" > because that does not work for a lot of web sites. For example for Facebook you have to create a "Badge" then link that badge into your web site.

The code for twitter is a Java script that looks like this:
new TWTR.Widget({
  version: 2, type: 'profile', rpp: 4, interval: 30000, width: 'auto', height: 400,
  theme: {
    shell: { background: '#333333', color: '#ffffff'
    },
    tweets: { background: '#ffffff', color: '#000000', links: '#880088',
    }
  },
  features: { scrollbar: false, loop: false, live: false, behavior: 'all'
  }
}).render().setUser('bobdavis321').start();

To get the scoop on how I did it all just right click on the web site and select "reveal code" or "reveal page source" in Firefox..

No comments: