A friend of mine said to me that she could fool those forensic tools easily by changing writing direction in text. I said to her: "Really? Are you sure...don't jump to conclusions too soon...". She showed me two screenshots as below: 1.She used…
Configure Amazon RDS mysql to store Chinese Characters https://dev.mysql.com/doc/refman/5.7/en/charset-applications.html http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charac…
Some of my friends ask me a question: "Does FTK index search support regular expression?" They just participated in FTK Bootcamp last month, and they're trying to spend more time with FTK now. The answer is "Yes". FTK index search supp…
My friend is working on some case, and she looks not in the mood. I ask her what's going on. She wants me to look at the screenshot as below. That's why she is upset...IEF could not decode Chinese character in IE history well, so the filenames in Chi…
Convert Chinese strings to English strings Apply pinyin4j.jar public static class ConvertChineseToPinyin { public static String getPingYin(String src) { char[] t1 = null; t1 = src.toCharArray(); String[] t2 = new String[t1.length]; HanyuP…
Solution for automatic update of Chinese word segmentation full-text index in NEO4J 1. Sample data 2. Differences between English and Chinese Full-Text Indexes 1. Create NEO4J default index 2. Delete Index 3. Create an index that supports Chinese wor…
LCMapStringEx: http://msdn.microsoft.com/en-us/library/windows/desktop/dd318702(v=vs.85).aspx For a locale specified by name, maps an input character string to another using a specified transformation, or generates a sort key for the input string. 也就…
1.list can hold arbitrary objects and can expand dynamically as new items are added. A list is an ordered set of items. 2.A tuple is an immutable list. A tuple can not be changed in any way once it is created. 3.A set is an unordered “bag” of…
http://v.youku.com/v_show/id_XNTY3NTAwOTA4.html?firsttime=179 Novak, very congradutlations, to reach semifinals , single-handed it's dfficult to play one handed-backhand what is your favourite shots? single hand nowadays, it was the case ,…
Reading List List of reading lists and survey papers: Books Deep Learning, Yoshua Bengio, Ian Goodfellow, Aaron Courville, MIT Press, In preparation. Review Papers Representation Learning: A Review and New Perspectives, Yoshua Bengio, Aaron Courville…
Preface Today,I'm gonna say something what is related with the character set in Oracle database,the scenarios in changing character set from UTF8 to ZHS16GBK and the contra way as well. It' not recommended to modify character set in Oracl…
Idiomatic Phrases Game Tom is playing a game called Idiomatic Phrases Game. An idiom consists of several Chinese characters and has a certain meaning. This game will give Tom two idioms. He should build a list of idioms and the list starts and ends w…
Idiomatic Phrases Game Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 4000 Accepted Submission(s): 1363 Problem Description Tom is playing a game called Idiomatic Phrases Game. An idiom cons…
1. 解析主函数cut Jieba分词包的主函数在jieba文件夹下的__init__.py中,在这个py文件中有个cut的函数,这个就是控制着整个jieba分词包的主函数. cut函数的定义如下:def cut(sentence,cut_all=False,HMM=True): 其给出的官方注释为: '''The main function that segments an entire sentence that contains Chinese characters i…
Tom is playing a game called Idiomatic Phrases Game. An idiom consists of several Chinese characters and has a certain meaning. This game will give Tom two idioms. He should build a list of idioms and the list starts and ends with the two given idiom…
这个系列是,基础学习系列的最后一部分,这里,我打算翻译一篇国外的技术文章结束这个基础部分的学习:后面打算继续写深入学习MVC系列的文章,之所以要写博客,我个人觉得,做技术的,首先得要懂得分享,说不定你自己以为正确的东西,存在瑕疵,分享出来,大家也可以互相进步.这样整个生态圈也会越来越好.不是么? 好了,闲话扯远了,下面开始正题吧,一下是英文和中文对照,翻译的不好,请见谅. This article introduces how to improve ASP.NET MVC Applicati…
最近在做一个发邮件的功能,客户要求需要导出一个Excel附件,并给了附件的格式, eg: Last Name 姓 First Name 名 Chinese Characters汉字书写(仅大陆人填写) 实现方式有两种: 一.使用Microsoft.Office.Interop.Excel组件的方式 二.使用NPOI的方式 下面讲一下这两种方式的具体实现: 一.使用Microsoft.Office.Interop.Excel组件的方式 该方式需要引入Microsoft.Office.I…
各网友提交的 QC: 官方网址 说明 备注 https://quality.embarcadero.com/browse/RSP-12985 iOS device cannot use indy idHTTP read a web page content using zlib compression https://quality.embarcadero.com/browse/RSP-13018 input special unicode Chinese character in TEdi…
Source: http://www.liaoxuefeng.com/ ❤ Escape character: '\' - '\n': newline; - '\t': tab; - '\\': \; - r'...': no transferring for contents within single quotes; - '''...''': multiple lines within triple quotes: could start a new line with ENTER dire…