Skip to main content

谈谈我中意的租车公司和网站。


谈到租车的网站,说到底只有两种:一、四大租车集团公司的网站;二、代理网站。(
这就像是买机票,要么到各个航空公司网站买,要么到机票代理网站买)

• 四大租车集团(共八个公司):分别是hertz, Avis/budget, dollar/thrifty
, national/alamo/enterprise。其他杂牌租车公司,除非价格上有非常大的优势,我
是尽量避免。在这四大公司网站租车,事先不用付费。
• 代理网站分两类,预付费(priceline, hotwire)和不用付费的网站(如
carrentals.com)。不到万不得已,我不愿意使用预付费的网站。因为,没付钱之前,
是大爷;付了钱,就“任人宰割”了。但同时,我喜欢把hotwire提供的价格,作为标
尺和心理价位。

绝大多数情况下,我都会选择最便宜的公司。而租车公司网站的价格,不会比代理网站
上的价格要贵。我最常用的三家,按照使用频率,是Alamo,National,和Avis。

Alamo的优势,是它的免费membership (insider),可以提供additional driver free
。同时,很多情况下,在使用insider member的专用ID code后,Alamo价格最低。
National,和 Alamo属于一个集团,价格上总是比alamo高一些。但是,它的免费
membership(emerald),可以让我们自由选车。
Avis,在不使用任何code的时候,价格上没有优势。但是如果能用上合适的AWD code,
它的价格可能最低。不过,在不同时间,不同租车点,“合适”的AWD都不一样。要一
个一个手工去试,很麻烦。


搜索租车价格,我喜欢用以下三个:
A. Kayak.com 这个网站只是一个搜索引擎,链接到租车公司的网站。它搜索出来的价
格,是没有任何折扣和优惠的。作为我的价格心理上限。通过kayak,也可以获得
hotwire的预付费价格。
B. carrentalsavers.com 这是个代理网站。一方面,它根据我们的搜索条件,自动匹
配一些code和coupon(当然很不全面);另一方面,它搜集了所有租车公司的折扣code。
当我们通过初次搜索,锁定了1-2家租车公司后,再专门寻找这几家租车公司的code。
C. Costcotravel.com。这是costco提供的租车代理网站(只代理了两大租车集团)。
它帮助自动匹配属于costco的ID code和coupon。很多时候,最便宜的价格,都能从这
个网站搜到。即使没有costoc卡,我们也可以搜索,起码能知道原始价格有多少水分。

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 /opt/course/1/context_default_no_kubectl.sh , but without the use of k

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 checking a shared sec