Hongkong trip 14th to 16th Sep'18

2023-11-04 05:18
文章标签 18 trip sep hongkong 14th 16th

本文主要是介绍Hongkong trip 14th to 16th Sep'18,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

文章目录

  • Summary
  • Itinerary
  • Local Attractions
  • Hotel
  • Stuck at Shenzhen because of Typhoon Mangkhut
  • Reference

Summary

Arranged Hongkong trip from 14th to 16th Sep’18, stuck at Shenzhen because of Typhoon Mangkhut, returned back to Singapore on 18th Sep.18.

Itinerary

Air ticket,

  • Singapore to Shenzhen
    Flight CZ8500
    Departure 03:20am 14th Sep. Changi International Airport, Terminal 1
    Arrival 07:30am 14th Sep.18 Baoan Airport, Terminal 3
  • Shenzhen to Singapore
    Flight CZ8499
    Departure 10:15pm, 16th Sep.18, Baoan Airport, Terminal 3
    Arrival 17th Sep. 18, 02:10am, Changi International Airport, Terminal 1

The round ticket cost me S$239.60.
I was caught in Typhoon Mangkhut, had to postpone my return date to 18th Sep.

Ticket

Subway to hotel,

subway

Subway

Inside the subway,

Subway

One time usage ticket,

ticket

在这里插入图片描述

在这里插入图片描述

Entering into Hongkong,

在这里插入图片描述

Ferry Ride to Grand-view-hotel at North Point,
Ferry Ride

Tsim Sha Tsui metro station,

Metro

On the way to North Point metro station,

在这里插入图片描述

Electric bus

在这里插入图片描述

Lunch at Shenzhen before returning back to Singapore,
在这里插入图片描述

Another restaurant,

在这里插入图片描述

Local Attractions

  • Temple Street Night Market, we went there at day time.
    在这里插入图片描述

Temple street
Had breakfast at Cafe de Corals in Temple Street,
Cafe de Corals

在这里插入图片描述

After breakfast, walking to Kowloon Park.
在这里插入图片描述

Kowloon Park

Kowloon park

To Victoria Peak by Tram
cable car

Victoria peak,
在这里插入图片描述

At Victoria peak with wife and mother,
Victoria peak

Hotel

On 14th stayed at Comfort Guest House E in Tsim Sha Tsui, 150 SGD one night, this is not worth it, the room was too small.

On 15th stayed in Grand-view-hotel Agoda, 250 SGD one night, this hotel was much better, however we stayed there only for a few hours in the afternoon, rushed back to Shenzhen on 15th Sep. night.

We stayed at Jinjiang Inn from 15th to 18th, checked out on 18th Sep, and came back to Singapore on evening flight of 18th Sep.

Stuck at Shenzhen because of Typhoon Mangkhut

Stuck at Shenzhen for three days because of Typhoon Mangkhut, stayed at Jinjiang Inn.

在这里插入图片描述

在这里插入图片描述

Typhoon was strong…

width="560" height="315" src="https://www.youtube.com/embed/eDe42wXtqHo" allowfullscreen="">

Reference

Hong Kong in One Day for Budget Travelers
Hongkong grand-view-hotel Agoda
強烈颱風山竹 (2018年)
Comfort Guest House E

这篇关于Hongkong trip 14th to 16th Sep'18的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/343493

相关文章

react笔记 8-18 事件 方法 定义方法 获取/改变数据 传值

1、定义方法并绑定 class News extends React.Component {constructor(props) {super(props)this.state = {msg:'home组件'}}run(){alert("我是一个run") //方法写在类中}render() {return (<div><h2>{this.state.msg}</h2><button onCli

Day18_0.1基础学习MATLAB学习小技巧总结(18)——MATLAB绘图篇(1)

利用空闲时间把碎片化的MATLAB知识重新系统的学习一遍,为了在这个过程中加深印象,也为了能够有所足迹,我会把自己的学习总结发在专栏中,以便学习交流。 参考书目:《MATLAB基础教程 (第三版) (薛山)》 之前的章节都是基础的数据运算用法,对于功课来说更加重要的内容是建模、绘图、观察数据趋势,接下来我会结合自己的使用经验,来为大家分享绘图、建模使用的小技巧。 二维图形绘制 在本章开

18. 4 Sum

题目: 解答: 与之前的三数之和的解法类似,也是先排序,然后不断剔除不可能的条件,最后两个参数,通过两头求和计算得出。 代码: class Solution {public:vector<vector<int>> fourSum(vector<int>& nums, int target) {vector<vector<int>> result;int len = nums.size

系统架构师考试学习笔记第三篇——架构设计高级知识(18)面向服务架构设计理论与实践

本章考点:         第18课时主要学习面向服务架构设计理论与实践。根据考试大纲,本课时知识点会涉及单选题型(约占2~5分)和案例题(25分),本课时内容偏重于方法的掌握和应用,根据以往全国计算机技术与软件专业技术资格(水平)考试的出题规律,概念知识的考查内容多数来源于实际应用,还需要灵活运用相关知识点。         本课时知识架构如图18.1所示。 一、SOA的相关概念 (

PHP 验证身份号码 包括15位18位

查了很多资料 发现网上身份证15位的验证并不是那么严谨  今天研究了一下  代码如下 <?phpfunction check_id_card($num){//老身份证长度15位,新身份证长度18位$length = strlen($num);if ($length == 15) { //如果是15位身份证//15位身份证没有字母if (!is_numeric($num)) {return fa

最简单的使用JDBC[连接数据库] mysql 2019年3月18日

最极简版本的, 我们这里以mysql为例: 首先要创建maven工程, 需要引入jar包:,这里需要注意, 如果你安装的是mysql最新版本8以上的, 下面有些地方需要更改,具体就是mysql连接的url, 和5版本的不一样,具体解决请自行百度哈.这里只演示mysql5版本的? 依赖: <dependency>   <groupId>mysql</groupId>   <artifactId

实变函数精解【18】

文章目录 有限测度有限测度概率测度有限测度与概率测度的关系 σ \sigma σ-有限测度计数测度完备概率测度 参考文献 有限测度 首先,我们来明确“测度”的概念。在数学中,测度是一个将集合映射到非负实数(通常是实数的扩展,包括正无穷)的函数,它满足某些特定的性质,比如非负性、可加性等。有了这个基础,我们可以进一步探讨有限测度和概率测度的具体定义和它们之间的关系。 有限测度

【ACdream】ACdream原创群赛(18)のAK's dream

这次的群赛AK的不少,7题的也很多啊。。Orrrrrrrz。。。。 暂时只写出7题。。。 A:1196 模拟。。 /** this code is made by poursoul* Problem: 1196* Verdict: Accepted* Submission Date: 2014-09-06 19:12:44* Time: 0MS* Memo

【高等代数笔记】(18)N阶行列式

2. N阶行列式 2.12 行列式按k行(列)展开 【拉普拉斯定理】 n n n阶矩阵 A = ( a i j ) \boldsymbol{A}=(a_{ij}) A=(aij​),取定第 i 1 , i 2 , . . . , i k i_{1},i_{2},...,i_{k} i1​,i2​,...,ik​行(其中 i 1 < i 2 < . . . < i k i_{1}<i_{2}<.

LeetCode 18 4Sum

题意: 给出数组s和目标target,输出s中4个元素相加和为target的所有不同方案。 思路: 又是x sum问题,详见我的题解:http://blog.csdn.net/houserabbit/article/details/54707475 这题要注意的是去掉重复的方案,而且本题时间卡常数,代码要写的快一点。 代码: class Solution {publi