Github asks for my password every time
I recently had to re-set my git repo, and after I did every time I did git pull or git…
Awesome Debugging for Rails Boot StackLevel Too Deep problem
So let’s say you are, for example, upgrading your Rails app and when you boot it you get a crash…
IE Favicon Caching
If you’re having problems with your favicon in IE, consider this: – has to be in the root folder –…
IE 6 / IE 7 missing JSON object, get ‘undefined’ error when trying JSON.stringify, JSON.parse
The problem is that IE 6 and IE 7 don’t implement at native JSON object. You can include this code…
JavaScript Introduction – Part 1 (Interpretation, Identifiers, and the var keyword)
I want to cover a basic but essential part of what you might expect in an introduction to JavaScript. This…
jScrollPane with IE6 & IE7 causes content to spill out all over the page
There is an IE 6 / IE 7 (only) bug that causes the content that should be scrolling to spill…
Building a multi-platform video player with jPlayer
The jPlayer library for playing videos is very good and well documented here
Access-Control-Allow-Origin (Cross Domain Resource Loading)
When a website that is running locally tries to access a remote web service. XMLHttpRequest cannot load Origin http://127.0.0.1 is not…
Setting up Rails 3 with Rspec 2
add to your Gemfile group :development, :test do gem ‘rspec-rails’ end Be sure to bundle install after changing your Gemfile…