The Comedy Network sucks. I hate their web player, I hate the design of their website. But, what I hate the MOST is when they don’t keep their videos in sync with Comedy Central.
So, to get around the geographic restrictions, do this:
Install this Firefox add-on: http://addons.mozilla.org/en-US/firefox/addon/967
Now, do this:
1) Tools > Modify Headers
2) From the drop down on the top left, select Add.
3) Enter “X-Forwarded-For” in the first field to the right.
4) Enter “12.13.14.15” in the second field
5) Leave the last fieldblank, push the Add button to save and enable the forwarding.
Now you should be able to watch all the geographically restricted things you want.
Comments (20) •
I have a MediaTemple DV 3.5 server and I am a Rails developer. These things don’t go together out of the box. There’s a little bit of work involved in getting the DV up to speed with Ruby and Rails, but it’s really not that hard. Here’s how I upgraded Ruby to 1.9.1, installed RubyGems, and got Passenger (mod_rails) going with Apache.
Getting the server ready
First, you have to make sure you have root access to your server and that the MediaTemple Developer Tools are installed.
Now that you’ve confirmed that you have root and the Developer Tools are installed, you have to make sure yum is installed on the server. The good part about getting these things set up is that you’ll never have to do them again!
I find it annoying to preface every command with “sudo”, so all the following commands assume that you’ve entered a root shell with:
sudo su -
Upgrading Ruby
The default ruby on a DV 3.5 is version 1.8.5. Go ahead and uninstall that with the following command:
sudo yum remove ruby
Now install Ruby 1.9.1:
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p129.tar.gz
cd ruby-1.9.1-p129
./configure && make && make install
Now, install RubyGems:
Check that you have the correct ruby installed by doing:
ruby -v
You should get something like this as output:
ruby 1.9.1p129 (2009-05-12 revision 23412) [i686-linux]
Installing Rails and Passenger
Now that you’re this far, installing Rails is easy.
sudo gem install rails
That’s it for Rails. As for Passenger, you’re going to need a few more packages from yum for the installation to work:
yum install httpd-devel
gem install passenger
passenger-install-apache2-module
Now, we have to tell Apache to load Passenger when it starts up. The Passenger script probably told you that you had to include something like this in the httpd.conf:
LoadModule passenger_module /usr/local/lib/ruby/gems/1.9.1/gems/passenger-2.2.4/ext/apache2/mod_passenger.so
PassengerRoot /usr/local/lib/ruby/gems/1.9.1/gems/passenger-2.2.4
PassengerRuby /usr/local/bin/ruby
Open up httpd.conf using nano and add these lines after the loooong list of other LoadModule directives:
nano /etc/htttpd/conf.d/httpd.conf
Now restart Apache:
service httpd restart
That’s it.
Comments (12) •
The Japanese are so awesome. Mach 7 paper airplanes. C’mon, who else would do this?
Comments (8) •
Maps are really cool. I think the best kinds of maps are those showing the movements / effects / realities / influences of human populations on the world. Sometimes I find it useful to get out of my local bubble by staring at a map and seeing how we collectively exist and how we affect things. Sometimes I look just to see how things are laid out and how certain places or things relate to others.
My favourite book as a kid was the gigantic National Geographic atlas that my parents got for me for Christmas ‘91. It’s pretty cool as it is the last National Geographic atlas that shows the Soviet Union. It even came with a letter apologizing for the out of date maps. The USSR had broken up between printing and shipment. It was pretty sparse in terms of cool maps of the Soviet Union, so here’s a good one courtesy of the Encyclopedia of Marxism… those fun-loving guys. This one shows the distribution of ethnic groups in the country and gives a bit of perspective on the current little problem.
People who know me know that I am french and identify pretty strongly with that. Well, here are some french maps! Paris is a bit obsessed with documenting itself and they have tons of information on the City of Paris website. They even made their own version of Google Maps for Paris. But, some of the more interesting maps I’ve found on their website are the noise distribution maps (scroll to the very bottom).
Also, space is fascinating. Here’s a map of the Universe. Download the 300dpi version if you have the time and inclination. It’s awesome. Note the scale. Also, note where the ISS is. Not such an impressive use of $100,000,000,000 now, is it? Also, also, note that that scale is the reason we’ll never be an interstellar civilization, but that’s an entirely different post.
So, it shouldn’t be too surprising that I wasted (or very intelligently used in the quest for knowledge, depending on your perspective) a night at radicalcartography. This site makes me want to map data. I never thought I’d say that. This, this, this and this are some of the highlights, in my opinion.
Always save the best for last. Harold Fisk’s 1944 reporting on the flood plains of the Mississippi River. These are probably the most beautiful, interesting and detailed maps I’ve ever seen. They’re archived at radicalcartography for reference, but I found them independently before I found radicalcartography, ha! These are unbelievably detailed recordings of the track of the Mississippi River throughout geologic time. They’re really gorgeous maps. The colours are great. I am going to eventually get a few of these printed up professionally, I like them that much.
And thus ends our cartographic tour of the internet. Until next time.
I wasn’t really happy with any of the default iPhone wallpapers. They are nice and all, but they seem a bit too much like stock photography. So, I did a little searching and I’ve put together a little collection of images that I think make good backgrounds.
Here are a couple of examples:
Download the whole pack:
evilsupergenius-iphone wallpapers-v.1.zip
Sometimes getting the colors in your images to match across browsers is a pain. This is especially true now that Safari 3 and Firefox 3 are rendering images with their embedded color profiles. However, the problem runs deeper. PNGs specifically have gamma correction included in the file and Safari will obey it. So, despite having the same color space, you will get a different rendering in Safari than in Firefox.
After a while of on-and-off research trying to figure out why my PNGs were not rendering with the correct colors in Safari, I came across a couple of blog posts. The first, which was very informative, recommends double-checking your embedded color profiles. If they don’t match, the colors will come out differently. That makes a lot of sense. For the web, default to sRGB or don’t include one at all. Most browsers will assume sRGB if there is no color profile included.
I did this and I still had some odd rendering. After some more research I came across this blog post (check out this page for some background info on PNGs on the web) specifically about PNGs. So, there is gamma correction in PNGs that is independent of the color profile. That’s annoying! But, you can strip out all that extra information and have the browser drop back down to defaults with a neat little app called GammaSlamma. Just drop your PNG onto the application and done! For Linux and Windows machines, check out PNGCrush.
Page 1 of 1 pages