Skip to main content

Jasper Tour [ Columbia Icefield Glacier Adventure]

Recently I was in a tour around Jasper National Park with my friends. On our way to Jasper we have visited Columbia Icefield Glacier centre. It was an unique experience in my life. Here I like to share my feelings with you guys !!.

The ice field centre operates from May 1 to October 15.

Checklist:
Ticket: $50/Adult.
Jacket
Winter boot.
Camera.

Bus departs every 15 minutes from Icefield Centre. Regular Brewster bus will take you to Brewster Ice Explorers bus station in about 10 min.



Massive Brewster Ice Explorers, specially designed for glacial travel, will take you on a remarkable excursion onto the surface of the Athabasca Glacier. BTW, Ice Explorers bus travel at maximum speed of 12 miles/ hour :P.


While traveling on the ICE Explorer the sharp way down on icy roads might scare some of you :). You will enjoy a unique prehistoric landscape on your way towards the glacier.


Journey is about 80 minute and lead by an experienced driver-guide. It will take you very close to the glacier. You can get off the bus, stand on this powerful ancient ice and experience the remarkable beauty of the glacier.



Don't forget to take photos :).




I particularly like this pose :D.




Souvenir:
You can buy souvenir from Icefield Centre souvenir shop. I bought this one for $4.




Reference:
http://www.explorerockies.com/columbia-icefield/

Comments

Popular posts from this blog

Creating dynamic email templates using C# and Office Outlook

It is quite common for many applications to send automated email notifications. Couple of months ago, I have worked on improving our old email template format to make it more user friendly . In this tutorial I will walk you though regarding how I took advantage of Microsoft Outlook to quickly generate custom email template and later using the html template for building an automated custom email application using C#. Steps: Creating Templates: Using the rich text editor support  in Outlook create a nicely formatted email. Use placeholder text for the values you like to change dynamically based on your task completion status. To keep this tutorial simple, I have created a  simple table with placeholder text inside the third bracket  [place holder text]. However, you can use anything supported by outlook editor. Figure: Email Template Getting HTML code: Send the created email to your own address. After that, open the sent email and right click to view source . It

Software Engineering Data Repositories

Software engineering data repositories that contain results across different research environments (or at least across projects) The University of Nebraska’s Software-artifact Infrastructure Research (SIR) http://sir.unl.edu/portal/index.html The NASA Software Engineering Laboratory (SEL) https://www.thedacs.com/databases/sled/sel.php

Why using XOR might not be a good hash code implementation?

Using XOR for computing hash codes works great for most of the cases specially when order of computation does not matter. It also has the following benefits: XOR has the best bit shuffling properties of all bit-operations and provides better distributions of hash values. It is a quick single cycle operation in most computer  Order of computation does not matter. i.e. a^b = b^a However, if ordering of elements matter then it is often not a good choice. Example For simplicity consider you have a class with two string properties named Prop1 and Prop2  and your GetHashCode returns the xor of their hash code. It will work fine for most of the cases except cases where same values are assigned to different properties. It will generate same hash-code i.e. collision in that case as can be seen in the below example . However, using the modified approach as recommenced by Joshua Bloch's in Effective Java which uses prime multiplication and hash chaining provides more unif