Skip to main content

谈恋爱找对象 要放轻松


北美的情杀案件,一次比一次让人叹息。好好的都是读书人,怎么会走到这么一步。
异国他乡不容易,谈个恋爱不容易,但是真的,既然出国了,就好好扩大一下胸怀和眼
见吧。

人姑娘跟你谈,你就好好谈。人姑娘不跟你谈了,你有空就琢磨琢磨自己哪里可以做些
调整,争取留住下一个姑娘。青菜萝卜还各有所爱呢,谁离了谁都是没缘分罢了,何苦
这么较真呢。

我以前碰到过一个欧洲学生,不知道怎么拒绝他,结果他自己跑来跟我谈心,他说,你
想跟我交往吗,想的话我们就约会多了解一下对方,不想的话就直接跟我说,我长那么
大了,又不是没有被拒绝过。当时我就笑了,觉得他很真诚很可爱,虽然直接拒绝了他
,也没有觉得内疚。

我想,大概这些别的国家的男生,从小到大就追来追去的,皮也厚了,谈恋爱也有经验
了,知道谈是正常的,拒绝是正常的,分手也是常有的,就比较在感情问题上想得开。
国内的男生,还是传统的比较多,轻易不谈恋爱,难得谈了,就看得很重。

说了这么多,还是希望这样的悲剧能不再重演。

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