Skip to main content

Day 7 Eurotrip 2015 | Gimmewald - Hiking around Gimmelwald

Esther's Guesthouse

For the first time in my trip, I slept in and woke up at around 8am to have a nice breakfast prepared by Esther and her team at Esther's Guesthouse. It has just been one night, but I must say Esther's Guesthouse is one of the best accommodation I have ever stayed at. The bed and breakfast was clean, well equipped, and best of all the hosts and guests were very friendly.

Esther's Guesthouse
Can you imagine anything better than waking up to the view of the Swiss Alps right outside your bedroom window?
Breakfast (for 16 CHF) featured a wide range of really fresh and healthy local food like freshly baked bread, yoghurt, milk, cereal, deli meats, and cheese. I also opted in for a packed lunch (6.5 CHF) to take with me for hiking.

I had originally planned to go to Schilthorn today, but having seen the weather forecast of rain and given the cost of going to Schilthorn (from what I read, you need perfect weather to enjoy the views at Schilthorn), I decided to postpone it to the next day and opted to bring forward exploring Gimmelwald via their hiking trails.

Gimmelwald
Gimmelwald gondola
So after breakfast I set off towards the North Face Trail which apparently is rated as a reasonably easy but beautiful trail. Along the way, I met one of the guest at Esther's Guesthouse and we continued on towards the trail. Being quite an inexperienced hiker, it was lucky in a way that I was able to join someone much more experienced with hiking.

When researching my itinerary for Gimmelwald, I read great things about how beautiful it was here, but just seeing it first hand just blew my mind away. I can just imagine how awesome it would be to retire here and be able to walk the trails and enjoy the landscape.


Berner Oberland

Berner Oberland

Berner Oberland

Berner Oberland

Berner Oberland

Berner Oberland

Berner Oberland

Berner Oberland

Some panoramas....
Berner Oberland

Berner Oberland

Although we ended up getting a little lost and hiking the trails designated for much more experienced hikers, this was not necessarily a bad thing as the views from these trails were just wonderful (especially as you get higher and higher).
However after about 4 hours, I could no longer keep up with the rate with which we were going up the alps (I blame my really poor fitness), and was struggling with my breathing. I decided that I could no longer continue with the trail that we were on, said my goodbye and descended back to Murren for some r&r.

Though I wasn't very successful at getting as much hiking done as I would have liked, it helped me open my eyes on just how wonderful the sceneries are here, and will definitely be back in the future (hopefully with better fitness).
Back at Murren, I spent some time exploring the town, before buying my groceries at the local coop supermarket and heading back down to Gimmelwald for dinner and an early night.


Murren

Check out the rest of my Eurotrip 2015 trip journals below:

Popular posts from this blog

SharePoint | Set default value of date field to last day of the month

One of the things, that I needed to do recently is find a way to set the default value of a date field to the last day of the month. Though some content were really helpful in getting me on the way to solving the problem, I thought I'd post the formula required to make it easier for others looking to do the same in the future. What I wanted to do  The steps below describe what I wanted to achieve: User uploads a file into a document library A date column will automatically be populated with the date representing the end of the month (calculated based on the date the file was uploaded) How do we do this? Open your column settings for your date field Under the Additional Column Settings, set the default value option to Calculated Value Enter the the formula below: =(DATE(YEAR(TODAY()),MONTH(TODAY())+1,DAY("1-Apr-2008"))) - (1) Click save and that's all you need to do What does the formula above do? The formula above is quite simple.

Only show a control to an employee's manager in PowerApps (using SharePoint as a data source)

The Problem In my previous blog post , I wrote a basic tutorial on configuring PowerApps to conditionally show/hide and make mandatory/optional a control based on the answer provided in a previous control. In this blog post we will expand on that scenario to create a form that only shows a control called approval status to a user if that logged in user is the manager of the user specified in the employee control. This means when the manager is using the application, they can change the status to approved. Meanwhile, a user that is not a manager of the person specified in the employee cannot change the status to approved. The Solution Aside from containing a variety of native functions, PowerApps also allow us to add connections to add functionalities into our app. In this case we will add the Office 365 Users connection so that we can get information on: The user that is logged on The manager of the user specified in the employee control Note: Whilst this soluti

Uploading a file from a SharePoint document library into an Azure Blob Storage with Microsoft Flow (or Logic App)

The Problem One of the things that I've been experimenting with lately is Microsoft Flow . The service allows you to build process automation to facilitate transfer of information from one system to another easily. One scenario I wanted to try out is to be able to copy/move a file from SharePoint to an Azure Blob Storage. There are a number of reasons that you may want to do this: Archive files that are no longer needed Upload a copy of a file (usually an image) into a Blob Storage so that images can be hosted in a CDN to optimize page load performance In the past doing something like this would have required some form of custom development e.g. a remote event receiver. However the introduction of Microsoft Flow and Logic Apps has created another alternative that is worth exploring.... Update 30/09/16:  If you are looking to put your assets into a CDN to make it load faster, then it's worth checking out the new Preview Release  Office 365 Public Content Delivery