Skip to main content

我有一个梦想

我有一个梦想:永远生活在新闻联播里,那里的领导个个都是时代先锋,群众人人都是
道德模范。即使偶尔抓到一个贪官,也只是一笔带过,不留一丝遗憾。

我有一个梦想:永远生活在新闻联播里,那里的农业年年大丰收,工业月月传喜讯,即
使遇到百年不遇的自然灾害和金融危机,都是有增无减。

我有一个梦想:永远生活在新闻联播里,那里的孩子都能上得起学,穷人们都能看得起
病,百姓住进了每月77元的廉租房,工资增长11.2%,大学生就业率达到99.13%,大学
生食堂就餐平均每顿两三元。

我有一个梦想:永远生活在新闻联播里,那里物价不涨,交通不堵,环境改善,罪犯落
马 。

我有一个梦想:永远生活在新闻联播里,那里的物价基本不涨,交通基本不堵,环境基
本改善,扫黄基本有效,罪犯基本落马。

我有一个梦想,永远生活在新闻联播里,那里是爱的家园,人间的天堂,那里有人们向
往的生活,一个梦的世界。

如果有一天,当我的梦想破灭,请把我埋葬在新闻联播里。
如果有一天,我老无所依,请把我埋葬在新闻联播里。

美丽,让罗玉凤给毁了;
慈善,被红十字会给毁了;
奇迹,被铁道部给毁了;
品位,让郭美美给毁了;
民生,被城管给毁了;
真相,被央视给毁了;
社会道德,让法院和那个老太婆给毁了;
团聚,被动车给毁了....剩下那么一点金钱,还被 CPI 给毁了。靠,真TM便宜啊!

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