發表文章

目前顯示的是 11月, 2016的文章

Latest

英文、中文 / 諺語、片語、成語、口語對照 (2025.08.25 更新)

做表面功夫 go through the motion 目中無人;自視甚高 have one's nose in the air 有完沒完;別再說了 give it a rest  = can in 兵來將擋,水來土掩 roll with the punches (衍伸至拳擊) = take it as it comes 時間過得好慢。 The day is dragging on. 少臭美了 be full of oneself = Get over yourself! 你真是自以為是。 You are really all about yourself. 你一定找得到的。 You can't miss it. 那還用說。 You're telling me. 物超所值 get more bang for the buck 加把勁 pull one's socks up 出洋相;大吵大鬧 make a scene 風馬牛不相及 be neither here nor there 挖東牆補西牆 rob Peter to pay Paul 我覺得事有蹊蹺。 I smell a rat.  冤冤相報何時了。 Two wrongs don't make a right. 沒魚,蝦也好。 It's not so great, but it'll have to do.  自斷後路 burn one's bridge  這是掛保證的。 You can take it to the bank.  = You can quote me on that. 白手起家 rags-to-riches 放規矩點! Behave youself. = Mind your p's and q's. 悉聽尊便。 Anything you say. = It's up to you. = As you wish. 夠了!(住嘴) Cut it out! = Stop it! 閉嘴! Hold your tongue. = Shut up! 別太挑剔了! Don't be so fussy. 別搞砸了! Don't blow it. 別老叫我做東做西! Don't boss me arou...

gt, lt, nbsp 各自代表的意思

「&gt;」代表「>」 「&lt;」代表「<」 「&nbsp;」代表「 」 gt = greater than lt = less than nbsp = non-breaking space 原來這也是有邏輯的... 我想經常使用英文的人才比較容易懂吧,像我都只能查表或死背,根本都沒想過意思@@ 參考 靠,我真笨!现在刚知道&lt; &gt;是什么意思

R之.last.value

輸入.last.value即可以得到上一次的結果 詳細說明教學有寫: Value of Last Evaluated Expression

R之在函數中設定全域變數

今天上課時講到函數中的區域變數~ 在R裡面我則上網找到直接在函數中設定全域變數~ test <- function () { assign ( "score" , 99 , envir = .GlobalEnv ) } 參考 Global variables in R

我從資料倉儲課程學到的東西

圖片
大概是大二的時候修的~ 資料倉儲與資料庫不一樣的地方在於資料庫存了一堆從以前到現在的資料,而資料庫裡的資料則是會修改的~ 參考 http://140.124.76.70/wordpress/?page_id=151 另外我當時還自己畫了維度表和事實表的圖~

IT業的 Evangelist (2018.06.02 更新)

今天在 Stack Overflow 中看到了 Evangelist 這職稱 使用翻譯查詢後,發現中文為"傳教士" IT業的 Evangelist 感覺就是"技術傳播者"呀 (技術佈道者,技術傳教士好像也不錯) 參考  Evangelist,原來如此

為了專題比賽之第二次引用心流

全國大專院校的比賽迫在眉睫! 大學生涯的第二次引用心流~ 因為專題的簡報需求... 遊戲我來了!!

R language 之 class, mode, str, summary

大四上學期,上了杜老的R語言課~ 以下做了class, str, summary的紀錄~ > mydata [1] "My name is Charlie Chao." [2] "My lab is B329."         [3] "My phone is 09xx-xxx-xxx." > class(mydata) [1] "character" > mode(mydata) [1] "character" > str(mydata)  chr [1:3] "My name is Harry Potter." ... > summary(mydata)    Length     Class      Mode         3 character character