Skip to main content

我网上订机票的体会


这个纯属我个人的体会,如果有不正确遗漏的地方,欢迎大家补充更正。以下的经验不
仅适用于回中国的国际机票,也适应美国国内机票。

先确定你大概在什么时候回国,在哪一个月。一旦确定就开始,在网上观察票价的变动。

1. 我的行程是订在9月份,我应该是在2月份就开始看机票的价格了。这个时候我选择
的是网站flychina; 时间确定,飞机场确定,然后收藏到favorite。选择
flychina的原因是,比较我知道的几个机票网站,还是比较便宜的。

2. 每个星期至少看个2,3次,尤其是在礼拜二,三的时候。1-2个月以后,你就大概知
道你的票价的循环是什么了。就我的票价而言,1200 - 1100 - 943 - 903, 当时就是
这样的。我这个时候还没有开始订机票。flychina每次显示的最低价都是来自Delta,
然后我仔细看了他的路线和时间安排,也是最好的。所以这个时候,心里也有了低,要
怎么走,Delta应该是最好的选择。我也在这个时候去了Delta的网站看过,比较贵,在
1200以上。

3. 这个是每个人都经历的阶段,突然有一天,你打开网站,票价升回到原来最高的票
价。当然,懊悔之心人皆有之。这个时候,你千万不要担心,因为你还有很长的时间,
票价是循环的,你要记住票价还是会跌的。这个时候,你也差不多知道,你的最低票价
的底线了,所以当这个最低价来临的时候,你就要出手。

4. 上个星期,flychina有显示出了以往出现过得最低价,所以我觉得应该是时候了。
但是从来没有在flychina.com订过机票。问了朋友,在版上搜了一下,大概的评价是,
价格适中,比较有信用的。我觉得还不错,准备开始定了。但是,我在想,再去Delta.
com看看,是不是可能会有更低价。果然,出现了一个更低价,只要867,而且还可以预
先选座位。根据以往的所听到的,觉得在这个价格订机票应该是不会错的;在低也低不
到几十块钱。所以立马就订了。我后来还看了一下,这个价格持续一个星期。

我的信用卡,积累到差不多800多块的rewards了,希望能到时候全部redeem掉;这样,
机票差不多就是免费的了。

我觉得,买机票,感觉像是买股票。哈哈。。有一点要指出的,美国国内机票的网站,
例如alligantair.com, 是去拉斯韦加斯和奥兰多的首选;但是它非常的tricky, 基本
上每一个点击都意味着多交钱,你在选择的时候,一定要注意了。比如说,选座位要钱
,带行李登机要钱,苛捐杂税很多。大家要仔细阅读。

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...