Skip to main content

车TOTAL了,随便写点东西


开车从NY到CA,5.26凌晨4点多,芝加哥过去一些的I80路段,太困在路上睡着了,车先
是撞了左侧的护栏,然后醒过来,估计是向右打了方向盘,打了略多,车直接冲出了高
速路,最后在路边大概20feet的地方撞到铁栅栏停了下来。安全气囊没出,人也很OK,
车还能发动,本来想倒出来继续开算了,结果发现轮胎在空转,只好打了911。很快警
察叔叔来解救我了,车拖出来才发现损坏得蛮严重,警察直接就和我说应该是total了
。刚好是weekend + memorial day, 小地方没地租车,在super 8困了3天才租到车继续
开到加州。

总结几点:

1. 切不能疲劳驾驶,尤其感到困的时候。 我其实已经感觉不对了,当时离下一个rest
area还有10几M,就想坚持到了然后休息,就差了这么点出事。应该及时pull off,打
个双闪睡会。
2. 一个人开车还是不要开cruise了。。尤其晚上没什么车,太容易走神。
3. 新车保全险还是很好的。

在说下保险,我的是GEICO,这次他家表现确实很赞(觉得是广告的可以略过了):
在等911的时候就打了电话,确定是可以保的。
包租车,但是异地还车貌似只能在机场之间,他帮我找了半天搞不定,我说我很急,于
是直接给我寄了500的check让我自己去搞定( up to 50/day ),我租车从chicago到
san jose, 一周一共花了900不到( 还是多花了的,可以不买租车公司的保险,后来要
租一个月的时候才研究到 )。
然后车确定了total, 继续打电话问是否包租车,adjuster又给了4天,包到6.10,刚好
要买家具就让租了辆SUV. PS, GEICO是和enterprise合作的,他帮我租,full-size的
suv算上税都没超过50一天,在san jose简直是太神奇了。
拖车费也全包。
车的价格。 2010 COLLORA LE,买的时候是09年,当时经济不怎么样吧各种优惠,最后
算上税到手一共花了17000( 0APR ),车况总体来说还可以,就是有几处刮痕,找
deal修给的报价是800就没高兴claim也没修,出事的时候2W6 MILE,心里的估价是1W2(
有个朋友刚回国,09款的弄得很干净,一次小事故,卖了1w ),没想到最后给的报价是
13000,然后加税减去deductible 500一共给 14100+。 本来还想着给太低了怎么去
argue,这下也懒得去多说了,完全超过预期。
处理效率很高,客服也很NICE。

在研究保险事宜的时候貌似看到过一条大概意思是5年内如果只有一起事故的话保费不
会涨,不知道有没有也在用GEICO的人有相关经验可以说说?这个月要买车,如果GEICO
不涨得太夸张肯定继续买了(原来的全险一个月交100不到)

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...