Code Hunt

开始的结束与结束的开始。

据说微软2016编程之美(http://studentclub.msra.cn/bop2016/,报名截止4月23日)初赛将会使用 Code Hunt 平台进行。于是我花了两天的时间试了一下。

网上有人说需要翻墙。但之前使用教育网访问是没有问题的,不过建议使用 Chrome 浏览器,IE略卡。

Zone: BOP 2016 Test

题型比较基础,但入手比较费时间。顺带一提,LINQ大法好。 Continue reading “Code Hunt”

使用控制台访问百度贴吧

https://github.com/CXuesong/PrettyBots

去年写的代码,一直没上传。总之就是想给百度做个接口——虽然最后只做了一个贴吧的。后来,在这个接口的基础上,写了一个简易的贴吧控制台程序。(其实,如果不是上课压力重,估计百度控制台程序就能出来了……)

不过……说实话,用控制台封禁水军感觉还是很爽的(piiiia)
Continue reading “使用控制台访问百度贴吧”

不要持久化 HashCode

如下所示

#if DEBUG
                    // We want to ensure we can change our hash function daily.
                    // This is perfectly fine as long as you don't persist the
                    // value from GetHashCode to disk or count on String A 
                    // hashing before string B.  Those are bugs in your code.
                    hash1 ^= ThisAssembly.DailyBuildNumber;
#endif
                    return hash1 + (hash2 * 1566083941);

Coursera Machine Learning Ex.6 2.5: Try your own emails

ml-spam-test-4
可能是 PowerWorld 的邮件内容太短了……
>> ex6_predictonly
键入需要检查的文件名[testMail.txt]:

==== Processed Email ====

do not repli to thi messag thi is an automat gener email thank you for your 
interest in powerworld simul number educ evalu edit click here to be redirect 
to the download site if the abov link doe not work pleas copi and past the 
follow into your browser httpaddr 

=========================

Processed testMail.txt

Spam Classification: 1
(1: 垃圾邮件, 0: 正常邮件)

Continue reading “Coursera Machine Learning Ex.6 2.5: Try your own emails”

用 Xamarin 写了个小应用

免责声明:如果你选择下载并使用此程序,则表明你已经认识到并且可以接受因程序编写不当或是其他不可抗力造成的人身财产损失。

下载地址: https://raw.githubusercontent.com/CXuesong/Highledge/master/App2/v10/com.cxuesong.thisisatest.App2.apk

简而言之,这是一个适用于西安交通大学莘莘学子的校园卡充值程序,通过将电脑板的网页包装起来,解决了手机在线圈存时可能遇到的各种坑。个人精力有限,目前仅推出 Android 版本。
Continue reading “用 Xamarin 写了个小应用”

Content is available under CC BY-SA 3.0 unless otherwise noted.