Skip to main content

兵者,凶器也,圣人不得已而用之

发信人: qiaka (布衣书生96691), 信区: GunsAndGears
标  题: 兵者,凶器也,圣人不得已而用之
发信站: BBS 未名空间站 (Sun Jan 15 22:47:20 2017, 美东)

版上和现实中,都有不少过于依赖枪支进行家防的同胞,这欠妥,有点本末倒置了.遇到训
练有素的职业杀手,没辙,只能认命.可见,枪,不能解决一切问题.
在异国他乡,要想保护自己的家人,只有结合诸多措施,才切实可行:
1)平时要谨言慎行,与人为善,与同事,邻居,同学,同胞,友好相处,要严于律己,宽容待人
.即使不能做朋友,也不要成为敌人.人际关系出现裂痕,要及时主动化解,化解得越早越
好.
2)只要有条件,尽量住治安好的好学区.明明知道那个地区经常发生抢劫,强奸,枪击等事
件,还往那里凑,这不是自己给自己找不顺嘛.
3)买了枪,要低调,非不得已,不要在公共场所谈论枪支.兵者,凶器也,圣人不得已而用之
.能少谈论,就少谈论.公开炫耀自己的枪支弹药,就意味着随时在谈论凶器,这很危险,灾
祸和意外,就容易降临到自己和家人头上.
4)有了枪,就要熟悉自己枪支的特点,勤加练习.load,unload,safety,在家的dry fire练
习,结合range实弹练习,争取做到危机情况下,能应对一般的罪犯和坏人.但还是那句话,
如果对方是训练有素的职业杀手,没辙,就凭你我理工男,Ph.D.,恐怕是应付不了.但如果
能做到上面的前三点,不会有职业杀手盯上你.
5)要跟全家一起经常进行演练.假想,如果凌晨2,3点,有坏人break in,怎么办,步骤应该
是怎样的,每个人的职责如何分配.比如一种选择是,丈夫最短时间内枪上膛,并在有利位
置,瞄准,射击. 妻子则带着孩子进入洗手间的bath tube(这样地板被子弹穿透的几率就
小些).两个孩子中大的那一个拨打911,小的那一个按响汽车钥匙的警报声音,让车库里
的两辆车警报声音大作,等等.这些平时都要全家人经常演练.一旦真的发生这种情况,才
能做到有条不紊,将伤害和损失降到最低.
如果能做到上述五点,你到70,80岁的时候,再回首来看,原来整个一生,你的枪也许从来
没有实战的机会,只是起个威慑作用罢了.

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