`
ytll21
  • 浏览: 15195 次
  • 来自: ...
文章分类
社区版块
存档分类
最新评论
文章列表
原文http://blog.vgod.tw/2010/01/25/change-the-world/ sikuli项目地址http://groups.csail.mit.edu/uid/sikuli/ 看完后再看了一下sikuli,感想就一个字:酷! Change The World! by vgod 之前一直沒機會跟大家分享我在MIT到底在做什麼研究,但拜登上MIT首頁的 ...
为了纪念加班到晚上3点钟,和老外一起找bug的【难忘时光】,特此记下遇到的第一个恶心问题:HTTP 417 Error。这个问题出现在我写的插件中,调用了老外的算税引擎的webservice。在我本地调试成功,可是在客户那里,却出现了HTTP 417 Error的错误。一开始总以为是哪里的数据有问题,是否存在特殊字符导致了webservice解析出错。但是查遍所有数据都没有发现问题。结果还是万能的Google救了我http://social.microsoft.com/Forums/en-US/Offtopic/thread/0bcb2bb4-e7bb-4832-a689-0f78a379754 ...
Blog迁出到appspot上,欢迎大家移步围观。  
简介在很久很久以前。。。人们是这样做乘法的。。。这是一种古老的乘法算法,但是在如今的计算机中却还能发现它的身影。它,就是以俄罗斯农民命名的乘法算法! 原文地址:http://mathforum.org/dr.math/faq/faq.peasant.html   规则:什么是俄罗斯农民乘法?我要怎么使用它?原理:俄罗斯农民乘法的工作原理是什么?联系:俄罗斯农民乘法是如何与二进制相关联的呢?   什么是俄罗斯农民乘法?我要怎么使用它?   我们绝大多数人学的都是这样做大数字乘法的:             86      x  57      ------        602   + 4300  ...
考虑一个计算阶乘n!的算法。很简单,编程的入门练习。 1. 递归实现    LISP代码: (define (factorial n) (if (= n 1) 1 (* n (factorial (- n 1)))))    JAVA代码: public long factorial(int n) { if (n == 1) return 1; else return (n * factorial(n - 1)); } 2. 迭代实现    LISP代 ...
My VS 2005 has some matter so I need to re-install it. But I got an error when I tried to do it. So I tried to uninstall and then install it. But I still got an error when I tried to uninstall VS 2005 by its uninstall program. I googled some website and found some that can help me uninstall VS 2005 ...
After I installed VMWare workstation 6.5 and then installed Windows xp, I could browse internet, but I couldn’t again after I reboot machine. And then I googled and found a way to resolve the problem. edit your /etc/rc.conf (archlinux) and append vmware to deamons. Now it runs OK. Welcome to visit ...
第一步: 将DLL文件解开 ildasm myTest.dll /out:myTest.il 第二步: 将签名合入DLL ilasm myTest.il /res:myTest.res /dll /key:myTest.snk /out:myTestSN.dll 第三步: 检查 sn -vf myTestSN.dll 感谢此文http://social.msdn.microsoft.com/Forums/en-US/clr/thread/35930958-9775-4e56-bd38-0362d124ffc4/作者。 欢迎访问我的博客http://teatime.51vip.biz/b ...
Global site tag (gtag.js) - Google Analytics