摘要: win7 64位下试了好几个其他方式,结果都不行,也就这个可以,记录下来 也许可以这样连接access文件(64位win7系统测试不成功,也不想测试了,感觉微软的东西用32位系统应该可以,这里作为记录,或许以后用得到)如下: 阅读全文
posted @ 2016-04-21 19:36 浊浊然 阅读(1435) 评论(0) 推荐(0) 编辑
摘要: 其他的一些链接需要使用pjax时这么用(不能使用js的跳转,支持a标签,和form): 阅读全文
posted @ 2016-02-29 13:19 浊浊然 阅读(2661) 评论(0) 推荐(0) 编辑
摘要: 使用https://github.com/iamcal/php-emoji添加下面的函数到代码中 function utf8_bytes($cp){ if ($cp > 0x10000){ # 4 bytes return chr... 阅读全文
posted @ 2016-01-20 13:39 浊浊然 阅读(3262) 评论(0) 推荐(0) 编辑
摘要: 安装什么的就略过了,之前已经整理过,这里就说说自己使用中的一些东西,也是初用,记录下(现在使用win10 64位,使用Docker for Windows 直接安装就好[需要专业版win10安装hyper-v,就不需要vbox了],低版本(ps:win7/8)使用Docker Toolbox) 国内 阅读全文
posted @ 2015-12-17 13:20 浊浊然 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-11-11 16:19 浊浊然 阅读(2692) 评论(0) 推荐(0) 编辑
摘要: class obj(object): def __getattribute__(self, *args, **kwargs): # 访问属性就会被调用 print("__getattribute__() is called") return object.__get... 阅读全文
posted @ 2015-11-05 16:07 浊浊然 阅读(148) 评论(0) 推荐(0) 编辑
摘要: create procedure wk()begindeclare i int;set i = 1;while i < 5 doinsert into t (myday) values (date_sub(curdate(),interval -i day));-- select i;set i =... 阅读全文
posted @ 2015-10-29 12:19 浊浊然 阅读(1091) 评论(0) 推荐(0) 编辑
摘要: var body_ = $(window); var indexPage = 2; var pageCount = ; var _ajaxRequest = true; body_.scroll(function... 阅读全文
posted @ 2015-10-28 17:21 浊浊然 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 1.简单的tcp编程流程2.udp使用socket.socket(socket.AF_INET, socket.SOCK_DGRAM)创建socket连接,服务端不需要进行listen操作(无状态) 阅读全文
posted @ 2015-09-29 13:28 浊浊然 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 1、忽略将页面中的数字识别为电话号码2、去掉点击元素会出现蓝框* { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }3、事件问题移动端的常用事件:touchstart,touchmove,touchend。很多时候我们需要在浏览器里测试。... 阅读全文
posted @ 2015-07-29 14:24 浊浊然 阅读(178) 评论(0) 推荐(0) 编辑