Never argue with a fool, onlookers may not be able to tell the difference.
Mark Twain
There is a more prevalent quote on the internet. =P
Never argue with idiots – they’ll drag you down to their level then beat you with experience.
Never argue with a fool, onlookers may not be able to tell the difference.
Mark Twain
There is a more prevalent quote on the internet. =P
Never argue with idiots – they’ll drag you down to their level then beat you with experience.
在一個反智的時代,沒有真正的演說家,在街頭煽動力強青筋暴現的說話人,叫做煽動家(Demagogue)。煽動家的說話方式,是嘩哩嘩啦不停叫喊,只有他嘶叫,不可以你插話,他患上了躁狂症,是精神病的早期徵候。
中國人社會三千年來沒有演說這一科,不會明白何謂Demagogue。但西方有,英文辭典的定義很清楚:「特別是演說家或政治領袖,以煽動人民的感情、激情、偏見而得到權力和威望的人。」(A person, especially an orator or political leader, who gains power and popularity by arousing the emotions, passions, and prejudices of the people)。
其中關鍵:是「人民的偏見」(Prejudices of the people)。民族質素越粗糙、民智越愚塞,「人民」越有偏見。例如,毛澤東喊一句:「打土豪,分田地」,喚起了「中國人民」──其實是農民──用暴力搶奪地主的財產,就是Demagogue的煽動。 Continue reading 陶傑 – 補上這一課
MIA教育中心之殺出廚房隊林自己
《殺出廚房》做完,胸圍唇膏卸下,有人贊,有人彈。說實話,「文章千古事,得失寸心知」。評論褒貶,看過便算。
但這次不一樣。
邱先生話我「連一聲不響剽竊人家作品的事也幹得出……一聲不響強奪西方作品為己用……」邱先生說我扮女人做的《殺出廚房》是改編自英國人威利羅素的《莎莉華倫坦》。
邱先生說的,全對,一字不假。
從來只是原創的黃子華,這次盜用人家劇本,「並妄想無人知曉」,「侮辱看棟篤笑觀眾的閱歷」。這個,卻不是事實。
邱先生,我從沒低估看棟篤笑的人的閱歷,更未曾妄想過我的醜行可以蒙混過關。事實上,「欺世盜名」這個四個字,我引頸以待久了。
以下請聽我的故事。 Continue reading 子華文集 – MIA教育中心 之 殺出廚房隊林自己
MIA教育中心之訪問
明人不做暗事,難。名人不做訪問,更難。
黄Sir是介乎明與暗之間的名人,一旦為了工作接受訪問,萬分難,是難堪的難!
「你有沒有覺得自己很黴?」
「你算是半紅不黑嗎?」
「跟你差不多的都大有成就,你會酸溜溜嗎?」
「為什麼你做show時那麼繃緊?是故意還是因你天生樣衰?」
這些問題,一問出口,不答者死,答者更是死無葬身之地。
奪命傳理科稱這種問題為「你老母周街勾佬」陷阱。 Continue reading 子華文集 – MIA教育中心 之 訪問
When you get on the driver seat, please keep it in your mind that you are responsible for the safety for all the people on the road.
每次坐上司機位都要記住所有馬路上的生命都係你手上。
MIA教育中心之朱風趣
朱鎔基迷倒香江,憑什麼?
當然不是憑他的經濟政策或理論。
黄SIR相信,要大量用腦思想的東西,歡迎度一定有限。
「宏觀調控」,一定不及「宏觀空調」搶手。
「國企股份制」,一定不及「國企古惑仔」賺錢。
楊過,一定比楊懷康更受女士歡迎。
利工民,成就當然高過佛利民……
鐵證如山,不到你不接受。若果你仍有疑問,一定是我寫的不夠淺白,太過用腦。
朱鎔基迷倒香江,憑什麼? Continue reading 子華文集 – MIA教育中心 之 朱風趣
MTV Exit have created this video to promote their campaign against human trafficking, which features MK Ultra as the soundtrack.
You can use _wtoi() or _ttoi() to convert a CString into int.
#include "atlstr.h"
#include <iostream>
using namespace std;
int main ()
{
// Create a CString with number
CString intStr = _T("123");
// Convert the CString into int
int aInt = _wtoi(intStr);
// 123 + 123 = 246
aInt += 123;
// Print 246 to cout
cout << aInt << endl;
// Pause
system("PAUSE");
// Terminate the program:
return 0;
}
If you want to convert a String into InputStream, you can use the following piece of code.
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import org.apache.commons.io.IOUtils;
public class ConvertStringToInputStream {
public static void main(String[] args) {
try {
// Convert the String into InputStream
String eurekaUrl = "https://ykyuen.wordpress.com";
InputStream is = new ByteArrayInputStream(eurekaUrl.getBytes("UTF-8"));
// Use Apache Commons IO to get the content of the InputStream
System.out.println(IOUtils.toString(is, "UTF-8"));
} catch (Exception e) {
e.printStackTrace();
}
}
}