Skip to main content

Posts

Showing posts from 2009

MySQL :: Connector/J 5.1 -> Database driver you need to connect to MySQL Database Server using Java (JDBC)

MySQL :: Connector/J 5.1 Download “Source and Binaries (zip)” or “Source and Binaries (tar.gz)”. Decompress (unzip) the archive file. Include the .jar file in your library path. (Maybe you have IDE like netbeans or eclipse) Write you code. (Some Sample Code : http://aventurineyao.blogspot.com/2009/12/check-if-there-are-some-records-in.html )

Check if there are some records in ResultSet return from MySQL Database using Java

import java.sql.*; import java.util.*; import java.sql.DriverManager; // return true if some records satisfy the condition, otherwase, false. public Boolean IsExifPhotoIdTimeLongitudeLatitude( String photoId, String time, String longitude, String latitude ){ Connection con = null ; String url = " "; String driver = " "; Statement stmt = null ; String query = " "; // your database table name String targetSheet = " db_table_name "; ResultSet result = null ; Boolean hasRecord = false ; // your query query = " SELECT * FROM ` "+ targetSheet +" ` WHERE photoId=' " + photoId + " ' AND time=' " + time + " ' AND longitude=' " + longitude + " ' AND latitude=' " + latitude + " ' "; try { // connect to mysql database url = " jdbc:mysql://127.0.0.1:3306/database_name "; driver = " com.mysql.jdbc.Driver "; p = new Pro

Reporting TOEFL iBT Scores - College Confidential

From Reporting TOEFL iBT Scores - College Confidential : "10-08-2007, 11:20 AM #3 b@r!um Senior Member Join Date: Aug 2006 Posts: 4,239 I have been under the impression that the 'additional paper candidate score report' is intended for the personal use of the test taker whereas the 'additional score report' is meant for colleges. Anyways, I selected the 'additional score reports' and it worked just fine" ----------------------------------------- So, I think I can just select the 'additional score reports' for the university.

徵才: 專任研究助理

職稱: 專任研究助理 應徵資格/條件: 大學以上資訊或電機相關科系畢業 首次就業之大專及碩士畢業生或具工作經驗之待業人員 (係指聘任前為勞保中斷投保狀態者,若屬轉業者, 不屬本計畫所稱待業人員) 對於Complex Event Processing, Activity Recognition、Machine Learning、Data Mining、Context Awareness、Sensor Data Processing 任一相關研究有興趣 組織力強、認真負責、有創意、具獨立規劃、團隊合作、 及執行專案能力 能獨立撰寫研究報告及發表論文 對學術研究具有熱忱,勇於面對挑戰,願意學習新技術 正面思考、EQ佳、溝通協調能力良好,能承受工作壓力 具上列任一條件者,均歡迎 工作經驗:不拘 (有相關研究經驗者優先考慮) 工作內容: 參與智慧生活之環境與行為感知技術研究 參與定期進度報告會議 製作計畫需求之文件、成果報告 工作待遇:依照經濟部學研聯合計畫支薪標準 工作地點:台北市大安區 或 台北市南港區 應徵方式: 請將個人學經歷資料、聯絡方式email 至 yjchen@iis.sinica.edu.tw 陳彥任 先生 02 2788-3799 x 2351

Flashget on Mac : Folx

Downloader for Mac OS X - Free Internet download manager for Mac : Folx 開始用 Mac 後,一直很不習慣的就是沒有好用的 flashget (續傳軟體),尤其是一個網頁上有很多檔案的 link 要處理的時候也很麻煩。 後來找到了 Folx ,使用過後覺得不錯,滿像 flashget 的,大家可以試試看!!!

Mount Network Drive as Folder on Mac

Macfusion: The world in your Finder 想把 ftp, sftp server 當做 netdrive 網路硬碟來用,在 Windows 上有 Netdrive 可以用,會自動整合到 Explorer 檔案總管內變成資料夾。 在 mac 上可以用 macfuse + Macfusion 來達到近似的功能。 雖然似乎還沒辦法做到開機自動登入且加到 Finder 的 sidebar 當中,但是存取是沒有問題的。

Auto Redirect HTML

Example of an index.html that redirects the browser to the specified url. <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > <html xmlns=" http://www.w3.org/1999/xhtml" > <head> <title></title> <meta http-equiv="refresh" content="0;url= http://YourURL " /> </head> <body></body> </html>

Compute Running (Execution) Time or Time Difference in C#

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CalculateTimeDifference { class Program { static void Main( string [] args) { string result; // start time of this program DateTime dStart = DateTime.Now; result = string .Format(" Start: Year:{0}, Month:{1}, Day:{2}, Hour:{3}, Minute:{4}, Second:{5}, Millisecond:{6}, In Ticks:{7} ", dStart.Year, dStart.Month, dStart.Day, dStart.Hour, dStart.Minute, dStart.Second,dStart.Millisecond, dStart.Ticks); Console.WriteLine(result); Console.ReadLine(); // wait until you press enter // end time of this program DateTime dEnd = DateTime.Now; result = string .Format(" End : Year:{0}, Month:{1}, Day:{2}, Hour:{3}, Minute:{4}, Second:{5}, Millisecond:{6}, In Ticks:{7} ", dStart.Year, dStart.Month, dEnd.Day, dEnd.Hour, dEnd.Minute, dEnd.Second, dEn

Avoid timeout limit of execution time in php

When uploading data into MySQL through phpmyadmin exceed the timeout limit, you can edit the setting to avoid it. In .\phpmyadminXXX\libraries\config.default.php /** * maximum execution time in seconds (0 for no limit) * * @global integer $cfg['ExecTimeLimit'] */ //$cfg['ExecTimeLimit'] = 300; $cfg['ExecTimeLimit'] = 0; Setting $cfg['ExecTimeLimit'] equal to zero means no limit of execution time.

Read text file using C#’s StreamReader

1: using System; 2: using System.Collections.Generic; 3: using System.Linq; 4: using System.Text; 5: using System.IO; 6: 7: namespace ConsoleApplication1 8: { 9: class Program 10: { 11: static void Main( string [] args) 12: { 13: // text file to read 14: string fileName = " YourFileName.extension "; 15: StreamReader sr = new StreamReader(fileName, Encoding.Default); 16: string tempS = " "; 17: while (sr.EndOfStream != true ) 18: { 19: // read a line a time 20: tempS = sr.ReadLine(); 21: // print each line on console 22: Console.Out.WriteLine(tempS); 23: } 24: } 25: } 26: }

Using global variable in Python

1: # two global variable 2: myMin = 360.0 3: myMax = 0.0 4: 5: def MyStatistics( fileName ) : 6: myFile = open (fileName) 7: strList = myFile.readlines() 8: 9: # Specify that these two are global variable 10: global myMin 11: global myMax 12: 13: for str in strList : 14: myFloat = float(str) 15: if ( myFloat > myMax ): 16: myMax = myFloat 17: 18: if ( myFloat < myMin ): 19: myMin = myFloat 20: 21: # a file with number seperate '\n' 22: MyStatistics(FileWithFloat) 23: 24: print 'myMin = %s' % (myMin) 25: print 'myMax = %s' % (myMax)

Google Docs: Download GM Script (Google Docs Backup Tool) by Peter Shafer

Tools to backup all your documents on Google Docs, including doc, ppt, xls, and pdf,  to your hard drive in an easy way. Install DownThemAll , a firefox add-on. Install Greasemonkey , a firefox add-on. Install Goole Docs: Download (Greasemonkey Script) , a greasemonkey script run on firefox. Login to your Googld Docs page. Select all the documents you want to backup. There will be a new item on the right side of the toolbar of Google Docs. (See picture) Choose the option and back up all your documents.You will be redirect to a page that list all the files. (See picture) Start “DownloadAll” to download the files. (See picture) Choose the output folder on local hard drive and set your filter (ex. All files), then press “Start” to backup all your files. (See picture)   Original Project and Tutorials : Google Docs: Download GM Script by Peter Shafer

長時間使用電腦 眼科醫生建議 @ bluespace :: 痞客邦 PIXNET ::

總之,眼科專家建議用以下的設定: 桌面->右鍵->內容->外觀->進階 ->項目選擇(視窗)、    顏色1(L)    選擇(其它)                將色調改為:85。                飽和度(濃度):123。                亮度:205 長時間使用電腦 眼科醫生建議 @ bluespace :: 痞客邦 PIXNET ::

Word 2007 即時翻譯 - 閱讀版面配置模式

在 Word 2007檢視英文文件時,不需要其他軟體就可以擁有即時翻譯的功能。 1.選擇檢視->閱讀版面配置   2. 將滑鼠游標移到想查翻譯的字上(例如 biological),即可看到即時翻譯。

home-cooked from Give Me 10 - 英語學習 Blog

這是在 Give Me 10 英語學習 Blog 上查到關於 home-cooked 的解釋 home-cooked ; home cooking ; homemade ; homegrown 2008-12-05 20:18:16 home-cooked跟 home cooking我們可以來做一個區分,home cooking是一個名詞片語表示在家裡烹飪的食物,比如說 Nothing beats my mom's home cooking.沒有任何東西可以比我媽媽煮的菜還要好吃; home-cooked是一個複合形容詞,表示在家煮的,比如說 I prefer a home-cooked meal to a meal in a... 原文 : Give Me 10 - 英語學習 Blog

twittervision

這是個以地圖方式呈現 twitter 這種 microblog 的服務,可以看到世界各地的人們在 twitter 上說的話,而且是一次一句,讓你跟著地圖跑來跑去看到世界各地發生的事情。 twittervision

Install windows drivers on macbook

在 macbook 上安裝 Windows XP 的方法 在 OS X 內用 bootcamp 把要灌 windows 的硬碟割出來(可選擇區塊大小)。 割完後放入 windows xp 光碟,在 bootcamp 選 start installer。 開始灌 windows xp 記得選你割出來的那塊硬碟,通常是 C disk。 灌好後,重開機時按住 Alt,從灌 windows 的那塊硬碟 boot 。 接下來又是正常的灌 windows 程序。 安裝完成進入 windows 後,放入 OS X 那片光碟,依照指示即可完成 driver 的安裝。 bootcamp 參考連結 : Apple - Mac OS X Leopard - Features - Boot Camp

2009.03.04 New Words

relief    n. 緩和, 救濟 great relief    如釋重負 temporary relief    暫時舒緩 humanitarian relef    人道救援 bring relief    帶來舒緩 provide sb. with relief    帶來舒緩, 提供救援 a sigh of relief    鬆了一口氣

2009.03.03 New Words

collaborate        v.        合作        physician        n.        (內科)醫生        resemble        v.        像        Netherlands        n.        荷蘭        Amsterdam        n.        阿姆斯特丹        brainchild        n.        創意        創作 exterior        n.        外表        外貌 torso        n.        軀幹        aural        adj.        聽覺的        tactile        adj.        觸覺的          taste bud        n. 味蕾   incorporate A into B        把 A 融入/結合 B   figure        n. 外型; 人物; 數量(常用複數) slender figure        苗條身材 key figure        關鍵人物 accurate figures        準確的數字 keep sb.'s figure        保持身材 lose sb.'s figure        身材走樣 reach ... figures        達到某個數目

2009.03.02 New Words

cultivate        v. 培養, 建立 reputable        adj. 聲譽好的 accommodation        n. 住處 testimony        n. 證明 episodic    adj. 偶然發生的   immerse oneself in sth.        融入 ..., 沉浸於... simply put        簡單來說   spirit        n. 精神; 情緒; 態度; 勇氣 right/wrong spirit        正確/錯誤的態度 festive spirit        歡樂氣氛 keep sb.'s spirit up        提振某人的士氣 display / show spirit        展現勇氣 in high / low spirits        情緒高昂 / 低落 broken in spirit        鬥志盡失

2009.02.19 New Words

fantasy    n. 幻想, 奇幻 compel    v. 使不得不, 強迫 enviable    adj. 引起嫉妒的 life-size    adj. 與實物一樣大小的   stand guard    站崗, 看守 Ghibli Museum    吉卜力美術館 Inokashira Park    井之頭恩賜公園   bel-, bene-, bon- = good, beautiful    好的, 美麗的 belle    n. 美女 embellish    v. 美化 benediction    n. (宗教的)祝福 beneficiary    n. 受益人   bi- = two    二 biennial    n. adj. 兩年一次(的) bigamy    n. 重婚 bipartisan    adj. 跨黨派的 biped    n. 雙足動物的

What is your website worth? Let's find out

這是個很有趣的網站,他會幫你輸入的網址計算價值喔!!! 把自己的 Blog 輸進去測試了一下,還滿滿意的,哈哈 ^_^ This website is worth What is your website worth? 網址:    What is your website worth? Let's find out

2009.02.18 New Words

lifelong    adj. 畢生的, 一輩子的 prominently    adj. 顯著地, 重要地 aviation    n. 飛行(術) charm    v. 吸引   ante-, anti- = before 在 ... 之前 antecedent    n. 先行詞 antebellum    a. 戰前的 ante meridiem    午前(A.M.) anteroom    n. 會客室, 接待室 anticipate    v. 預期, 預料   anti- = against 反對 Antarctic    n. 南極洲                  a. 南極的 antidote    n. 解毒劑 antipathy    n. 反感 antisocial    a. 反社會的, 不擅社交的

2009.02.17 New Words

nurture    v. 培養 legislation    n. 法令, 法規 integrity    n. 完整 safeguard    v. 保護, 防衛   accuse sb. of sth./V-ing    指控某人做了某事 come into force    生效   ad- = to, toward 向前 admonish v. 警告, 勸戒 affectation n. 做作, 虛假 alleviate v. 減輕, 緩和   ambi-, amphi- = around, both 周圍, 兩者 ambiance n. 環境 ambivalent a. 矛盾的; 不知取捨的 amphibian n. 兩棲類                 adj. 兩棲的 amphitheater n. 圓形劇場

2009.02.16 New Words

fossil    n. 化石 destruction    n. 破壞 oddity    n. 奇特; 怪人,怪事 scorpions    n. 蠍子 clotting    n. 凝結成塊 pharmaceutical    adj. 製藥的 vaccine    n. 疫苗 habitat    n. 棲息地   horseshoe crab    鱟

2009.02.13 New Words

traitor    n. 叛徒 condemn    v. 譴責, 責備 pagan    adj. 異教的 patriarchal    adj. 父系的, 父權的   Last Supper    最後的晚餐 Judas    猶大 lunar calendar    陰曆 Norse    n. 北歐的 Freya    弗雷亞,北歐神話中掌管愛與美的女神   may well do sth.    大概, 或許

2009.02.09 New Words

ransom    n. 贖金 hostage    n. 人質 crew    n. 全體船員 curb    v. 遏止 pygmy    n. 侏儒 tarsier    n. 眼鏡猴 Indonesian    adj. 印尼的 primate    n. 靈長類動物   NATO    北大西洋公約組織(The North Atlantic Treaty Organization)

2009.02.06 New Words

exposition    n. 說明文 overuse    v. 過度使用 release    v. 排放 temperature    n. 溫度 emission    n. 放射物, 排放物   harmful gas    有毒氣體 oil shortage    石油短缺 climate change    氣候改變 ice caps melting    冰帽融化 regular habit    規律的習慣 planet's survival    地球的存續 carbon dioxide    二氧化碳 public transport/transportation    大眾運輸 public opinion    輿論   unplug chargers    拔掉充電器 take public transport    搭乘大眾交通工具 ride a scooter    其小綿羊機車   most importantly    最重要的是 furthermore    此外 in terrible shape    環境惡劣 environmentally friendly    環保的   make it clear what/that    清楚說明 in terms of ...    以 ... 的觀點

2009.02.05 New Words

gallery    n. 藝廊, 美術館 revival    n. 再度流行; 復甦 whereas    conj. 反之, 反而 Madonna    聖母瑪利亞 anamorphism    n. 合成變質 skyscraper    n. 摩天大樓 tripod    n. 三腳架 deception    n. 欺騙, 詭計 suppose    v. 假定; 猜想 conceive    v. 構想; 想像   wow    v. 博取稱讚           n. 轟動一時的成功 boo    v. 發出噓聲           n. 噓聲 drawback    n. 缺點; 缺陷; 缺失 = shortcoming = disadvantage = weakness = defect medium    n. 媒介; 媒體 (複數為 media) medium    media crisis    crises analysis    analyses phenomenon    phenomena focus    foci fungus    fungi   follow in sb's footsteps    跟隨某人的腳步, 克紹箕裘 in miniature    縮小地, 小規模地 marvel at sth.    驚嘆於 sb's take on sth.    對某事物的看法 / 觀點 be meant to + V 注定; 用意是 ... deserve / take / claim (the) credit for ...    應得 / 得到 / 宣稱有功勞或榮譽 wash sth. away    沖刷; 洗刷   an average of ...    平均 ...     on average    平均而言     above / below average    平均之上 / 下 back and forth    來來回回     = to and f

2009.02.04 New Words

involuntary    adj. 不受意志控制的, 不由自主的 blush    v. 臉紅 disclose    v. 透露, 揭露 wrongdoing    n. 做錯事, 罪行 conceal    v. 隱藏, 隱瞞 immerse    v. 使浸沒 disapprove    v. 不贊成, 不同意 spontaneous    adj. 自發的 indispensable    adj. 必需的, 不可缺少的   mainly focus on    主要集中於 except for    除了 ... 之外 rather than    並非 inclusive of    包括 face the music    認錯受罰; 勇於面對現實 make believe    假裝 know the ropes    知道 ... 的訣竅   plat it cool    故作鎮定     play it safe    謹慎行事, 穩紮穩打     play dead    裝死     play dumb    裝笨 self-conscious    adj. 不自然的; 怕難為情的     subconscious    潛意識的     fashion-conscious    講究時髦的     health-conscious    有健康意識的     environmentally-conscious    有環保意識的 cool     (as) cool as a cucumber    十分鎮靜     keep a cool head    保持頭腦冷靜     cool down    冷靜下來; 冷卻下來     lose sb's cool    失去自制而激動起來 around    大約     over    超過     amid    在 ... 當中     among    在 ... 之間, 在 ... 之中

2009.02.03 New Words

pomp    n. 華麗; 壯觀; (典禮的)盛況 bombast    n. 大話 monumental    adj. 紀念性的, 不朽的 accede    v. 同意 cumulative    adj. 漸增的, 累計的 gestation    n. 孕育, 構思 intricacy    n. 錯綜複雜的事物 jolt    n. 震驚; 令人震驚的事 unclog    v. 使暢通 artery    n. 幹道 frivolous    adj. 無聊的, 瑣碎的 brisk    adj. 活躍的; 輕快的 veteran    n. 老手; 經驗豐富的人 rummage    v. 仔細搜查 fastidious    adj. 難取悅的; 挑剔的

2009.02.02 New Words

solemnly    adv. 莊嚴地; 正式地 swear    v. 宣誓 cathartic    adj. 淨化的 diorama    n. 西洋鏡 polychromatic    adj. 色彩變化的 cadences    n. 抑揚頓挫 address    n. 演說,致詞 giddiness    n. 暈眩;眼花;輕浮 breathtaking    adj. 激動人心的 liberality    n. 心胸開闊 fare    v. 過活;遭遇;進展 mangle    v. 亂撕 oath    n. 宣誓 bumpy    adj. 崎嶇不平的 benighted    adj. 愚昧的 tenure    n. 任期 catchphrase    n. 引人注意的話 vibrant    adj. 充滿生氣的 unflinching    adj. 不畏縮的,堅定的 heralded    v. 預示 ... 的來臨 prudent    adj. 審慎的, 小心的 wage    n. 薪水    paean    n. 讚頌歌, 歡樂歌 unalloyed    adj. 純粹的, 真正的 prosper    v. 使繁榮, 使成功 prosperous    adj. 繁榮的, 富足的 summon    v. 召喚, 請求 foreclose    v. 取消贖回權 piled    v. 堆積, 累積 zingers    n. 有力的反駁, 精神抖擻的人, 不尋常的事物 denounce    v. 譴責, 指控, 通告廢除(終止) defiant    adj. 蔑視的, 大膽的, 目空一切的 resolute    adj. 果敢的, 堅定的 suffuse    v. 充滿, 遍佈 sobriety    n. 清醒, 冷靜, 嚴肅 slaughtering    adj. 好殺戮的 outlast    v. 叫 ... 持久, 比 ... 命長 gaseous    adj. 氣體的, 氣體狀態的 oratory    n. 演講術 preternatu

2009.02.01 New Words

flinty    adj. 堅定不移的 granular    adj. 粒狀的 realism    n. 寫實主義(文藝創作) draftsman    n. 製圖者; 起草者 boisterous    adj. 愛鬧的; 喧鬧的 demanding    adj. 高要求的; 苛求的 knack    n. 本領; 熟練技巧; 訣竅 insinuation    n. 影射; 含蓄的批評 spareness    n. 缺乏; 不足 rectitude    n. 正直; 公正 inwardness    n. 本質, 精神 prelapsarian    adj. 墮落前的,(尤指 Adam 和 Eve 犯罪導致)人類墮落前的。 predating    adj. 日期上較早的 splay        v. 張開 citadel    n. 城堡; 堡壘 canon    n. (公認的)重要作家、作品 barrister    n. 律師 inept    adj. 不適當地, 無能的 blustery    adj. 吵鬧的; 狂暴的 homespun    adj. 簡樸的, 普通的 eloquent    adj. 雄辯的, 有說服力的 obscenity    n. 猥褻的言語, 令人髮指的事 tart    adj. 尖酸的, 刻薄的 scrappy    adj. 好鬥的; 愛打架的 episode    n. 連續劇的一齣(或一集) termer    n. 服刑者 feudal adj. 封建時代的 oppression    n.壓迫, 壓制

2009.01.31 New Words

ditch    v. 水上迫降 en route    v. 在途中 hurl    v. 猛力投擲 asylum    n. 政治庇護 indigenous    n. 土著的 aboriginal    adj. 土著居民的 mastermind    n. 才華橫溢的人; 策劃者; 智囊 interrogate    v. 審問; 質問 understatement    n. 不充分的陳述; 保守的陳述 padded    adj. 有裝填材料的 trousers    n. 褲子; 長褲

2009.01.09 New Words

unload    v. 擺脫; 去掉 clutter    n. 雜物 purge    v. 使淨化; 清除 scaled-down    adj. 縮小的 tremendous    adj. 極大的; 巨大的 off    adv. 消除; 去除   rat race    無止境的競爭、追逐 out of    因為; 由於; 出於     as a result of, due to, because of

2009.01.07 New Words

bombard    v. 不斷勸說、質問; 轟炸 discipline    n. 紀律 gratification    n. 滿足; 滿意 lease    v. 租賃; 租 contributing    adj. 部份的 culprit    n. 罪犯   cut back    削減; 減少 hammer home    反覆說明; 強迫灌輸 kick in    啟動; 起作用 economies of scale    規模經濟 beyond one's means    付不起

2009.01.06 New Words

spree    n. 無節制的行為; 狂歡做樂 foreclose    v. 查封; 取消贖回權 spike    n. 統計圖表上的高峰 crack    n. 純古柯鹼 charge    v. 賒帳; 記在帳上   take on    承受; 承擔 save for a rainy day    未雨綢繆

2009.01.02 New Words

antihero    n. 非正統主角; 反英雄 rebellion    n. 叛逆 slate    v. 批評; 抨擊 mumble    v. 含糊地說話; 咕噥 sarcastically    adv. 諷刺地; 挖苦地 retiring    adj. 靦腆的; 謙讓的; 退縮的 well-liked    adj. 受人喜愛的 bully    v. 欺侮; 恃強凌弱; 霸凌 showbiz    n. 演藝圈; 娛樂界 low-profile    adj. 低調的 tight-lipped    adj. 閉嘴的; 守口如瓶的 paparazzi    n. 狗仔隊; 專門偷拍名人的攝影師 story    n. 層; 樓 abusive    adj. 暴虐的; 虐待的 jilt    v. 拋棄(情人) foul    adj. 骯髒的; 下流的 reputed    adj. 出名的 think tank    n. 智庫; 智囊團 glowing    adj. 光彩的; 鮮艷的 steamroller    v. (口語)仗勢欺壓對方; 壓垮   despite oneself    不由自主 can't help V-ing    無法不; 不能不 live up to    達到; 符合; 遵循 live it up    盡情享受生活 live down    使人忘記自己的過失

2009.01.01 New Words

tap    v. 指派; 委任 bailout    n. 金融援助; 紓困     [v.] bail out mortgage    n. 抵押 predecessor    n. 前任; 前人 plunge    v. 陡降; 驟跌 assets    n. 資產; 財產 rally    v. 集合; 召集 summit    n. 高峰會議 front    n. 掩護; 掩護者 ousted    adj. 被驅逐的; 被趕走的 ranch    n. 牧場 siege    n. 圍攻; 包圍; 圍城 standstill    n. 停止; 停頓; 停滯 stagnate    v. 沈滯; 淤塞   bring to a standstill    使......停擺