We Provide progressive business solutions

Researchg

Web Content Management Systems
A universal interface to connect to and manage any content management system.

solutions

Consolidating Control Panel Interfaces
Designing one interface to connect through the APIs of disparate content management systems

Results

Extending Core Applications
Every CMS has it's own way of doing things. A place to organize the different ways to do things in different types of content management systems.

Navigation

Login

Lazy Load Pattern with Asyncronous Javascript

2011-08-25 07:27:49

add function to queue of onload event and asyncronously implement lazy load

(function() { function async_load(){ var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = 'http://yourdomain.com/script.js'; var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x); } if (window.attachEvent) window.attachEvent('onload', async_load); else window.addEventListener('load', async_load, false); })();

software-design

2011-01-30 17:34:38

There are two ways of constructing a software design. One way is to make it so simple there are no obvious deficiencies. And another way is to make it so complicated that there are no obvious deficiencies. -C Hoare

spree on linux

2011-01-22 11:07:28

  1. Ruby 1.9.2 and Rails 3.0.1
  2. Spree, Rails, and Ubuntu
  3. rails new boutique-shop
  4. gedit Gemfile
  5. gem 'spree', :git => 'git://github.com/railsdog/spree.git'
  6. bundle install
  7. rails g spree:site
  8. rake spree:install
  9. rake spree_sample:install
  10. rake db:bootstrap
  11. rails s