Shots from Put-In Bay

We visited Cedar Point on Sat Jun 21st, 2014. Next day on Sunday, had some free time to visit Put-In Bay. Here are some shots from there. In pictures: Miller Ferry, Perry’s Cave, Put-In Bay Train Tour, Perry’s Victory & International Peace, and some random shots.

Trick: Bulk Download 100+ Wallpapers from Microsoft Website

Microsoft Website has a good selection of HD Wallpapers. However, it’s hard to click on each image and download individually. There are some ways to bulk download images using some software tools or browser extensions but either those tools are confusing to me or require purchase to download files without any limitations. So, I was determined to find a better way. You’ll need Linux. In my case I used my Ubuntu Server. The page where all the …

Read moreTrick: Bulk Download 100+ Wallpapers from Microsoft Website

django on apache2 with mod_wsgi

Reference: https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/modwsgi/ Sitename: vkrm Location: /work/vkrm 1. Install mod_wsgi (and Apache if not already). I had both already installed (I checked for mod_wsgi by running “yum install mod_wsgi”). If not, follow instructions on: http://code.google.com/p/modwsgi/wiki/InstallationInstructions 2. Enable “mod_wsgi” and httpd.conf su -c vi /etc/httpd/conf/httpd.conf Add line: LoadModule wsgi_module modules/mod_wsgi.so 3. Create a static directory in your site. Inside the directory that contains “manage.py”, run: mkdir static 4. Copy admin static files python manage.py collectstatic mv admin …

Read moredjango on apache2 with mod_wsgi