Skip to main content

来美十年,越过越不顺。

发信人: Dreamer (不要问我从哪里来), 信区: Dreamer
标  题: 来美十年,越过越不顺。
发信站: BBS 未名空间站 (Fri Oct 19 21:07:55 2012, 美东)

请不要引用!!!谢谢。

看了隔壁喝农药自杀的帖子,我深表同情。因为我也是过来人,只不过,别人是单身,
我已是有娃的妈了,不能来去自如,唯有有时自己蒙着被子哭一哭;即使真的忍不住在
娃面前哭了,只会惹娃也跟着我一起伤感。唉,为什么会落到这种田地。

这不是挖坑,我只是要吐槽,有时候真的很想自杀,但是觉得自杀会很疼,而且无论如
何我不能扔下娃不管,起码看在娃的份上,我要蒸气啊,可是我发现自己还是很弱的人
,能力不强,不然都不会一而再再二三的丢工作了。

现在,我基本上都避开熟人,即使去接娃,都是早点去,避开我周围的熟人,就怕她们
知道我失业了,毕竟上一份工作才做了1年多一点而已,而她们都是做得风生水起,很
稳定的。而且我现在身份都没搞定,更加觉得低人一等,可能随时卷包袱回国的那种。

每次跟父母视频,看着他们忧虑的眼神,我就很难受,这让我更加忧郁了,不知道怎么
才能振作起来。

家人建议我读博,于是就去考gmat,可是今天已经是我第二次考了,还是没有过7,非
常地郁闷。

买的房子水管漏水,自己家不漏,反而是楼下漏了,于是邻居天天催命一样要去马上修
,又是一笔开支。只觉得家里的存款越来越少,快要撑不住了。唉。

见到其他人,都不敢聊太久太深入,就怕别人知道我已经来美这么多年了,还连个稳定
的工作都没有,怕招人笑话。国内的亲戚都纷纷摇头,觉得我不可思议。更可怕的是,
觉得自己失业久了,怕再也工作不了了,特别是这份工作这份职业这个major从一开始
,就是妈妈逼我去学的。

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