摘要: 安装问题 dll 丢失 今天手贱升级了win10,重新安装了一下php的套件,提示有几个组件找不到,其中有一个msvcr100.dll丢失。 google了一下: youtube视频: "Windows 10 Wamp Server Error of Missing MSVCR110 dll" dl 阅读全文
posted @ 2016-12-25 17:53 码不能停 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 分类类型,层级 wp中的分类、文章类型(post,page,video,image)、标签、自定义分类、自定义标签都是分类形式。有些分类是有层级关系,有些没有。如图: taxonomy分类(category栏目,custom toxonomy自定义分类)表示抽象的分类方式,需要落实到具体的分类项te 阅读全文
posted @ 2016-12-18 22:54 码不能停 阅读(417) 评论(0) 推荐(0) 编辑
摘要: "官方文档" 无插件移除url中category 目录前缀 + 设置 固定链接,设置固定链接为自定义为: 或者 + 在可选 分类目录前缀 设置为 :. 阅读全文
posted @ 2016-12-18 22:01 码不能停 阅读(164) 评论(0) 推荐(0) 编辑
摘要: join on and vs join on where count( ) vs sum() Oracle下: count( )会统计所有不为空的行数,count( ) for the not null count。 sum(null)不做汇总,sum(0)输出为0 SQL中= null与is nu 阅读全文
posted @ 2016-12-11 18:49 码不能停 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 获取sheet 有效效值行列数 获取单个单元格的值 方式1 方式2 获取区域单元格的值 阅读全文
posted @ 2016-12-11 17:38 码不能停 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 参考资料 "MDN Layout" "学习CSS布局" "清除浮动(clearfix hack)" "The very latest clearfix reloaded" "解读浮动闭合最佳方案:clearfix" "What methods of ‘clearfix’ can I use?" 方式 阅读全文
posted @ 2016-12-09 10:45 码不能停 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 视频教程 "Oracle DBA数据库高级工程师职业学习指南与职业规划视频课程" 阅读全文
posted @ 2016-12-06 11:34 码不能停 阅读(101) 评论(0) 推荐(0) 编辑
摘要: "https://facebook.github.io/react/" A JAVASCRIPT LIBRARY FOR BUILDING USER INTERFACES Declarative views make your code more predictable and easier to 阅读全文
posted @ 2016-12-02 11:38 码不能停 阅读(120) 评论(0) 推荐(0) 编辑
摘要: empty(trim($str))报错原因 一个if判断如下: 报出如下错误: 如下形式则不报错误 经过查询php手册,发现两个函数的使用方法为: 错误就出现在这里了,原来empty()接收的是参数是一个变量,而trim()返回值为字符串,所以报错 Note: 在 PHP 5.5 之前,empty( 阅读全文
posted @ 2016-11-28 01:52 码不能停 阅读(194) 评论(0) 推荐(0) 编辑
摘要: RPC failed; 解决: 应该是pull 内容更新太多,需要设置postBuffer更大些,具体看上面的链接 "https://segmentfault.com/q/1010000002221288" 阅读全文
posted @ 2016-11-28 01:47 码不能停 阅读(1403) 评论(0) 推荐(0) 编辑
摘要: 文档 http://tiddlywiki.com/ http://web.nlhs.tyc.edu.tw/~lss/wiki/TiddlyWikiTutorialTW.html https://sites.google.com/site/tiddlywikizh/Home/guide 阅读全文
posted @ 2016-11-21 14:51 码不能停 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 分页 首先,配置 前端输出 样式美化,这里以bootstrap pagination为例子,在config目录下添加pagination.php的配置 需要用的配置项: $config['suffix'] = ''; 给路径添加一个自定义后缀,后缀位于偏移段的后面。 防止静态文件被跳转 阅读全文
posted @ 2016-11-17 12:59 码不能停 阅读(167) 评论(0) 推荐(0) 编辑
摘要: "IE 10或 IE 11 hack" css @media screen and ( ms high contrast: active), ( ms high contrast: none) { // Put your IE specific css class here } `` 阅读全文
posted @ 2016-11-15 22:35 码不能停 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 好用的mysql客户端 https://www.quora.com/What is the best free DB schema design tool https://www.quora.com/What is the best MySQL client for Mac OS X or Wind 阅读全文
posted @ 2016-11-10 21:12 码不能停 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 思路:utf 8 decode(to buffer) convert to gbk(buffer also) write buffer to file. request库使用时, gb2312、GBK中文乱码解决方法 参考资料 https://cnodejs.org/topic/53142ef833 阅读全文
posted @ 2016-11-01 23:26 码不能停 阅读(3793) 评论(0) 推荐(0) 编辑
摘要: 检查URL是否为图片地址 getimagesize() 页面跳转 阅读全文
posted @ 2016-10-30 20:19 码不能停 阅读(144) 评论(0) 推荐(0) 编辑
摘要: ```javascript //十进制转其他 var x=110; alert(x); alert(x.toString(8)); alert(x.toString(32)); alert(x.toString(16)); //其他转十进制 var x='110'; alert(parseInt(x,2)); alert(parseInt(x,8)); al... 阅读全文
posted @ 2016-10-27 15:56 码不能停 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 题目1 用户有800台电脑,从192.168.0.0这个网段划分,掩码是多少。 中间的过程是怎么计算的? 解答 9 阅读全文
posted @ 2016-10-27 15:43 码不能停 阅读(3621) 评论(0) 推荐(0) 编辑
摘要: 查看用户临时文件(trace文件)所在位置 如果是trace文件(.trc)大导致的 在路径下查看 alert_log 文件 参考资料 "主要参考文章:http://blog.itpub.net/17203031/viewspace 1470785/" "https://community.orac 阅读全文
posted @ 2016-10-09 14:17 码不能停 阅读(518) 评论(0) 推荐(0) 编辑
摘要: 解决PHP Header下载文件在IE文件名中文乱码有两种常见的,一种是是把页面编码改成utf8,另一种是对中文url进入urlencode编码,根据UA检测,区别下载,就可以解决了 阅读全文
posted @ 2016-10-05 18:08 码不能停 阅读(1083) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示