Skip to main content

我跟右派说下Kyle案件的隐患吧

 发信人: YXLM (非要昵称不可吗), 信区: USANews
标  题: 我跟右派说下Kyle案件的隐患吧
发信站: BBS 未名空间站 (Tue Nov 23 00:01:38 2021, 美东)

  案子判得肯定没问题,有可能判有罪的唯一原因,就是陪审团遭到人身威胁,害怕
了。

  然而,反过来说,被击毙、击伤的这几位,也略有点冤。当然,他们也是活该。但
这两条并不矛盾。这就如同有人去跟持枪警察开玩笑,被击毙,这既是活该,也有点冤
。虽然冤的性质还不太一样。
  说这几位冤枉,是因为他们没想杀人,他们是赌Kyle不敢杀他们。结果,不但杀了
,而且无罪,算是输得干干净净。

  作为右派,我们当然可以说这完全是自找的,活该。然而,下次呢?
  下次他们是干脆躲了;还是不赌了,直接杀人呢?或者......

  暴乱本身并不可怕。暴乱分子越多,其中敢死(包括敢杀人)的人比例就越小。只
要警方愿意镇压,最多就是击毙几个,剩下的自然被震慑住。而这种事也用不着发生几
次,只要他们意识到警方会镇压,他们就暴乱不起来。
  但在Kyle案的场景中,逻辑就变了。它不需要大多数暴乱分子敢死,只要个别人敢
死,麻烦就很大。

  还有一种可能性就是:Antifa分子仍然不敢死,但他们在打砸抢的时候,会更小心
一些,不会去直接攻击右派的武装人员。
  这种情况下,右派的武装人员就只能面对两种结果:
  一种是沦为“联合国维和部队”,即虽然武器精良,但一般却不能使用武器维持和
平,经常沦为摆设。
  另一种是在更不容易被判无罪的情况下,对Antifa分子开火。

  如果当今美国还是一个正常国家,本案的要点应该是警方应该吸取教训,积极维护
法律和秩序,以避免此类案件再次发生。
  但当今美国远非正常国家,现在往那方面想的人都很少了。

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