01 2013 档案
摘要:在命令行,转到相应.tex文件目录,输入“pdflatex 文件名.tex” 即可编译latex源文件。
阅读全文
摘要:Intouchable (法 2010)杀生(管虎)MerlinDesperate HousewivesPrison BreakFriendsHeroVampire DiariesSex n CityThe SimponsFast and Furious 6(2013)Drive Angry(2011)
阅读全文
摘要:when you start Emacs, it generates two buffers: *Messages*, *scratch*.kill ring:Text that has been killed is not gone forever but is hidden in an area called the kill ring. Only Del and C-d does not go into kill ring.The best way to find out where.emacsresides by default on a particular system is wi
阅读全文
摘要:Add these line to .emacs file under ~/.emcas to set command key as Meta key:;;; I prefer cmd key for meta(setq mac-option-key-is-meta nil mac-command-key-is-meta t mac-command-modifier 'meta mac-option-modifier 'none)Set emacs start in folder when using C-x C-f command:Right click the...
阅读全文
摘要:UTC: Universal Coordinated Time, UTC-5(Cleveland OH), UTC+8(China:东八区)
阅读全文
摘要:C-x C-c: Shut Down;C-g: quit a command (keyboard quit);C-v: next page; M-v: previous page; C-x ]: forward page; C-x [: backward page;C-l: Clear screen and redisplay all the text, moving the text around the cursor to the center of the screen.C-p: previous line; C-n: next line;C-f: forward;C-b:backwar
阅读全文
摘要:Necessity, who is the mother of invention. --PlatoExm01:Data mining turns a large collection of data into knowledge.Data warehouse: data repository architecture.The knowledge discovery process:Data cleaning;Data integration; (these 2 steps resulting in data warehouse)Data selsction;(from ...
阅读全文
摘要:code1 name = ["Jason", "Wade", "Jack", "Mike", "Fade"]2 name.each{ |n|3 if /ade/ =~ n4 puts n5 end6 }
阅读全文