Skip to main content

Day 9 Eurotrip 2015 | Rome - Travelling to Rome

I woke up fairly early today to take the 1st cable car at 6:00am back down to Stechelberg in order to take the bus to Lauterbrunnen. For those taking the public transportation early in Gimmelwald, do note that the ticket office does not open this early (Gimmelwald ticket office opens at about 8:30am and the Stechelberg opens at 7:00am) and so if you want to buy a ticket from Gimmelwald to Interlaken, it is recommended that you try and buy it the night before. 

Alternatively you can buy your tickets separately for the cable car from:
  1. Cable car from Gimmelwald to Schilthornbahn (automated machine in Gimmelwald cable car station)
  2. Bus from Schilthornbahn to Lauterbrunnen (from the bus driver)
  3. Train from Lauterbrunnen to Interlaken (automated machine in the Lauterbrunnen train station). 

Unfortunately in this case Post Bus did not turn up to both it's scheduled 6:12 and 7:12 sunday routes. Though this was frustrating as there were no communication at all from the Post Bus company, luckily the nice people from the Schilthornbahn cable car station gave everyone waiting at the bus stop a ride to the Lauterbrunnen station and I was able to squeak into my booked train service from Interlaken to Rome. 

This experience has definitely taught me a lesson in planning my itinerary and booking international trains in advance. Whilst a 1 hour buffer may be sufficient in the highly efficient public transportation  system of London and Paris, this is not enough for the public transportation in the Berner Oberland (particularly Post Bus as I found their cable cars and trains to be pretty efficient as well). 


As my train makes it's way to Rome, and I have a chance to reflect on the past three days in Berner Oberland, I can really say that along with Paris, Berner Oberland provided me with a unique experience and really took me outside of my comfort zone physically.

Although, much of the day was spent on the train, this was made up bythe fact that I managed to get a free upgrade (whilst booking early) to business class and was able to enjoy a more spacious and comfortable ride to Rome. During this ride, I also saw how shameless people could be, as I noticed a couple of people trying to sit in the business class section after being repeatedly told by people that they were sitting on seats someone had already booked and that their seat was in another section of the train.

Arriving at Rome, I was surprised by the difference between Rome and the cities I've been to so far in this trip. The easiest way to describe it was a feeling of organised chaos and getting lost (whilst it is easy to hit the ground running in London, Paris and Berner Oberland). It took a while but I managed to find my way though to buy the 3 day Rome Pass (free entry into two attraction and unlimited public transportation) inside the Roma Termini train station and take the tube to my hostel Dreaming Rome.

Arriving at Dreaming Rome, I met the passionate, energetic and friendly hosts of the hostel who put a lot of effort (compared to other hostels I've stayed at) by not only providing me with some recommendations in Rome, but also getting other guests in the hostel together in the evening and sharing a dish of pizza (dinner is usually around 8:30pm or later). If you want a social and friendly hostel, this place is definitely recommended.

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