Skip to main content

标  题: I693表经验分享(有的疫苗可以早早打好)

http://gengwg.blogspot.com/发信人: Eldora (潘多拉), 信区: I485
标  题: I693表经验分享(有的疫苗可以早早打好)
发信站: BBS 未名空间站 (Wed Apr  1 19:49:24 2015, 美东)


疫苗有Tdap,MMR, varicella,外加flu shot. 这些都可以在自己的家庭医生那里打好
,保险可能会包,比较省钱省力。

  MMR有两针,中间要隔一个月,所以如果没有,提前弄是很有必要的,而且那个有效
期非常久的。我08年出国时在国内打过索性小黄本还在,上面显示的是有效期十年,所
以MMR就不用打了。注意:MMR可以提前打好,保留记录,有效期很长。
  水痘那个可以验血看抗体,这个小时候大部分人应该都得过,如果确定自己没得过就
只有打针了,具体我不清楚,听说也是两针?不确定哦。 我验血确定有抗体然后就不
用打针了。

I693表上还有要填的是TB测试和验血测梅毒,这个听说有的移民医生不认你在自己家
庭医生那里测的,我打电话给移民医生确认了家庭医生做的测试他也认可所以我也找的
家庭医生。TB做skin test听说很多中国人都会大于5mm,我悲催的就是大于5mm之列(
假阳性),然后还要做一个X-Ray,感觉如果当初直接验血测TB会省事很多(可选择不做
皮试直接验血),内心对做x-ray还是有些反感。
  梅毒测试那个也是验血就可以。
  验血系列都是一般抽血后第三天会有结果。 对于TB,如果做皮试要等48小时看结果
,如果阳性做X-ray大概又需要两天才有结果。Tdap和flu shot是一针就完事,这个很
快,倒不用提前弄。
  
  都弄好了就带着所有疫苗以及验血record,在之前约好的时间去找移民医生了,听朋
友讲要脱衣服检查什么的,不过我的移民医生看到我所有的record的都齐全了,就直接
填好表让我走了,五分钟时间吧。我这费用160刀,当然如果缺东西什么的可能还要另
加钱。
  移民医生可以多问几家,听说有的地方收费很黑,问清楚收费以及认不认家庭医生的
结果再去,我是140结果还没出来就约好了移民医生,因为希望结果一出来就赶紧去把
这个弄了。
  如果你不是急性子,可以先把MMR疫苗打了,其他再慢慢弄。
--

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