Quantcast
Channel: 多看 - Hank的备忘录,关注互联网技术和创业 »精品收录
Browsing all 65 articles
Browse latest View live

Youtube iframe api: ‘onReady’, ‘onStateChange’ not firing in IE 8

Question: I just was checking my youtube player in IE 8 and noticed the ‘onReady’, ‘onStateChange’ events are not firing. The initPlayer method is being called and the video plays, but the events are...

View Article


JS 打乱数组

S中,要打乱数组有很多方法,网上流传一个国外人写的方法,我认为是最精简的了: function randomsort(a, b) { return Math.random()>.5 ? -1 : 1;//用Math.random()函数生成0~1之间的随机数与0.5比较,返回-1或1 } var arr = [1, 2, 3, 4, 5]; arr.sort(randomsort);...

View Article


The minimum IE window size

本站解读: 对于浏览器中通过js的window.open弹出窗口时的一些限制,ie最小的窗口大小是250*100,并且注意不可以把这个窗口移出屏幕,不可以去除地址栏。在某些情况下如果你只是希望引入站外的链接而不被用户看到,可以考虑iframe的方式,iframe能够被隐藏。 [Windows 7 Application Compatibility episode 6]...[阅读全文]关键字:...

View Article

硬件创业过程中那些你不知道的坑

编者按:本文来自骑记创始人黄尉祥的投稿,近半年在硬件创业路上摸爬滚打,分享一些亲历各种坑的体验。 可穿戴式硬件火了一年,各种手环手表层出不穷,一会儿实物跟设计图的差别,一会儿各种延期跳票,一会儿各种是曾相识,这些到底是啥问题呢?我们一起来走一遭,看看硬件创业都会碰到哪些困难。 第一步 讨论...[阅读全文]关键字: 创业, 精品收录

View Article

正则表达式最短匹配

正则表达 贪婪与懒惰 当正则表达式中包含能接受重复的限定符时,通常的行为是(在使整个表达式能得到匹配的前提下)匹配尽可能多的字符。考虑这个表达式:a.*b,它将会匹配最长的以a开始,以b结束的字符串。如果用它来搜索aabab的话,它会匹配整个字符串aabab。这被称为贪婪匹配。 有时,我们更需要懒惰匹配,...[阅读全文]关键字: JS, 精品收录

View Article


php解析html类库simple_html_dom

下载地址: 下载地址:https://github.com/samacs/simple_html_dom 说明地址: http://www.th7.cn/Program/php/201303/129348.shtml http://www.poluoluo.com/jzxy/201307/232683.html   [阅读全文]关键字: PHP, 精品收录

View Article

PHP HTML DOM 解析器

via : http://www.springload.cn/springload/detail/343 [阅读全文]关键字: PHP, 精品收录

View Article

Simple Html Dom Fatal error: Call to a member function on a non-object

Simple Html Dom is a PHP dom manipulator. This library is one of the easiest and most powerful dom manipulator for PHP. In fact, you can even use this to create your own web crawler like what i have...

View Article


Troubleshooting unexpected T_PUBLIC error [closed]

I get this error… Parse error:syntax error, unexpected T_PUBLIC in C:\filename here on line 12 On this line…. public static function getInstance(){ The code… <?PHP class Session{ private static...

View Article


CSS – max z-index value [duplicate]

Question: This question already has an answer here: Mininum and Maximum value of Z-INDEX 10 answers Is there a maximum / minimum possible value for the CSS z-index property? Do different browsers have...

View Article

Youtube videos in jQuery dialogs always on top of other content

Question: I am having some troubles embedding videos in a jQuery dialog. It displays and plays all well but it is always in front of other dialogs. When I pass another dialog over the one with the...

View Article

How to change users in TortoiseSVN

Question: I was setting up another user to use our SVN repository. He didn’t have a username/password, so I logged in with my credentials. We now have a username/password for him. How do I get...

View Article

php如何判断用户通过手机wap访问还是电脑直接访问

最近做一个手机查询系统,自然就牵扯到了此问题,那我就根据对wap的认识浅谈下通过php判断用户访问方式是通过wap访问还是电脑直接访问。 首先说最根本的解决方法: 手机访问时,会附带发送user-agent信息,这个信息里面会有手机号码信息,那么如果能取得手机号码,则可以肯定是通过手机wap访问的。但是目前中国...[阅读全文]关键字: PHP, 精品收录

View Article


MySQL server has gone away 问题的解决方法

应用程序(比如PHP)长时间的执行批量的MYSQL语句。执行一个SQL,但SQL语句过大或者语句中含有BLOB或者longblob字段。比如,图片数据的处理。都容易引起MySQL server has gone away。 今天遇到类似的情景,MySQL只是冷冷的说:MySQL server has gone away。 大概浏览了一下,主要可能是因为以下几种原因: 一种...[阅读全文]关键字:...

View Article

SeaJS 里版本号和时间戳管理的最佳实践

用 seajs 组织项目,上线后,经常需要更新特定文件或所有文件的时间戳,以清空浏览器缓存。最简单的方式是: 1 2 3 define(function(require, exports) {   var a = require('path/to/a.js?20110801'); }); 这种方式很简单直观,弊端也很明显:文件一多,时间戳会分散在各个文件,维护起来不...[阅读全文]关键字:...

View Article


Onenote怎么备份

越来越觉的数据很重要,我上网一般用的是firefox+google reader + outlook 来保存数据,收发邮件和保存自己觉的重要的文件。做笔记的话,个人觉的最好的还是onenote ,微软简直太强大了,当我经历过很多网上开源的程序后,最后还是投入微软的环抱,不是别的,只是因为他的产品确实好,其他比同等级的产品好很多...[阅读全文]关键字: 娱乐 & 小知识, 精品收录

View Article

Yii 一行代码,为模块绑定子域名

我在dongbeta的网站上看到了这个东西,突然觉得原来子域名真的很简单,原来我还在想,如何绑定一些子域名的事情呢。 看一下原文吧,然后说明一下,官方的手册中其实已经有类似的介绍了,只是目前这一部分还是英文版的,这可能和这个功能是最新刚加入的关吧。。来源网址为:http://dongbeta.com/view/655 ̵...[阅读全文]关键字: PHP, Yii Framework, 精品收录

View Article


如何模拟一个dht节点(PHP DHT info_hash list?)

Question:   I’d like to (via PHP) gather the info_hashes currently being downloaded or search the DHT. I’ve seen BTDigg which uses DHT for a search engine and I’d like to do something similar. Also,...

View Article

PHPnow升级PHP5.4.x版本

现在很多开源程序都不支持PHP5.2.x了,但是PHPnow好久没有更新只好自己手动更新版本。好了废话不多说开始吧! 1.下载最新版本:http://windows.php.net/downloads/releases/ 中的php-5.4.15-Win32-VC9-x86.zip 2.解压到你的phpnow安装根目录重命名为php-5.4.15 起什么名字无所谓了,看你喜欢。...

View Article

MongoDB介绍及下载与安装

dkankan注释: 每次启动mongodb都要加dbpath是因为如果不加就会用默认路径,这样子就会一直提示: 设置的\data\db\不存在(此处的\data\db就是默认路径) 设置mongodb为windows服务时正确的方式是: echo logpath=C:\mongodb\log\mongo.log > C:\mongodb\mongod.cfg mongod –install...

View Article
Browsing all 65 articles
Browse latest View live