[轉錄自] http://www.chinadaily.com.cn/language_tips/2007-03/15/content_828577.htm
大家都知道kick ass有“踢屁股”的意思,可是它還有“了不起”的意思你知道嗎?事實上,美國口語裡有太多的詞是和這個“ass (中國人概念中不登大雅之堂的屁股)”有關。下面我給大家介紹一些你經常會聽到的:
1. Kiss ass 拍馬屁
例如: A: Mary, I'm sorry for cheating on you before. Do you see any chance that we can get back together? Mary,我真的很抱歉對你不忠實。你想我們可不可能重修舊好呢?
B: I don't know, but you can kiss my ass. 不知道,不過你可以巴結我。
kiss ass 的意思就是"拍馬屁","cheat"除了作弊外,還有"不忠實"的意思。
2. kick ass 了不起
"kick ass"直譯過來是"踢屁股",美國俚語裡表示輕而易舉地戰勝某人,此人很"牛"。給大家舉個例子:你即將參加一場籃球比賽,你的朋友問你緊張不緊張,你可以說:"They are going to get their asses kicked (他們就等著被打個落花流水吧! )
再舉個例子: A: Wow, you fixed my computer in less than 10 minutes. You're good. B: Yep. I just kick ass! (那是,我就是厲害!)
美國人中的牛人,狂人經常會用到這個"kick ass"來表示充分的自信。
3. Asshole 不是個東西
"ass"是"屁股","hole"是"洞","asshole"是什麼意思大家應該明白了。根據wikipedia 的英文解釋,"asshole"是一個不雅的用語來表示對某人的厭惡。詞語形容的對象通常是非常刻薄的,自私的,或是粗魯無禮的。 (The word is mainly used as a profanity towards someone the speaker does not like or to express deep contempt for someone whose behavior is hurtful, self-centered or particularly abrasive.) 通常"asshole"用來形容男生的情況比較多。 如果有人毫不留情面的當眾指責你,辱罵你,你可以指著他的鼻子罵一句:"Asshole! "。
如果當你全心全意為他付出了那麼多,而他卻覺得理所應當,甚至是不屑一顧,這也到了罵他一句"Asshole"的時候,表示說:"你真不是個東西!" 如果某人滿嘴髒話,毫無教養,那麼他也配得上一句"You are an asshole!"
特別說明,此詞屬於髒話粗口,因此不要亂用啊! <---可是我特別喜愛這句的意思耶....(羞)
4. Jackass 不像話
這個詞在美國也非常常用。想必大家已經清楚了asshole的用法。其實,"jackass" 和"asshole"意思差不多,只不過是語氣上輕了不少,厭惡程度低了不少。如果你沒有那麼討厭這個人,但又一定要發洩心中的怒火,那就吼一句:"You are a jackass! "吧!當然,這個詞也是粗口,使用起來可要小心哦。
5. Pain in the ass
想形容某人很討厭,英文怎麼說? Somebody is pain in the ass。其實,如果你想說得文雅些,避免用"ass"這個詞,可以說"Somebody is pain in the neck."。意思完全一樣,只不過"脖子"上的痛比"屁股"上的痛更見得光些。
2011年7月10日 星期日
2011年4月13日 星期三
Axis2 偵錯:Timeout waiting for connection
有多個user Invoke 同一個service時,Service的Stack會滿,所以當服務結束時一定要釋放連線資源,讓一下個client使用,否則就會出現Timeout waiting for connection的情形。
必須在程式的最後加入下面程式碼:
ServiceClient sender = new ServiceClient();
...
if (sender != null) {
try {
//done using the client
//in order to discard any associated resources
sender.cleanupTransport();
} catch (Exception e) {
e.printStackTrace();
}
}
參考文章:
http://amilachinthaka.blogspot.com/2009/05/improving-axis2-client-http-transport.html
http://amilachinthaka.blogspot.com/2010/01/improving-axis2-http-transport-client.html
必須在程式的最後加入下面程式碼:
ServiceClient sender = new ServiceClient();
...
if (sender != null) {
try {
//done using the client
//in order to discard any associated resources
sender.cleanupTransport();
} catch (Exception e) {
e.printStackTrace();
}
}
參考文章:
http://amilachinthaka.blogspot.com/2009/05/improving-axis2-client-http-transport.html
http://amilachinthaka.blogspot.com/2010/01/improving-axis2-http-transport-client.html
2011年4月12日 星期二
IMDb Top 100
原來"The Shawshank Redemption"是第一名,那確實是部不錯的電影。
2011年
緩慢的看完Top100吧!
能看完Top 250的人真神!
2011年
緩慢的看完Top100吧!
能看完Top 250的人真神!
IMDb Charts: IMDb Top 100
2011年4月6日 星期三
Tomcat + Axis 安裝QoS
一、安裝準備: (for Windows)
●Tomcat下載:(version 7.0.11)
apache-tomcat-7.0.11
●Axis2:(version 1.5.4)
axis2-1.5.4-bin.zip
axis2-1.5.4-war.zip
axis2-1.5.4-bin.zip
axis2-1.5.4-war.zip
二、環境變數
●Tomcat:
TOMCAT_HOME = apache-tomcat-7.0.11 解壓縮路徑\lib
JAVA_HOME 加入 %TOMCAT_HOME%;
●Axis:
●Tomcat:
TOMCAT_HOME = apache-tomcat-7.0.11 解壓縮路徑\lib
JAVA_HOME 加入 %TOMCAT_HOME%;
●Axis:
AXIS_HOME = axis2-1.5.4-bin 解壓縮路徑\lib
JAVA_HOME 加入 %AXIS_HOME%;
三、安裝步驟
Step1.安裝Tomcat,解壓縮 tomcat 至 %TOMCAT_HOME%
Step2.啟動 %TOMCAT_HOME%\bin\startup.bat,測試http://localhost:8080
Step6.完成
四、發布Web Service:Hello World
Step1.在%TOMCAT_HOME%\wepps\axis2\WEB-INF\services下,創一個Hello資料夾
Step2.建立HelloWorld.java,compiler產生.class
public class HelloWorld
{
public String echo(String str) //提供的Method
{
return str;
}
}
Step3.建立META-INF資料夾,創一個service.xml放在裡面,並將Step2.3的檔案放在Hello下
<service name="Hello" > //service name = 資料夾名稱
<Description>
Hello World Test
</Description>
//parameter name= Class名稱
<parameter name="ServiceClass" locked="false">HelloWorld</parameter>
<messageReceivers>
<messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-only" class="org.apache.axis2.rpc.receivers.RPCInOnlyMessageReceiver" />
<messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out" class="org.apache.axis2.rpc.receivers.RPCMessageReceiver"/>
</messageReceivers>
</service>
Step3.重啟Tomcat,點選Service
Step3.完成
除錯記錄:
1.Error: org.apache.axiom.om.OMException: com.ctc.wstx.exc.WstxParsingException: Unexpected close tag ;
參數tag打錯
Step1.安裝Tomcat,解壓縮 tomcat 至 %TOMCAT_HOME%
Step2.啟動 %TOMCAT_HOME%\bin\startup.bat,測試http://localhost:8080
Step3.解壓縮Axis至%AXIS_HOME%
Step4.解壓縮axis.war至%TOMCAT_HOME%\wepps
Step5.重起Tomcat,wepps下會多一個axis2資料夾,測試http://localhost:8080/axis2
Services -- 觀看已 desploy 的 web services.
Validate -- 確定系統是否缺少 必要的library.
Administration -- axis2 管理控制台.
Validate -- 確定系統是否缺少 必要的library.
Administration -- axis2 管理控制台.
點選 Validate 檢查安裝內容
四、發布Web Service:Hello World
Step1.在%TOMCAT_HOME%\wepps\axis2\WEB-INF\services下,創一個Hello資料夾
Step2.建立HelloWorld.java,compiler產生.class
public class HelloWorld
{
public String echo(String str) //提供的Method
{
return str;
}
}
Step3.建立META-INF資料夾,創一個service.xml放在裡面,並將Step2.3的檔案放在Hello下
<service name="Hello" > //service name = 資料夾名稱
<Description>
Hello World Test
</Description>
//parameter name= Class名稱
<parameter name="ServiceClass" locked="false">HelloWorld</parameter>
<messageReceivers>
<messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-only" class="org.apache.axis2.rpc.receivers.RPCInOnlyMessageReceiver" />
<messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out" class="org.apache.axis2.rpc.receivers.RPCMessageReceiver"/>
</messageReceivers>
</service>
Step3.重啟Tomcat,點選Service
Step3.完成
除錯記錄:
1.Error: org.apache.axiom.om.OMException: com.ctc.wstx.exc.WstxParsingException: Unexpected close tag ;
參數tag打錯
2.Error: org.apache.axis2.deployment.DeploymentException: Invalid service. META-INF directory not found
META-INF資料夾未加入
3.Error: org.apache.axis2.AxisFault: Two services cannot have same name
META-INF/service.xml 的 <service name> 取到相同名字
4.Error: org.apache.axis2.deployment.DeploymentException: The following error occurred during schema generation:
沒有 .class檔
META-INF資料夾未加入
3.Error: org.apache.axis2.AxisFault: Two services cannot have same name
META-INF/service.xml 的 <service name> 取到相同名字
4.Error: org.apache.axis2.deployment.DeploymentException: The following error occurred during schema generation:
沒有 .class檔
訂閱:
文章 (Atom)