<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Messages &#8211; Henry Poon&#039;s Blog</title>
	<atom:link href="https://blog.henrypoon.com/blog/tag/messages/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.henrypoon.com</link>
	<description></description>
	<lastBuildDate>Wed, 05 Oct 2022 02:10:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
<site xmlns="com-wordpress:feed-additions:1">83044199</site>	<item>
		<title>Running Selenium Webdriver on WSL2</title>
		<link>https://blog.henrypoon.com/blog/2020/09/27/running-selenium-webdriver-on-wsl2/</link>
					<comments>https://blog.henrypoon.com/blog/2020/09/27/running-selenium-webdriver-on-wsl2/#respond</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Mon, 28 Sep 2020 00:49:34 +0000</pubDate>
				<category><![CDATA[computer stuff]]></category>
		<category><![CDATA[engineering]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[APT]]></category>
		<category><![CDATA[AWK]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[Computer architecture]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Drive]]></category>
		<category><![CDATA[Error message]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Firefox version history]]></category>
		<category><![CDATA[Flag]]></category>
		<category><![CDATA[Go]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Graphical user interface testing]]></category>
		<category><![CDATA[IME]]></category>
		<category><![CDATA[IP address]]></category>
		<category><![CDATA[ise]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Lag]]></category>
		<category><![CDATA[lamb]]></category>
		<category><![CDATA[Language]]></category>
		<category><![CDATA[Lie]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Messages]]></category>
		<category><![CDATA[Net]]></category>
		<category><![CDATA[Operating systems]]></category>
		<category><![CDATA[Parameter]]></category>
		<category><![CDATA[PATH]]></category>
		<category><![CDATA[Port]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Resolv.conf]]></category>
		<category><![CDATA[Rolling]]></category>
		<category><![CDATA[Run]]></category>
		<category><![CDATA[Selenium]]></category>
		<category><![CDATA[Sleep]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[STR]]></category>
		<category><![CDATA[Struct]]></category>
		<category><![CDATA[Time]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Ubuntu version history]]></category>
		<category><![CDATA[USR]]></category>
		<category><![CDATA[Variable]]></category>
		<category><![CDATA[Web development software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Z]]></category>
		<guid isPermaLink="false">https://blog.henrypoon.com/?p=6269</guid>

					<description><![CDATA[This is a newer version of the post that I made before on how to run Selenium on WSL, but this one is on doing it in WSL2. The instructions are similar at a high level but there are some additional gotchas. You will need: WSL2 setup with Firefox installed (mine uses Ubuntu 20.04) VcXsrv [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">This is a newer version of the post that I made before on <a href="https://blog.henrypoon.com/blog/2017/06/18/running-selenium-webdriver-on-bash-for-windows/" target="_blank" rel="noreferrer noopener">how to run Selenium on WSL</a>, but this one is on doing it in WSL2.  The instructions are similar at a high level but there are some additional gotchas.</p>



<p class="wp-block-paragraph">You will need:</p>



<ul class="wp-block-list"><li><a rel="noreferrer noopener" href="https://msdn.microsoft.com/en-us/commandline/wsl/install_guide" target="_blank">WSL2 setup</a> with Firefox installed (mine uses Ubuntu 20.04)</li><li><a rel="noreferrer noopener" href="https://sourceforge.net/projects/vcxsrv/" target="_blank">VcXsrv</a></li><li><a rel="noreferrer noopener" href="https://github.com/mozilla/geckodriver/releases" target="_blank">geckodriver</a></li></ul>



<h2 class="wp-block-heading">How it works</h2>



<p class="wp-block-paragraph">VcXsrv starts up an X server on the Windows host machine, and what WSL will do is connect to this server to pass on the details of what programs need to be displayed (in this case, the browser window).  Geckodriver is there purely as a middle layer for Selenium to be able to interact with Firefox.</p>



<h2 class="wp-block-heading">VcXsrv setup</h2>



<p class="wp-block-paragraph">This setups the X server so that Windows can display graphical data coming from the Ubuntu instance.</p>



<ol class="wp-block-list"><li>Download and install</li><li>Start it up with the the command line parameter &#8220;-ac&#8221;.  This flag removes access control restrictions for connecting clients (which is okay as long as this server isn&#8217;t exposed on the open Internet and that the only client connecting is the Ubuntu instance)</li><li>Allow connections to VcXsrv on Windows Firewall</li></ol>



<p class="wp-block-paragraph">The &#8220;-ac&#8221; flag and allowing the program through Windows Firewall is pretty important.  When I didn&#8217;t do this, Ubuntu would give me cryptic error messages like &#8220;Broadway display type not supported&#8221;, but once I set up these access controls, everything was fine.</p>



<h2 class="wp-block-heading">Bash setup</h2>



<p class="wp-block-paragraph">Install firefox</p>



<pre class="wp-block-code"><code lang="bash" class="language-bash">sudo apt install firefox</code></pre>



<p class="wp-block-paragraph">Export DISPLAY variable in .bashrc (or for whatever terminal you use, maybe .zshrc, etc.)</p>



<pre class="wp-block-code"><code lang="bash" class="language-bash">export DISPLAY=$(ip route | awk '{print $3; exit}'):0</code></pre>



<p class="wp-block-paragraph">This will configure your DISPLAY variable to use the IP address listed in the resolv.conf file.  The IP address listed there is the IP address of the X server that will be used for displaying the browser window.</p>



<p class="wp-block-paragraph">Start up VcXsrv as described in the above and then try to open Firefox.  The Firefox window should open.</p>



<h2 class="wp-block-heading">Geckodriver setup</h2>



<p class="wp-block-paragraph">This acts purely as the API interface that allows Selenium to interact with Firefox.  Selenium looks for this executable when controlling the web browser.</p>



<ol class="wp-block-list"><li>Download geckodriver (make sure to get the Linux one and not the Windows one)</li><li>Put it in /usr/bin (or alternatively some other folder in your PATH)</li></ol>



<h2 class="wp-block-heading">Selenium sample on Python</h2>



<p class="wp-block-paragraph">I tend to use Python when running Selenium code, and I haven&#8217;t tried it on another language (I imagine the principles are similar).  Here is a piece of sample code for starting up the browser and opening up a website, but really any Selenium code can be used.</p>



<pre class="wp-block-code"><code lang="python" class="language-python">import time

from selenium import webdriver
from selenium.webdriver import DesiredCapabilities

def execute_with_retry(method, max_attempts):
    e = None
    for i in range(0, max_attempts):
        try:
            return method()
        except Exception as e:
            print(e)
            time.sleep(1)
    if e is not None:
        raise e

capabilities = DesiredCapabilities.FIREFOX
capabilities["marionette"] = True
firefox_bin = "/usr/bin/firefox"
browser = execute_with_retry(lambda: webdriver.Firefox(
    firefox_binary=firefox_bin, capabilities=capabilities), 10)

browser.get("https://www.google.com")

time.sleep(10)

browser.close()</code></pre>



<p class="wp-block-paragraph"></p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2020/09/27/running-selenium-webdriver-on-wsl2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">6269</post-id>	</item>
		<item>
		<title>Germany&#8217;s Cultural Center&#8217;s Costume Crazy Carnival in Cologne</title>
		<link>https://blog.henrypoon.com/blog/2011/03/08/germanys-cultural-centers-costume-crazy-carnival-in-cologne/</link>
					<comments>https://blog.henrypoon.com/blog/2011/03/08/germanys-cultural-centers-costume-crazy-carnival-in-cologne/#respond</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Tue, 08 Mar 2011 21:25:59 +0000</pubDate>
				<category><![CDATA[europe]]></category>
		<category><![CDATA[9]]></category>
		<category><![CDATA[Albums]]></category>
		<category><![CDATA[All That]]></category>
		<category><![CDATA[Animals]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[AWK]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[Bottle]]></category>
		<category><![CDATA[Breakfast]]></category>
		<category><![CDATA[candy]]></category>
		<category><![CDATA[carnival]]></category>
		<category><![CDATA[Chan]]></category>
		<category><![CDATA[China]]></category>
		<category><![CDATA[Chocolate]]></category>
		<category><![CDATA[Civil engineering]]></category>
		<category><![CDATA[Cola]]></category>
		<category><![CDATA[Cologne]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[Const]]></category>
		<category><![CDATA[Construction]]></category>
		<category><![CDATA[Creative works]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Dia]]></category>
		<category><![CDATA[EAR]]></category>
		<category><![CDATA[Engineering]]></category>
		<category><![CDATA[English-language films]]></category>
		<category><![CDATA[Euro]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[Final]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[france]]></category>
		<category><![CDATA[Frankfurt]]></category>
		<category><![CDATA[German]]></category>
		<category><![CDATA[Germany]]></category>
		<category><![CDATA[Go]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Grab]]></category>
		<category><![CDATA[Gun]]></category>
		<category><![CDATA[Heidelberg]]></category>
		<category><![CDATA[Hole]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[IME]]></category>
		<category><![CDATA[In Germany]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Jesus]]></category>
		<category><![CDATA[Language]]></category>
		<category><![CDATA[Light]]></category>
		<category><![CDATA[Mass]]></category>
		<category><![CDATA[Messages]]></category>
		<category><![CDATA[Monday]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[old town]]></category>
		<category><![CDATA[Outside]]></category>
		<category><![CDATA[Over]]></category>
		<category><![CDATA[Parades]]></category>
		<category><![CDATA[Pho]]></category>
		<category><![CDATA[Plan]]></category>
		<category><![CDATA[Port]]></category>
		<category><![CDATA[rain]]></category>
		<category><![CDATA[Rooms]]></category>
		<category><![CDATA[Run]]></category>
		<category><![CDATA[Singing]]></category>
		<category><![CDATA[Sleep]]></category>
		<category><![CDATA[Songs]]></category>
		<category><![CDATA[Speed]]></category>
		<category><![CDATA[Steak]]></category>
		<category><![CDATA[STR]]></category>
		<category><![CDATA[Street culture]]></category>
		<category><![CDATA[Struct]]></category>
		<category><![CDATA[Student]]></category>
		<category><![CDATA[Stuttgart]]></category>
		<category><![CDATA[Sunday]]></category>
		<category><![CDATA[taiwan]]></category>
		<category><![CDATA[Thou]]></category>
		<category><![CDATA[Time]]></category>
		<category><![CDATA[Tourist attractions]]></category>
		<category><![CDATA[Trac]]></category>
		<category><![CDATA[tuna]]></category>
		<category><![CDATA[UNC]]></category>
		<category><![CDATA[Vancouver]]></category>
		<category><![CDATA[Weed]]></category>
		<category><![CDATA[When We]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[YouTube]]></category>
		<category><![CDATA[Z]]></category>
		<guid isPermaLink="false">http://henrypoon.mooo.com/blog/germanys-cultural-centers-costume-crazy-carnival-in-cologne</guid>

					<description><![CDATA[Day 55 When I first arrived in Germany, I was informed that every year in Cologne, a carnival would take place where people partied from dusk till dawn. I was even told that &#8220;people are drunk before 12&#8221;. I&#8217;ve never heard of anything like that before. The carnival attracted people from all walks of life. [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Day 55</p>



<p class="wp-block-paragraph">When I first arrived in Germany, I was informed that every year in Cologne, a carnival would take place where people partied from dusk till dawn. I was even told that &#8220;people are drunk before 12&#8221;. I&#8217;ve never heard of anything like that before. The carnival attracted people from all walks of life. Whether they were people from England, France, America, China or any other country. Tradition has it that everyone is supposed to dress up in a costume for the carnival. I didn&#8217;t do it do it though. My excuse: I&#8217;m a foreigner. The carnival festivals would have already begun by the time I arrive, but I&#8217;ll be in time for Rosenmontag, when the parade is held.</p>



<p class="wp-block-paragraph">To get to Cologne, my friend and I took the InterCity train. It goes a lot faster than the RB and RE trains that we took before. We reached <a rel="noopener noreferrer" href="http://henrypoon.wordpress.com/2011/02/06/the-heidelberg-trek/" target="_blank">Heidelberg</a> in 45 minutes instead of the hour and a half it took us before. Every time the train goes through a tunnel my ears went crazy similar to how it feels when a plane takes off. As should have been expected, the train to Cologne was super packed and we spent the better part of half an hour standing until the conductor came by and informed us that there were empty seats near the back of the train. I sat down with a group of Chinese and Taiwanese exchange students. Probably because I&#8217;m used to seeing Asians everywhere like in Vancouver, it seemed a lot more normal to me when I sat down with the Asian crowd.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipMazsKkJL2B7fTxFCOYUGjhernurav558hsePkT?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEU-fwbrBES__70MDa38KzPPCC_qE2IFbr8LDTNljzDZQoFDMHKzbWMoUcPMrtq4vErRE2ANwMjGntGb1QzUskd29lPsbn29tIO8euHLgr-3VqSREzXWvZNnPGEa_napGPZA_UcaXDlNttfkNrGOszB4aQ=w1226-h919-no" alt=""/></a><figcaption>On the way to Cologne</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipOzCWwe2l6yaGi9QlWdcIJrKjutvRRC39QKhYVI?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEXwCWOs3j1y-d1JhO7JrT7mF2f5QQuOH9RZtMERp3YLd94Mf-FO6moQni2eKb36Rp3ONI0KmmDNPMSdBCdzAGV9uPO9ZedpmmqDn_F5utmFaIpt6Lfz4DYawL_DYgVLpYK2q_jFwx3cqOGpRQjwSHut_Q=w1226-h919-no" alt=""/></a></figure>
</div>
</div>



<p class="wp-block-paragraph">I started a conversation with them in Mandarin since I&#8217;ve barely spoken a word of Chinese to anybody except to my parents and asked them where they were from. We all ended up talking until the end of the train ride. I tried my best to speak in Mandarin, but seeing that I barely know the language I often couldn&#8217;t understand what was being said and couldn&#8217;t express myself. Luckily one of the people in their group spoke Cantonese and was able to translate. Ironically, this was the most Mandarin I ever spoke in my life in a single day. Eventually, we all just ended up speaking English. I suppose thats the way it works when a group of Asians all speak different dialects of Chinese.</p>



<p class="wp-block-paragraph">One of the girls had a habit of keeping a list of names of everyone she has met with where and when they met. Interesting hobby. In a way, it&#8217;s like signing someone&#8217;s yearbook at the end of the school year. Before the train ride ended, we all took a picture together even though we had just met. My friend and I thought that was really funny since we and the group of interns always talked about the stereotype where Asians really like to take pictures.</p>



<p class="wp-block-paragraph">We went our separate ways not long after we arrived at the Koln Hauptbahnhof. When we exited the station, we saw huge crowds of people dressed up in costumes and some were dancing to carnival music with beers in their hands. Groups of people gathered around street performers playing carnival music and looked like they were having a great time. Looking further into the distance, the sight of the Koln Dom struck us. This cathedral totally sets the first impressions for every single person who visits this city. It was taller and bigger than all the churches and cathedrals I saw in the past. I stood about 50 m away from it and still couldn&#8217;t get a complete shot of it. My next thought was, &#8220;We have to go inside.&#8221; Unfortunately, the church was closed because of the carnival. I hoped that maybe we could visit it the next day, Sunday, when people go to church.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipNTu0UPaytOKWH8SfaBcXqjeQ66gtB8LVii76Dm?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEXyYhNI0VJcqHJ04iS19wUvr8hwivTCl91pSkkSeWj9UFQSrPZF_CRfD1H6jt9YDtrZqGX7-eg-bHbXqbWNtLYcGJtTL7i1sAkyh--D3ZTvbB0dwP3aHj0v1Eoim3fHdVxJflvS_ncoRPxmpcVhvcnFig=w690-h919-no" alt=""/></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipMT3GKmkX-MBaNF44leTqvILpi-pfVZljv-NUqH?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEVtLl_4LbssbmtOXs1KIhK6-t5i43uHpaa9RUKRmGdlMLoxntZXX-Z5ZynjHjRE1sjVCe6cTOdlX5P0_EGGkVFwfW5slguxcgNfjdeiYbXJ_NmfdqoTPtgiQ_-Ujv9Jx4FIFQ0D14sUMKGGK3q3EnPUkw=w690-h919-no" alt=""/></a></figure>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipM4vJF14M18KMQERChJU77uCAI_5PDKXWL54K3u?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEV-6abwuaXOlLHoq3GWL9-bxDJuktAsmBjk0D3f8mDIWlew1M5nsBLVZuwppV198kf3ubM7BceSwbd0j4Xzw_HIqou0Bqgckh8OGwPmKH8ULDPv4hEQXoIAHEPlWi8cOtvyk_UEw4HpgAQxZglLkW2W4g=w1226-h919-no" alt=""/></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipNtCzhX0sQSFsZNVDL31GX45fdHUsd7dOOFzp84?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEUeYwVwZ_7MXJiVjjxIiP1z7GAPAHnl36xG-i1F6gdc_e0W7zLHICaHFzAPcj0qvr-KKTcSv-lrFFA2F63Qs74oP5RO1SvAKLoA8NkkqnOrRrS6p92D8Icvgwp3fIKauLLUqi-khrDyK86azpRUKtMOGw=w1226-h919-no" alt=""/></a></figure>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipP1shtVJl3CH2_DNH1BgNE1LpR9ODA3QunghqTz?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEUHXDw2LjpW0koW_m_PCWTsLik8SCUtoksGXZHkienSxEjhgdjegARmBP70Iw4WpwGNWdgpxTCYpJl0ETWcR-XVMqRhUvfSfyh6zUY0qeGzLI9bC0qoxnFIQvEKcrBsmeCoDwM1AZhSsegK_JabkX9izA=w1226-h919-no" alt=""/></a><figcaption>Cologne Cathedral (Kolner Dom)</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipP4eAzka3JTwF9faWJob9gg36dWRsNjSu4ThWdw?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEWpV2woV5GHUeDfR_Y_DvBhZY_Gya8TIlfWZmLefz9J9szPxMV4TcnapjRrE77-Xc7_YIIutQoNa0Yd_tRIsyhP1WnIV84F3RNg5stEFxhmf5OvVLpODeRWQRZKwu-Zs5R90Wo-rXBHv8N0xWHQGqizwg=w1226-h919-no" alt=""/></a></figure>
</div>
</div>



<p class="wp-block-paragraph">According to the tourist info center, almost all of the city&#8217;s tourist attractions would be closed for the carnival, which meant there was nothing to see except the carnival. We walked around the plaza where the cathedral was and saw the most unique costumes ever. Even hobos on the street had a costume. Apart from the usual ones like schoolgirls, policemen, and suits of various animals, by far the best one was a group of people dressed up as bulls and Spaniards to reenact the bull festival. Unfortunately, they ran by too fast for me to be able to get a picture of it. The ones dressed up as the bulls literally ran after the others down the street. Everyone heard their yelling and screaming and they definitely attracted a lot of attention.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipMNH7UXUhvgXMrq0LBoZ7AIgBxvi77LaKSGJePE?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEXgVe0D8Vggn1q6sd-oW8UUMFeJb_f5IYh9YueIoqnwzBjFFBcBjWkQWoHsvHh-1wJGxe1ISm8BG9SJoxNPDA474rAXq2UTtV0mmGF3nfoCR_d3hTFHiTNitsMrcejHNMLrnCIA6uEwUfMTt3Umhd_dZg=w1226-h919-no" alt=""/></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipOcABdzg2o2Lno7Sx54rCIFo2PVUtGxTlDfR3Ak?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEWZjzWwJbouUwIBTAvwK9kpFB4LJHa-wrZAYof-yM_vIoq-AOASFPNpsEdawIfuvTHzbNMyMxuLm1sbLzLmiaWprDfqh7iYbXk3PGDl31UM1ghU8W-lmjtOS1guN2kG1cAF5-0BNtcPSsPmOQZFJnO77Q=w1226-h919-no" alt=""/></a></figure>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipNoQc7IqZ1lC6yfsk8oSxYqNd1tON0reSMXtLno?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEUwMt8ozFizhHkPBhdO-ILf6HKsZx29vsTyx2As3PM9NJMVuYFQOY7dQvCz6BfF8W5MPvCsePE5DI01oLVvdCbpfFaPHGbCZ8BIHosi7ClBHk4R6MzggJBPsNt5I0fsGAAqlnpuMFAld8PZ9TWw0pwAjg=w1226-h919-no" alt=""/></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipN_h998kYtrmXIB1C3gADrNRAE9wj-94Q3rIr4K?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEW63ZCokebLr-1sMlR-F2xfk7KPWYQ3sLAcSv2Ds-cP54raqmlTmhiJulZC2gMVgqKPcJZqDJTXK4AdaT2vNl7jLITXPfT_d0220JIOXkBuysycMFi4yYgj1J4E_4YNP1bLVb4bN1Te6kJSe4TGPWkb2w=w1226-h919-no" alt=""/></a></figure>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipPR548j24lvXsFbp9DdadUElxbUnSXaDyeoawk7?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEWXA21sfbnwSWvfjXr9Wspv-gHr_xjr3UWMesgBe7rLXci8S9hy3-Ts15LqMn_dXgHXUElowoIL2rKi3KwWqJEZXe9ZRpcV_EqdI6YjGNhu9rXTgXDQeSr5CwiuYqJmTyj-eEZZjv9ORnijYSHDJX6z3Q=w1226-h919-no" alt=""/></a><figcaption>Almost everyone dressed up for the carnival</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipMCDwLjQ4tvMG5lHR_hMt1g1X5lojZZK2OO3Vx6?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEUs_p8nTA09JIqJfvjB-Zu20-wKHnvEdR-lV4LZKn-E8Qtp4vmarn7OAH_ez3m1fK56A408KddGEVnGwab47raW1buewrP2GRSsbNGYBrUiaup54-s8__HXpdVjKiyX-wdjN-ZcLWCYiBFDRtczFLA8_A=w1226-h919-no" alt=""/></a></figure>
</div>
</div>



<p class="wp-block-paragraph">Prior to coming to Cologne, we organized the trip with other interns at UBC that currently work in Hanover. While we waited for the others to arrive, the only thing to do was to go to our hotel and drop off our things and walk around the city center. As expected, all the shops on the street were closed, except for restaurants, souvenir stores and street vendors. Since we planned the trip late, all of the hotels/hostels close to the city center were either booked way in advance or costed an arm and a leg. We ended up staying at a hotel in a suburb called Wahn, and it took a bus and a train ride to get to the city center.</p>



<p class="wp-block-paragraph">The hotel gave off a Chinese vibe the moment we went in because the hotel&#8217;s restaurant served Chinese food and they hung up Chinese paintings everywhere. I even overheard one of the chef&#8217;s speaking in Mandarin to someone else over the phone. The reason I even mention this is because I didn&#8217;t think Germany&#8217;s Asian community was that large so I didn&#8217;t expect something like this. Almost all the Asians I see come to Germany as tourists.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipPEgGcPOA3e9dQM7cg8axHxCuxhMl38ua19NBHw?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEXDwa5jRKUUYjbZEH2qupEfbmCOqfnTqrtJY1DMuotLZMvUKCqvMmRqQIFtGejL-lI-vbnHoS7wtj2PK3wM88bwvDOPkIYRy-vkhYuNzwAQRQWNs-hLFLBauG_KZvE5mZshvJLf5wjzafAJ76tysVNOeg=w690-h919-no" alt=""/></a><figcaption>Chinese things at the hotel</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipPZrg-HD3xJ4Vmu2C7wbC7qj6JU0J7QM5T9nWiV?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEVV78UJng-kA_Zben5DgZtKfdQ-vjVvIDvIYIxCv_j7kBmSP8-NyMct1wYB_6V1qIBJ1cUodMrZ8eiLo_GuA-C9mQBcVxVDmN-b8eP8FIXUtjb_qeBDetbJSB2CohzA8kW8UFdIFh7JJ6yXookQTNQz3Q=w690-h919-no" alt=""/></a></figure>
</div>
</div>



<p class="wp-block-paragraph">After dropping off our things at the hotel we walked to the train station since we never figured out the location of the bus stop. Along the way, we found the townspeople in the suburb had their own carnival parade. As usual, almost every adult held a beer in their hand. It was nowhere as massive as the celebration in the city center, but the streets were crowded enough such that it took us at least half an hour to walk to the station when it should have taken only twenty minutes. Everywhere I went, I&#8217;d always step on glass from people just smashing the shot bottles on the ground when they were done with them. These were everywhere in the city center.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipPjJTP0WWYjgMt97zrEyL8e2accU07npjAq7qIW?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEXk_zNwa7Fh5IJ7VgAC1tyOp9L23gIV2HdQRwZ6uhlEMJjlrqzXO0XzmCE9HGdVC3CjyYC9e0WMKU7Zi_cxW3UfjZgpFS9odz90F4KAKGYHL1fZ7qM7854w6OXeFn3JwjYoN2WafuHYnNyNMdev_TtJEQ=w1226-h919-no" alt=""/></a><figcaption>The parade in Wahn</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipNRJpaXgZwjoGFHh6EmTyCC5g4PVtgS4Y0AHZSF?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEVkPUe18hbDoUQjSfROS_vdVyh5DkFhKOnwMkfJX1tl8ewO6q40lysmUUSxTW4xPDGPO8BxJ7h8tvX3My-D5X-LEVY6tF67grSqHKN1Om2sfFbiHTT9zBHE5WbKDfbRlbly3mt_EAFJYEpQjXOXMlSfYQ=w1226-h919-no" alt=""/></a></figure>
</div>
</div>



<p class="wp-block-paragraph">After arriving at the main station again, we met up with the others from UBC. The party began at that point. After all, the Cologne Carnival gives people good reason to party even harder than usual. After buying the local beer, the ten of us went to one of the rooms they stayed at and got our drink on. Before long, a lot of us were tipsy, if not drunk. Good thing for me though, is that I only had 2 beers. I didn&#8217;t quite like the taste of Koelsch. Before going outside, we carried as much beer as we could. While outside, we looked for a bar or club. Cologne at night became a totally different place. Everyone outside at night were pretty much people who probably had too much to drink. I know this happens in big cities, but during the carnival, there are just more drunks out than usual. A lot of the drunkards broke out in carnival folk songs, while we as Canadians sang the Canadian national anthem. The people there probably didn&#8217;t even know what we were singing about.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipMW0Jv81bhuvPHelTAjrvacrYzg7Jqlc9KCOeU0?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEWoTE3NnDjqVACKS0RKp3rQTCLIMAWfRQAhZqGx446DQYFw8U884lXOa91YkZMptINxrmHsL69VWzjthaT8Xd1ZUOh-Q820Udf3KYcCLQDaumAXLGt4TBtPdIPZ_krg6m4vEQg4dbkc3q46H0-ev9irvg=w690-h919-no" alt=""/></a><figcaption>Koelsch</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipP7Mcm9cgsavlOzOODrLMabJ9S5-VTGN6OKatYy?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEUXKCsA86qawcD72i7i8ZEN0EZghKyNg93MM3yXhtTyW6L2NJfFGhPmgbig8GCjBgW8jMGTz7hiZkc76Uu9_-mISfuDKaBB29rg1eXpwN6lymxR43vQAFWFliOphXAopgUfcPN2x9WAIiziXrHGA_4MVw=w690-h919-no" alt=""/></a></figure>
</div>
</div>



<p class="wp-block-paragraph">Even in our intoxicated state, we still looked at the Cologne Dom in amazement. I couldn&#8217;t stop looking at it. I even managed to get some nighttime photos of it. Looking at those pictures, a lot of them were quite blurry. Around the church plaza, we&#8217;d hear a group of people just randomly yelling every now and then.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipN1S3Wi2FGdrjV1pCdrYbDvQNM7HLeUxMor0GbD?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEWIZcBiGS3ohi5k-Af4fXY4a-H6_gSJy8pL3aqQSClHuO9nX92ue4Xhcylk5O67LF_kKGpUmY00oiEJWTIDh_SabfVjjfPlKIoIGzHAa2aABoabFqjoOG8nmdOitGgtBiO9I9f5ioBIpqhtRrHwdLSaiw=w1226-h919-no" alt=""/></a><figcaption>The Cathedral at night</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipMHpPCLDuxfda-O2timmCc5Rf47wHLZ_Gj6avQO?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEUDFUZr3Sz-p62Qe6asXsz2w7dFOxIckIHHsayGo42erQ0SnopTrEXgyiuZ6smbyO2Mjq8WrJ9W_A1SlDenJWGHH7yt8XRtUFFlmNesYBibxFlLRewpNirQWzWjEj0TJ_88lOCyz6JTVohlW_txt9OeLQ=w1226-h919-no" alt=""/></a></figure>
</div>
</div>



<p class="wp-block-paragraph">When we got to the old town, there were a lot more people than at the cathedral, and like us, they too wandered around the town looking for a good time. And almost right away, our group separated. It&#8217;s quite difficult to keep a bunch of drunk people together I guess. We ended up in several different bars and not really staying in one place for over ten minutes. Nothing super crazy happened anyway. My friend and I stayed out late enough to miss our last bus back to our hotel, so we ended up speedwalking our way back in the freezing cold. That was a very long fifteen minutes. At the time, everything felt great, but once I sobered up the next day, I realized everything I did at the time was completely pointless.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipPm1knVB8w_Vtela5g5YR-5h1vdWyVOHDf5E8C1?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEUkHi9AIhZlbuiKPLGC3g5_labCwva11fbJUlnmnLIfo1UKUGOwpbnrkuBIFd8pZfYLKMiX2xOPeV829lSO7pVwBqvtpABaG_xQze3UuNi6ZS8pspE8JAVAPtzwAJnPKhKpZjzWZciGL1xvjbFaZvQ4aw=w1226-h919-no" alt=""/></a><figcaption>People out at night</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipP1H3chiqo2YmXdJ8DkxfamdDds0j1dZrA6xC6H?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEVNzE7DfP0U6ceghSudCJJrOp9P7NA6u7kjkBQmR1oHc53n8x58cXR85w4h3sMNad5bjvOuYcw_BWU96dnudz3S5guiEP6hMWiF5ujz2U5UdkNuojpRF31Smaqv2b4XvEMnOSHWaqp9Tn0L8V06WXvgWQ=w1226-h919-no" alt=""/></a></figure>
</div>
</div>



<p class="wp-block-paragraph">The next morning, we went back into town and went to the tourist information center to see what was open today. While there, I saw two of the Asian girls we met on the train here and they told us the cathedral was open and that they went there already. I was very eager to go inside the cathedral. It&#8217;s one of the most amazing works of architecture and civil engineering of the olden times I&#8217;ve ever seen. The inside of the cathedral didn&#8217;t disappoint either. When I walked in, a sermon was going on so none of the tourists were allowed to freely wander around. But since a sermon was happening, we heard the church organs. The music filled the entire cathedral and everyone probably thought that was the most beautiful church music they&#8217;ve ever heard in their life.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipM-sTKBafL0NeIn6RwerTsv4BGVL0JEsi127eZh?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEUVbYn-rVu1gHYTOGinDVBrEuivxN98isPqyCstgg9nZXo1WmN4qfSCKPUprf2Z7znEWyJMynfefUhbFnlI1VE9vmVpaJCZYkmfjX63U-4pjJ-6cS26cEOOqKZJQDclyCwPOmNnN-VCCsjhqXy4y9blVQ=w1226-h919-no" alt=""/></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipMXKxk1wN3xQwJuGZwxvrelxkls0D3zN9D6dY5p?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEXJ9_ruWMW-8-4jbtB2ZsJI6Ug1hVp0InYU-9t5eEOnOfmqV-axSn6wohwVR0CR1YGwLL25hpLy-W4mJwiMZ2vBP4cfbIgt1-0WzUN8vJJJRVawa7myzTjK45b08c1o95yaMTSSQ8UYxHVu1MB0oTnrEQ=w1226-h919-no" alt=""/></a></figure>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipOyMZIS0-9yT9CM0TNNf8KpBCnr7MZFZcijucoK?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEWNzdKG75kyySMKtQngqjjHCQMiA7ZxAt8CKI3vfP-sG9TMcUXB8KESPGEyHK6qKXPmJIklUWGL43KUwWajPDKjKKKvcJEHD8_gUgvKFaTg_ybDGruWVrVYHRz_-zLAWKfsKAIAUjsEvfQTscGgE5bhFQ=w1226-h919-no" alt=""/></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipMAopjqHjX_QDQpHq4Wm68goRlkEbA5ueIx7gU-?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEWxu9-91TCmJQ6HTzbaGy7MJPRmjYpNXfwd7OVOoyQQnnAurHerNRePGyCAsX8AwlWZ5EBZa-S8J25OLJ4ulGUUxhm16c231bdRoiNXiIZw4uw4eK7a0hWvKhoT4Dv-iiTAc0g565RJx6pIr9BOA_Ch3w=w1226-h919-no" alt=""/></a></figure>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipNZP3Ur96HQ8zpBTpWpDmngSqdQevHS5xdXRnhE?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEUib85pzNog-piNYTod5z5E6Alvi4F4BY8IPPV0_R5PALP4cjcjZOfuX2cvnO8V-OOCrtxV7ehwVr54hvTbKKFCCta7Cx1ncPRMlYYFrJHxcoZ9aMoIK_zE5HTeU9Ilsx-HlhCThNKWGFb6Mgwo3sV0bg=w690-h919-no" alt=""/></a><figcaption>The cathedral is so beautiful</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipPLHBcmB1ZQCrW-f4dHZks7-YZUrTYd7o-prCWf?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEXRE0VmQmA-W5dmqzO7T94RWf7rGSq71FDGLHz8-8X7E-lCyJe-x90-3tUlU0mBKTPzRoFQOpdSecs092HmV8DBPoVx8aig0t-wDCAXYk1R-0NMnsFh8xcRuA7H-GN12UYADBbBTOmMJatvCRTi0FnSYw=w690-h919-no" alt=""/></a></figure>
</div>
</div>



<p class="wp-block-paragraph">I noticed that all the churches and cathedrals I&#8217;ve visited follow a similar pattern in their construction. Above the entrance is always the church tower with the bells and the left and right sides of the entrance are usually statues set up to illustrated Jesus&#8217; sacrifice in some way. The windows there always face east west, probably to allow the suns rays to illuminate the entire scene.</p>



<p class="wp-block-paragraph">The agenda today for the carnival was that there would be a parade featuring the children of Cologne. No offense to the children, but the parade really wasn&#8217;t all that interesting or maybe I&#8217;m just not a fan of parades. The best thing about it though was that they gave out candy. They grabbed handfuls and handfuls of candy and just threw it at the crowds. At one point they even brought out a catapult. The more candy they threw out, the more candy wrappers ended up on the street. But since the city has been doing the carnival for years, they were quite prepared. The fact that the garbage crews cleaned up the town overnight amazed me. There was almost no more broken glass everywhere, but that all changed as the day went on.</p>



<p class="wp-block-paragraph">The best part of today was visiting the Rhine River that goes through Cologne. On such a sunny day, the view was amazing. While walking across the bridge to the other side of the Rhine we saw that on the entire length of the bridge couples that just got married would place locks on the fence stating their names and their date of marriage. There were easily at least a hundred thousand locks. We met up with our friends from UBC and together we chilled at a spot overlooking the Rhine, and watched as the sun slowly set.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipP4Whs6S8rqYWOghAIsgkeM6t_UxvW-ArxQ2BCK?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEUzufkQOJXmAwUlksF-b03nIfabXt93Xqs6OnGHbdMx0UF-UeQSYFMgTXuHKyWSb1Zrbu-Q2LOJbpf2PTyVasxCUgj8qYsa-dZdtll_ZjWhhfKNfr4fj5nQTCWLkcXzC4YNeuf_eooT25_nkOVwuhq82A=w1226-h919-no" alt=""/></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipNmuyI9ddzqB0AoTVE-bdx3x8oVq790dXvFtQ2v?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEWes4uakMR0SW-4wKalL7OrzjMi8vD8O5fVHWIYF8srBCrG4Q7EbUbPzalpM2UMut5oFJX1wervvwvXBvcwz-TzdkJSGQlTx2-eLarygsPT5E9QOxMhhB2tdnbL_JXmssXSZ2rjmDnoi0ozDfatFYKQZw=w1226-h919-no" alt=""/></a></figure>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipO8h23GcUhkzPRdT6uZICbVJcJkB_GCTPprbf52?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEXBCPFh3rH6jie9M7mucDzBX5Ghym8w_iQL7XCOxCxFGPIQQdDLQpbdDPPVu1R46YNxzZ4YUoqo3gZC9up3ddsnzxJ7KIa1XLfzc7PQu5nYuWolxoVfN1HtKmtwv-B2eD08m69M04Mx-2ol81g5P4-UGw=w1226-h919-no" alt=""/></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipMNOTk-p9PUmtSHM9yUfIvF4_q0ynx5se35Hiy_?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEUk9f4hz2SysKxW9xHBYKG59qvgOt57gUwsUUHy6VR84pxyjnQSD-uvSMC7mpQMxrtUtab9IoxtBBfxkvcYG02CLE12Rb8HBRLpxXZiCEqr0ATfdUFGLjC5aSrCP2gXf5ITgbcMyGpfz6TUXWpOyuBJfA=w1226-h919-no" alt=""/></a></figure>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipMk_zIbtI6MfQs4qeUInqv01HPpuLpW7xIhuSdS?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEWT4TQsZ709Jm3VhAJ5auxRWNwB52xZ-Gi32144TLkEyJtZRn5yTl_iJg61eW40sPieAiQWh1QwEMgfWfKPht459dNTE3qjHj9w44uppLtqRcue15qKCVGCtc6LeVc6o3qX55j9IWacz07wcY3owm8EIg=w1226-h919-no" alt=""/></a><figcaption>The Rhine River and the locks of the newlyweds on the bridge</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipN4GOP--uM0GYRz7AP46j6oJtTZANxf3CsXuyAL?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEW6652MaqGmUFUoxMj1g73i15WvS3y61CmMWeeLwAxaPX0TgpbYrB2N1QfVBmTj79TMyZZVSP0M7vQ27PbSagkdOgIeKVaY1bhc87x8_YQK6vgVzBGlneBh1BOe4f7MWfBQ2rKrKQUmqUI_VFA8v2coKg=w1226-h919-no" alt=""/></a></figure>
</div>
</div>



<p class="wp-block-paragraph">Almost everywhere we went, we could hear carnival music, either from marching bands, street performers or giant speakers. It really set the mood for the whole celebration.</p>



<p class="wp-block-paragraph">For dinner, I had a very unique steak sandwich. The steak itself was probably three times the size of the bread. It was about half an inch thick at least six inches in length and width. It costed six euros, but it was definitely worth it.</p>



<p class="wp-block-paragraph">At night, the same routine as last night happened, but while we were drinking, we heard stories of the night before. All the stories just sounded super outrageous. I heard stories about people randomly smashing a baby carriage, high on weed, falling asleep on the street, eating breakfast with a bunch of probably homosexual Austrians dressed up as band members from KISS, and partying at a gay club. None of that happened to me (which is good), but those stories were definitely fun to hear. Since it was Sunday, the parties were not as crazy as the night before. There were a lot less people out. But we did see a really drunk French person on the street. What was so funny about him was that he kept taking our beer bottles and doing tricks with them like walking around with a bottle balanced on his head. The scary part was that he was really good at it. But like the night before, everything we did seemed pointless the next morning.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipO_vhCZxfS2vn1ZtTlYibiDqWd2DtKjC14ZiEWa?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEWoJEF0mbT6RsN1YhnvJ55Qq0T8rahO5EuxYN2Rq1iIlCwkYapLEo7-6boWtD0gM_sSUXkxBbPUsqXh9nfwJoTTFazWgj8OkKhpRdq6Lmpx_6Pr4utDPEBt8L6gfaRRTBBxMWvYzf1H9js3zn1gbo8_EQ=w690-h919-no" alt=""/></a><figcaption>Really drunk French guy</figcaption></figure>
</div>


<p class="wp-block-paragraph">The monday of the carnival, known as Rosenmontag, featured the biggest parade of the carnival and is probably attracted more visitors than any other day of the carnival. When the parade started, we were walking on the parade route for some reason, which was kind of strange. Luckily, we weren&#8217;t the only ones so it wasn&#8217;t as awkward as it was supposed to be. The parade was similar to the previous days&#8217; parade, but there a lot more marching bands that played and larger parade floats. They gave out more candy too. People would call out &#8220;kamelle!&#8221;, which means &#8220;sweets&#8221; in order to get the people in the parade to throw candy to them. Some of the floats had political messages about Facebook and Google Streetview denying people of their privacy. On four separate occasions, a chocolate bar hit me directly in the head. One of them impacted directly on my sunglasses and protected me. I ate so much candy that after watching the parade for over four hours that my stomach told me it had enough. I didn&#8217;t even eat dinner. In the beginning, we were all excited about catching the candy they threw at us, but four hours later, we thought, &#8220;when does the parade end?&#8221; At one point we began to dodge the candy thrown at us. We had way too much. Seeing that the parade hadn&#8217;t ended for so long, and that we stood in the cold for all that time, we left prematurely before taking the train back to Stuttgart. While walking back, we came across someone throwing confetti and I somehow managed to walk right into a cluster of flying confetti. During the course of the parade, the city turned from something beautiful into a city with garbage laden streets. Most people never took the time to throw their candy wrappers in the garbage. And also like the other nights, broken beer bottles filled the streets. It also didn&#8217;t help when people kept throwing confetti into the air.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipP5lOM5G6TGCHLVPxjP0_18rmt8BBYVL83EFpSl?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEXCwe6gVlRWocGTapehRPhoBdVTM9ysrFX7F1JbQlhmZDREfh-WgP9cYjK06eudUVFWMLU1pRcQDmbNivARoPYqvvJVow1zveD6xR9E-9IydkxaiXtZcOcu39WtlJkmoA_qJ40XFEgOWhWLxDyhzSbMWQ=w1226-h919-no" alt=""/></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipPenHcw-oevBFO9qB5_shv015ocJl0vwoik_QiE?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEVPOqu7B37wFiciSbnG-kSr-H5tsVXRU99Uc3ZGIV2ij7kyczDC7PdAr5GJlk6sGYYvUeFo6koKSFqsF_hZ5Xalx5maU_2fJzha32mYqyTqqdHyLdU1y6jH7OAmeoTI6ToEzotT4MY6PC9wXaXfTy5_kg=w1226-h919-no" alt=""/></a></figure>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipP3F46GDgi7xVyWSgMtU_WnrWHZIL4j4Hw_AEsj?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEXK4LzoC7L6YVFS8-7xQJJ_r1G7tTTsbmKfPW-OqvbEHmYptH1KcV5uEieXKmvZaG38QK-SCf9H3YljGd1sLGiNfXJpZFGwPCE_ifBdrPaCpv5CGR8jXq9vXKBUOk9xTe6wveqszNoXFFWtYnUXjXX2BA=w1226-h919-no" alt=""/></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipMFguSCfO3Qmg6YWjVbVyW2TYAoTxML_2Kby1ka?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEUqxdEIKCXpSFILpR4tY8at4CrM4J4mPgxep1VsXOJ9qjuynnd2lRCZo10Op9ySvwpjFBJnCdyKNlics6Zb6p-z5INmd8RTlUl9yvt5HhZul16LGWQBhaCJnnrR01ECSUK5kZUcGt2XEZuTD3o_AqUiQg=w1226-h919-no" alt=""/></a></figure>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipPayVV-SGKwbL1LbsyMT_3kNCGnZLgE64Us0Lsh?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEVsk91dzR2QDT00pt9bBVHRpyqV7S6T6sP4USvMS2b9fyeldf3m_zQEIwqJFZCStXNSeOcfgjxqJpd0MeBDvVhbdKaf_ubI9CIvd5lDLCvy9mJXJdw9y65X4nYC-TQimgH835dlWel9YGHYIj2nPt6zdA=w1226-h919-no" alt=""/></a><figcaption>The parade on Rosenmontag</figcaption></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ/photo/AF1QipMuDDzyzYrhLX4LxkSnTGp-MqC5ra0ybguTRJBD?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener"><img decoding="async" src="https://lh3.googleusercontent.com/pw/AL9nZEWKkdbRE7MhC7HyG8YvpVm70r2Fad1Dff1x5GIBXCxbRAWaxKkz2EMpPkLpdeWnpxhMoSEyNsPk5832k3D-XRzrjy0wDYH478KMT8Z-XntGWwlvOyH71Gxbhnco4EJ66NhTsQdy6z8hovXuHg6_NHKoVg=w1226-h919-no" alt=""/></a></figure>
</div>
</div>



<p class="wp-block-paragraph">Before leaving, I took a few more pictures of the cathedral. I kept thinking I needed more and more pictures of it. The architecture just amazed me so much.</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="The Cologne Carnival 2011" width="1280" height="960" src="https://www.youtube.com/embed/IbD3IVydUl0?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<p class="wp-block-paragraph">On the way back, our IC train was delayed so we got to ride the faster ICE train in order to make our connecting train on time. We didn&#8217;t get a seat since there was basically two trains ful of people jam packed into one train. We ended up at Frankfurt Airport as part of the slight detour. The trains that we took were all full of people who had just come from the carnival and were probably still super drunk. They stayed on the train that way and ended up yelling, screaming and banging on the walls for the whole duration of the ride. Public intoxication is a very common thing in Germany, and it&#8217;s not only on special occasions like these. After four hours of train rides, we finally got home, and just in time to sleep and go back to work the next day&#8230;</p>



<p class="wp-block-paragraph">My <a href="https://photos.google.com/share/AF1QipNfE1_MAVwXQEXDpDsn2Wra3Li4mwSrOxYd1tCAd0LkPBm6Wn0U2oYS1yKKHNfsYQ?key=RTYwWS04a3k5dzByemlsNFNDaWFWNnh1NjRHb1Fn" target="_blank" rel="noreferrer noopener">photo album</a> for Cologne</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2011/03/08/germanys-cultural-centers-costume-crazy-carnival-in-cologne/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">920</post-id>	</item>
		<item>
		<title>Receiving MMS on Vodafone</title>
		<link>https://blog.henrypoon.com/blog/2011/03/01/receiving-mms-on-vodafone/</link>
					<comments>https://blog.henrypoon.com/blog/2011/03/01/receiving-mms-on-vodafone/#respond</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Tue, 01 Mar 2011 19:03:12 +0000</pubDate>
				<category><![CDATA[computer stuff]]></category>
		<category><![CDATA[9]]></category>
		<category><![CDATA[Chan]]></category>
		<category><![CDATA[Click]]></category>
		<category><![CDATA[Companies]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Deutsche Bahn]]></category>
		<category><![CDATA[Euro]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[Final]]></category>
		<category><![CDATA[German]]></category>
		<category><![CDATA[Germany]]></category>
		<category><![CDATA[Go]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[In Germany]]></category>
		<category><![CDATA[Instant messaging clients]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Messages]]></category>
		<category><![CDATA[Multimedia Messaging Service]]></category>
		<category><![CDATA[My Phone]]></category>
		<category><![CDATA[Net]]></category>
		<category><![CDATA[Password]]></category>
		<category><![CDATA[Pho]]></category>
		<category><![CDATA[Plan]]></category>
		<category><![CDATA[Port]]></category>
		<category><![CDATA[Printer]]></category>
		<category><![CDATA[Printing]]></category>
		<category><![CDATA[Racal]]></category>
		<category><![CDATA[STR]]></category>
		<category><![CDATA[Telecommunications]]></category>
		<category><![CDATA[Tickets]]></category>
		<category><![CDATA[tuna]]></category>
		<category><![CDATA[Vodafone]]></category>
		<guid isPermaLink="false">http://henrypoon.mooo.com/blog/receiving-mms-on-vodafone</guid>

					<description><![CDATA[Receiving MMS on Vodafone Up until now, I&#8217;ve never opened an MMS successfully. My Internet settings on the phone were never set probably plus I never bothered to do it. I also didn&#8217;t know the billing rates for opening them either. But now, an opportunity arose for me to require MMS. The Deutsche Bahn has [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><title>Receiving MMS on Vodafone</title></p>
<p>Up until now, I&#8217;ve never opened an MMS successfully.  My Internet settings on the phone were never set<br />
probably plus I never bothered to do it.  I also didn&#8217;t know the billing rates for opening them either.<br />
But now, an opportunity arose for me to require MMS.  The Deutsche Bahn has three options for distributing tickets purchased online.  The first one is by printing them out, but I don&#8217;t have a printer.  The second method is having them mailed to me, but that costs 3.50 euro.  The third and best option, is to have them sent as MMS.  Knowing that my phone, the P1i, has this ability, I looked for how to do it.  After going through lots of Googling and reading through translated German sites, I finally figured it out.</p>
<p>Now, I use Vodafone in Germany, but this method may work on other providers even.  I am also using GPRS, and not 3G (I don&#8217;t have a dataplan unfortunately).  The way to do it is to register an account on Vodafone.de using your phone number.  Obviously, if you use a different provider, you&#8217;d go to their website to make the account.  I clicked through their services and found an option called the &#8220;HandyKonfigurator&#8221;.  What it does is it sends me the proper settings required for my phone.  I clicked through the dropdown boxes, found my phone and pressed continue.  Vodafone then sent me a file that would inject the settings into my phone.  They also sent me a PIN that I had to enter before my phone settings were changed.  I did as I was asked, and now I can receive MMS messages!</p>
<p>Vodafone Internet Account Settings</p>
<ul>
<li>Address: event.vodafone.de</li>
<li>No user name and password required</li>
<li>IP Config and DNS Addresses are set to automatic</li>
<li>Proxy Server: 139.7.29.17 at port 80</li>
</ul>
<p>Vodafone MMS Account Settings</p>
<ul>
<li>Service Center Address: http://139.7.24.1/servlets/mms</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2011/03/01/receiving-mms-on-vodafone/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">901</post-id>	</item>
		<item>
		<title>Comparison between Prepaid Phone Plans from Fido and Vodafone</title>
		<link>https://blog.henrypoon.com/blog/2011/01/17/comparison-between-prepaid-phone-plans-from-fido-and-vodafone/</link>
					<comments>https://blog.henrypoon.com/blog/2011/01/17/comparison-between-prepaid-phone-plans-from-fido-and-vodafone/#comments</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Tue, 18 Jan 2011 03:42:15 +0000</pubDate>
				<category><![CDATA[europe]]></category>
		<category><![CDATA[9]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Fido Solutions]]></category>
		<category><![CDATA[German]]></category>
		<category><![CDATA[Germany]]></category>
		<category><![CDATA[Go]]></category>
		<category><![CDATA[In Germany]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Messages]]></category>
		<category><![CDATA[Mobile phone]]></category>
		<category><![CDATA[Mobile telecommunications]]></category>
		<category><![CDATA[Net]]></category>
		<category><![CDATA[Online chat]]></category>
		<category><![CDATA[Paris]]></category>
		<category><![CDATA[Pho]]></category>
		<category><![CDATA[Plan]]></category>
		<category><![CDATA[Prepaid mobile phone]]></category>
		<category><![CDATA[Prepayment]]></category>
		<category><![CDATA[SMS]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Telecommunications]]></category>
		<category><![CDATA[Telephony]]></category>
		<category><![CDATA[Text messaging]]></category>
		<category><![CDATA[Thou]]></category>
		<category><![CDATA[tuna]]></category>
		<category><![CDATA[Videotelephony]]></category>
		<category><![CDATA[Vodafone]]></category>
		<guid isPermaLink="false">http://henrypoon.mooo.com/blog/comparison-between-prepaid-phone-plans-from-fido-and-vodafone</guid>

					<description><![CDATA[I always thought phone plans were always more expensive than they should be.&#160; But unfortunately, we must always pay them if we use a cell phone, and I can’t fathom not using one. Since I arrived in Germany, I had been looking for a good phone plan.&#160; I figure I should just stick with a [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I always thought phone plans were always more expensive than they should be.&nbsp; But unfortunately, we must always pay them if we use a cell phone, and I can’t fathom not using one.</p>
<p>Since I arrived in Germany, I had been looking for a good phone plan.&nbsp; I figure I should just stick with a prepaid phone plan since I can’t imagine myself getting a lot of phone calls.&nbsp; I ended up using one of Vodafone’s prepaid phone plans.&nbsp; The closest phone plan from Fido is their prepaid plan.&nbsp; Below is a comparison (as of January 18, 2011).</p>
<div align="center">
<table width="401" cellspacing="0" cellpadding="2" border="0" align="center">
<tbody>
<tr>
<td width="121" valign="top">&nbsp;</td>
<td width="132" valign="top">Fido</td>
<td width="146" valign="top">Vodafone</td>
</tr>
<tr>
<td width="121" valign="top">Cost</td>
<td width="132" valign="top">$10.75</td>
<td width="146" valign="top">€10</td>
</tr>
<tr>
<td width="121" valign="top">Outgoing Calls</td>
<td width="132" valign="top">10 c/min</td>
<td width="146" valign="top">5 c/min (same network)<br />
15 c/min (other networks)</td>
</tr>
<tr>
<td width="121" valign="top">Outgoing SMS</td>
<td width="132" valign="top">15 c</td>
<td width="146" valign="top">19 c</td>
</tr>
<tr>
<td width="121" valign="top">Incoming Calls</td>
<td width="150" valign="top">10 c/min</td>
<td width="173" valign="top">FREE (even if it’s an international call)</td>
</tr>
<tr>
<td width="121" valign="top">Incoming SMS</td>
<td width="150" valign="top">FREE</td>
<td width="173" valign="top">FREE</td>
</tr>
<tr>
<td width="121" valign="top">Credit Expiry Date</td>
<td width="150" valign="top">1 Month</td>
<td width="173" valign="top">15 Months? (Judging from the fact that I was told my credit would expire in April 2012)</td>
</tr>
<tr>
<td width="121" valign="top">Caller ID</td>
<td width="150" valign="top">Included</td>
<td width="173" valign="top">Included</td>
</tr>
</tbody>
</table>
</div>
<p>It seems that everything is mostly the same in terms of making calls and sending text messages.&nbsp; But the biggest perk in Vodafone’s plan is the fact that receiving international calls is free.&nbsp; That’s the same as Fido’s “unlimited incoming calls feature”.&nbsp; The expiring date is longer too.&nbsp; But as with most better features, they almost always cost more.&nbsp; Here €10 is just about $3 more expensive than Fido’s plan.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2011/01/17/comparison-between-prepaid-phone-plans-from-fido-and-vodafone/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">724</post-id>	</item>
		<item>
		<title>Free Texting/SMS (Online Services and E-mail)</title>
		<link>https://blog.henrypoon.com/blog/2010/02/24/free-textingsms-online-services-and-e-mail/</link>
					<comments>https://blog.henrypoon.com/blog/2010/02/24/free-textingsms-online-services-and-e-mail/#respond</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Thu, 25 Feb 2010 02:01:31 +0000</pubDate>
				<category><![CDATA[computer stuff]]></category>
		<category><![CDATA[Canada]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[Information and communications technology]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Lie]]></category>
		<category><![CDATA[Messages]]></category>
		<category><![CDATA[Pho]]></category>
		<category><![CDATA[Rogers Communications]]></category>
		<category><![CDATA[Rogers Wireless]]></category>
		<category><![CDATA[SMS]]></category>
		<category><![CDATA[Telecommunications]]></category>
		<category><![CDATA[Telus]]></category>
		<category><![CDATA[Vol]]></category>
		<category><![CDATA[Wireless]]></category>
		<guid isPermaLink="false">http://henrypoon.mooo.com/blog/free-textingsms-online-services-and-e-mail</guid>

					<description><![CDATA[Personal note: I did notice that if I tried e-mailing a Fido or Rogers number, the recipient will not receive the message you sent, and instead they will get a message telling them how to retrieve the message. It seems like a convoluted way of doing things. It works perfectly with Bell Mobility. Replies get [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Personal note: I did notice that if I tried e-mailing a Fido or Rogers number, the recipient will not receive the message you sent, and instead they will get a message telling them how to retrieve the message. It seems like a convoluted way of doing things. It works perfectly with Bell Mobility. Replies get sent to your inbox too.</p>



<ul class="wp-block-list"><li><strong>Rogers </strong>Wireless: [10-digit phone number]<strong>@pcs.rogers.com</strong></li><li><strong>Fido</strong>: [10-digit phone number]<strong>@fido.ca</strong></li><li><strong>Telus</strong>: [10-digit phone number]<strong>@msg.telus.com</strong></li><li><strong>Bell </strong>Mobility: [10-digit phone number]<strong>@txt.bell.ca</strong></li><li><strong>Kudo </strong>Mobile: [10-digit phone number]<strong>@msg.koodomobile.com</strong></li><li><strong>MTS</strong>: [10-digit phone number]<strong>@text.mtsmobility.com</strong></li><li><strong>President’s Choice</strong>: [10-digit phone number]<strong>@txt.bell.ca</strong></li><li><strong>Sasktel</strong>: [10-digit phone number]<strong>@sms.sasktel.com</strong></li><li><strong>Solo</strong>: [10-digit phone number]<strong>@txt.bell.ca</strong></li><li><strong>Virgin</strong>: [10-digit phone number]<strong>@vmobile.ca</strong></li></ul>



<p class="wp-block-paragraph"><a href="http://smartcanucks.ca/how-to-send-free-text-messages-to-rogers-fido-telus-bell-virgin-cell-phones-canada/" target="_blank" rel="noreferrer noopener">http://smartcanucks.ca/how-to-send-free-text-messages-to-rogers-fido-telus-bell-virgin-cell-phones-canada/</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2010/02/24/free-textingsms-online-services-and-e-mail/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">255</post-id>	</item>
		<item>
		<title>P1i Problems</title>
		<link>https://blog.henrypoon.com/blog/2010/01/04/p1i-problems/</link>
					<comments>https://blog.henrypoon.com/blog/2010/01/04/p1i-problems/#respond</comments>
		
		<dc:creator><![CDATA[hp]]></dc:creator>
		<pubDate>Tue, 05 Jan 2010 00:31:33 +0000</pubDate>
				<category><![CDATA[computer stuff]]></category>
		<category><![CDATA[All That]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Backlight]]></category>
		<category><![CDATA[Chan]]></category>
		<category><![CDATA[Cloud clients]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[Computer architecture]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[D]]></category>
		<category><![CDATA[EAR]]></category>
		<category><![CDATA[Firmware]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Go]]></category>
		<category><![CDATA[IOS version history]]></category>
		<category><![CDATA[It]]></category>
		<category><![CDATA[Light]]></category>
		<category><![CDATA[Messages]]></category>
		<category><![CDATA[My Phone]]></category>
		<category><![CDATA[Net]]></category>
		<category><![CDATA[Operating systems]]></category>
		<category><![CDATA[Pho]]></category>
		<category><![CDATA[Smartphones]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The Battery]]></category>
		<category><![CDATA[Thou]]></category>
		<category><![CDATA[Vol]]></category>
		<category><![CDATA[Volume]]></category>
		<category><![CDATA[Week]]></category>
		<guid isPermaLink="false">http://henrypoon.mooo.com/blog/p1i-problems</guid>

					<description><![CDATA[Lately I&#8217;ve had this recurring problem with my P1i that involves the screen going black while the phone is still on.&#160; I haven&#8217;t encountered this problem for a while.&#160; I thought I had fixed it with a firmware update.&#160; Pressing the power button again does nothing.&#160; The only way to get rid of the black [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Lately I&#8217;ve had this recurring problem with my P1i that involves the screen going black while the phone is still on.&nbsp; I haven&#8217;t encountered this problem for a while.&nbsp; I thought I had fixed it with a firmware update.&nbsp; Pressing the power button again does nothing.&nbsp; The only way to get rid of the black screen is to take out the battery and put it back in and then restart the phone.&nbsp; While there is a way to get the phone back to normal, I do not know when it happens or under what circumstances it happens.</p>
<p>In addition to that problem, I&#8217;ve also encountered a multitude of other issues with this phone.&nbsp; Many of which I thought I&#8217;d fixed with the firmware update.&nbsp; Anyhow this is the list of issues:</p>
<ul>
<li>screen going black</li>
<li>unable to make incoming or outgoing calls</li>
<li>text messages received, but i do not receive any notification for (they just appear as a new message but there&#8217;s no popup saying &#8220;New Message Received&#8221;</li>
<li>probably more that I don&#8217;t remember right now</li>
</ul>
<p>I recall that since the firmware update, I&#8217;ve installed a few programs and changed some settings.&nbsp; I have a feeling that this has to do with the settings that I changed.&nbsp; I&#8217;ve had the software installed on my phone for quite a while and it has given me no problems.&nbsp; The most recent app I&#8217;ve installed would be the Gmail app, but there&#8217;s no telling whether or not its the culprit.&nbsp; I also changed the backlight settings, and added a few Internet accounts.&nbsp;&nbsp; When I was in California, I changed the mobile networks from Fido to AT&amp;T.&nbsp; I changed it back a week ago when I got back and there was no problems.&nbsp; I doubt the volume controls have anything to do with this.</p>
<p>I might end up doing a firmware reset.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.henrypoon.com/blog/2010/01/04/p1i-problems/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">135</post-id>	</item>
	</channel>
</rss>
