2014年7月7日

sublime text2注册码

摘要: ----- BEGIN LICENSE -----Andrew WeberSingle User LicenseEA7E-855605813A03DD 5E4AD9E6 6C0EEB94 BC99798F942194A6 02396E98 E62C9979 4BB979FE91424C9D A454... 阅读全文
posted @ 2014-07-07 01:30 13m0n 阅读(133) 评论(0) 推荐(0) 编辑
2014年6月27日

最小化

摘要: this.WindowState = FormWindowState.Minimized; 阅读全文
posted @ 2014-06-27 16:08 13m0n 阅读(115) 评论(0) 推荐(0) 编辑
2014年6月26日

打开链接(C# / 默认浏览器)

摘要: System.Diagnostics.Process.Start("http://www.baidu.com/"); 阅读全文
posted @ 2014-06-26 18:29 13m0n 阅读(209) 评论(0) 推荐(0) 编辑
2014年6月25日

模拟百度登录

摘要: 除了用户名,密码外,还需要cookie中的BAIDUID,H_PS_PSSID和一个token;最后登陆成功后返回一个BDUSS。以后用BAIDUID,H_PS_PSSID和BDUSS即可。 阅读全文
posted @ 2014-06-25 18:03 13m0n 阅读(186) 评论(0) 推荐(0) 编辑

模拟登陆

摘要: 错误关键字:“the fisrt two args should be string type:0,1!”换到2.0下就能用了 阅读全文
posted @ 2014-06-25 17:33 13m0n 阅读(125) 评论(0) 推荐(0) 编辑
2014年6月23日

对象的思考1

摘要: 一个对象能自己能否作为自己的一个成员?using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApp... 阅读全文
posted @ 2014-06-23 16:09 13m0n 阅读(92) 评论(0) 推荐(0) 编辑
2014年6月15日

第一个php网页

摘要: 1 ";11 //12 mysql_select_db("_blog");13 $query_test="select *from _blog_";14 $result_q=mysql_query($q... 阅读全文
posted @ 2014-06-15 17:24 13m0n 阅读(247) 评论(0) 推荐(0) 编辑
2014年6月14日

php&mysql

摘要: 更新语句 $query='update num set num='.$counter.'where id=1'; ....................这个查询失败 $query='update num set num='.$counter.' where id=1'; update n... 阅读全文
posted @ 2014-06-14 16:27 13m0n 阅读(87) 评论(0) 推荐(0) 编辑
2014年6月12日

python —print

摘要: 今天开始学python了,“装X”安装了最新版本python 3.4.1然后,print “hello world!" 就出错了...一搜原来...python v3.0以后的版本print 改为了print(). 阅读全文
posted @ 2014-06-12 08:18 13m0n 阅读(151) 评论(0) 推荐(0) 编辑
2014年5月29日

实现窗口移动

摘要: #region 实现窗口移动 private bool m_isMouseDown = false; private Point m_mousePos = new Point(); protected override void OnMouseDown(Mo... 阅读全文
posted @ 2014-05-29 07:52 13m0n 阅读(189) 评论(0) 推荐(0) 编辑