Skip to main content

习近平激起民愤 从”袁消“到”除习“

  国务院上周公布内地明年放假安排,因除夕不再列入假期,激恼民众,更令习近平成为众矢之的。网民争相转发除夕不放假的理由:「袁世凯当皇帝时,改『元宵』名为『汤圆』,只为避讳『袁消』之意。秒懂为甚么除夕不放假了,现在的皇帝姓『习』啊。」

袁世凯改元宵为汤圆,是「只许州官放火、不准百姓点灯」的翻版,备受讥讽,连他批准农历正月初 一为春节,例行放假,当时也令倒袁人士不满,拒绝过这个春节假期。但孙中山后来提出废除春节,并未获支持,国民政府于1930年下令废除旧历及「禁过旧 年」更引爆强烈反对。毕竟,过新年的传统已有4,000多年历史。   而内地明年除夕不放假,并不是取消除夕之名,取消春节假期。以香港的传统而言,除夕不是假期,但只返半日工已成惯例,股市也只有半日交易。有内地网民乐观地表示,除夕不列为假期,其实是隐形福利,至少可以多半日假。
  除夕列不列入假期,问题不大,大问题在于当局早前对假期安排的假谘询,在于因「除习」、「袁消」引致的网络屏蔽、删帖甚至删号,结果招致更多怨气: 「你说私家车太多,给你摇号了。你说房价太高,给你徵税20%了。你说的士不好打,给你把钱涨了。你说养老负担重,给你延迟退休了。你说假期安排不合理, 给你把除夕取消了!」

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