随笔分类 -  其他

该文被密码保护。
posted @ 2016-11-15 11:44 码尔代夫iimax
摘要:最近一新项目要用到国内行政区划数据,bing了一下,已有网友提供sql版本数据下载,但在本地查看数据不够新,至少我老家所在市2010年改名儿了这数据也看不到。所以说呢还是自己动手丰衣足食。然后就有了这篇文章## 一、从国家统计局网站找到最新行政区划代码see [中华人民共和国国家统计局>>行政区划代... 阅读全文
posted @ 2014-10-28 08:54 码尔代夫iimax 阅读(3107) 评论(1) 推荐(1)
摘要:Step 1: Check for SSH keysFirst, we need to check for existing ssh keys on your computer. Open upGit Bashand run:cd ~/.sshls# Lists the files in your .ssh directoryCheck the directory listing to see if you have a file named eitherid_rsa.puborid_dsa.pub. If you don't have either of those files go 阅读全文
posted @ 2013-11-01 16:06 码尔代夫iimax 阅读(2387) 评论(0) 推荐(0)
摘要:系统单据的一个分类需要禁用(不是删除),做单据的表单是用的下拉列表,马上就想到了 把那个option disabled. 1: function diableSelectItem(id,v){ 2: var el = document.getElementById(id); 3: for(var i=0,j = el.options.length;i<j;i++){ 4: if(el.options[i].value == v){ el.options[i].disabled=true;break;} 5: } 6: }OK,运行,发现选项没有显示灰色,仍然可用。!!!代码没问题啊,怎么 阅读全文
posted @ 2011-03-31 16:38 码尔代夫iimax 阅读(3343) 评论(0) 推荐(0)
摘要:< ?xml version="1.0"? > < !DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"> < cross-domain-policy > < allow-acc... 阅读全文
posted @ 2010-07-01 17:54 码尔代夫iimax 阅读(434) 评论(0) 推荐(0)
摘要:前几天还可以用的,今天才发现访问不了了,connecting 看来只能修改本地hosts文件了 174.36.30.71 www.dropbox.com OK 阅读全文
posted @ 2010-05-11 17:17 码尔代夫iimax 阅读(335) 评论(0) 推荐(0)
摘要:参考MSDN http://msdn.microsoft.com/en-us/library/aa767914.aspx 怎样为一个程序注册一个 URL 协议 核心代码为注册表 Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Alert] @="AlterProtocol" "URL Protocol"="C:\\Alert.exe"... 阅读全文
posted @ 2010-05-11 15:08 码尔代夫iimax 阅读(1261) 评论(0) 推荐(0)