上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 34 下一页
摘要: from:http://blog.csdn.net/q383965374/article/details/8509153?reload the author write a grate article推荐阅读:《MongoDB:The Definitive Guide》http://book.douban.com/subject/4746684/ 中文版名《MongoDB权威指导》参考:http://huangz.iteye.com/blog/997120 (对mongodb有详细的介绍)http://henghengdh.iteye.com/blog/1752846(常用命令)http:// 阅读全文
posted @ 2013-05-17 12:08 邓维 阅读(18441) 评论(0) 推荐(1) 编辑
摘要: type this in search textboxis:unreadhttp://article.yeeyan.org/view/135495/131446 阅读全文
posted @ 2013-05-03 21:45 邓维 阅读(515) 评论(0) 推荐(0) 编辑
摘要: str = '{a:2,b:3}'json1 = eval( '(' + str + ')' )console.log json1console.log JSON.parse(str)from:http://snandy.iteye.com/blog/615216 阅读全文
posted @ 2013-05-03 09:45 邓维 阅读(198) 评论(0) 推荐(0) 编辑
摘要: vim 查找字符串出现的次数在所有行中查找 字符串 出现的次数:%s/字符串/&/gn在m和n行之间查找 字符串 出现的次数:m,ns/字符串/&/gn 阅读全文
posted @ 2013-04-26 15:38 邓维 阅读(8905) 评论(0) 推荐(0) 编辑
摘要: java get line number and file namepublic class LineNo { public static int getLineNumber() { return Thread.currentThread().getStackTrace()[2].getLineNumber(); } public static String getFileName() { return Thread.currentThread().getStackTrace()[2].getFileName(); } public static void main(String arg... 阅读全文
posted @ 2013-04-23 13:55 邓维 阅读(329) 评论(0) 推荐(0) 编辑
摘要: 從一個簡單的例子談談package與import機制基本原則:為什麼需要將Java文件和類文件切實安置到其所歸屬之Package所對應的相對路徑下。為什麼要這樣做呢?如果你在程序中,用到打包命令package,並且直接編譯和執行該程序。例如:以下面程序為例:package a.b.c;public class hello{ public static void main(String args[]) { System.out.println("Hello the world!"); }}此程序可以編譯通過,但是執行時,卻提示以下錯誤!david@Wade:~/temp/te 阅读全文
posted @ 2013-04-19 15:03 邓维 阅读(987) 评论(0) 推荐(0) 编辑
摘要: 分词|词性标注|句法分析|时间表达式识别|指代消解|关键词提取 functions are available via web service分词|词性标注|实体名识别 functions are available via clidavid@Wade:~/temp/FudanNLP$ cat scripts.cmd echo "分词实例"java -classpath fudannlp.jar:lib/commons-cli-1.2.jar:lib/trove.jar: edu.fudan.nlp.cn.tag.CWSTagger -s models/seg.m &quo 阅读全文
posted @ 2013-04-19 15:02 邓维 阅读(1334) 评论(0) 推荐(0) 编辑
摘要: http://www.docin.com/p-240321933.htmlhttp://www-nlp.stanford.edu/links/statnlp.htmlhttp://www.cnblogs.com/darry/archive/2012/01/09/2317453.htmlhttp://www.cnblogs.com/darry/archive/2012/04/08/2437588.htmlhttp://www-a2k.is.tokushima-u.ac.jp/member/kita/NLP/nlp_tools.htmlhttp://www-nlp.stanford.edu/lin 阅读全文
posted @ 2013-04-17 19:13 邓维 阅读(211) 评论(0) 推荐(0) 编辑
摘要: see the following reference:http://nltk.org/_modules/nltk/corpus/reader/sinica_treebank.htmlhttp://nltk.org/_modules/nltk/misc/babelfish.htmlhttp://nltk.org/book/ch08.html 8.6Grammar Developmentcreated bysinica.edu.tw 阅读全文
posted @ 2013-04-17 19:11 邓维 阅读(422) 评论(0) 推荐(0) 编辑
摘要: I have already wanna use fudanNLP , while in testing it's result , it comes out errors that I can't solve .Finally, my java knowledge should improve about classpath :linux和Windows下Java命令行的classpathin linux splitter should be : , but not ;this is how I finally run at linux:$mv FudanNLP\ Funct 阅读全文
posted @ 2013-04-17 16:03 邓维 阅读(503) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 34 下一页