上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 57 下一页

2012年3月15日

光驱是D盘了,咋办

摘要: http://dzh.mop.com/whbm/20050620/0/zg5FSI545fca8a55.shtml 阅读全文

posted @ 2012-03-15 09:22 雨渐渐 阅读(141) 评论(0) 推荐(0) 编辑

2012年2月28日

eclipse快捷键

摘要: 1几个最重要的快捷键代码助手:Ctrl+Space(简体中文操作系统是Alt+/)快速修正:Ctrl+1单词补全:Alt+/打开外部Java文档:Shift+F2显示搜索对话框:Ctrl+H快速Outline:Ctrl+O打开资源:Ctrl+Shift+R打开类型:Ctrl+Shift+T显示重构菜单:Alt+Shift+T上一个/下一个光标的位置:Alt+Left/Right 上一个/下一个成员(成员对象或成员函数):Ctrl+Shift+Up/Down选中闭合元素:Alt+Shift+Up/Down/Left/Right删除行:Ctrl+D在当前行上插入一行:Ctrl+Shift+Ente 阅读全文

posted @ 2012-02-28 13:07 雨渐渐 阅读(284) 评论(0) 推荐(0) 编辑

CentOS挂载NTFS格式硬盘

摘要: CentOS挂载NTFS格式硬盘查看系统中有没有安装fuse和ntfs-3g这两个软件,如果没有先下载安装。fuse是系统自带的安装包,可以使用 rpm -qa|grep fuse 查看是否安装。运行命令:yum install fuse -y即可完成下载安装。ntfs-3g需要单独下载。# yum install wget gcc make# wget http://tuxera.com/opensource/ntfs-3g_ntfsprogs-2012.1.15.tgz安装: tar zxvf ntfs-3g_ntfsprogs-2012.1.15.tgz,执行后得到ntfs-3g-201 阅读全文

posted @ 2012-02-28 11:15 雨渐渐 阅读(1885) 评论(0) 推荐(0) 编辑

计算机的度量单位汇总KMG369

摘要: 买硬盘的时候,比如160GB,这里厂商使用的进制是1000,而不是1024,所以160个GB格式化以后就大概只有:(160 X 1000 X1000 X1000) / 1024/1024/1024 = 149GBGB = Gigabyte,千兆字节,电脑的一种存储单位,1GB=1024MB,1TB=1024GB Gb = Gigabit,千兆位,1Gb=2的30次方位=1024*1024*1024=1 073 741 824蛋疼的铁路网怎么会崩溃用位图实现火车票订票系统,假设每天5000个车次,每个车次5000个座,每个车次有100个经停站,用一个bit来标识座位是否已经被订,只需要5000. 阅读全文

posted @ 2012-02-28 10:54 雨渐渐 阅读(717) 评论(1) 推荐(0) 编辑

2012年2月23日

批处理命令写法

摘要: http://www.newsmth.net/pc/pccon.php?id=10001549&nid=276586 阅读全文

posted @ 2012-02-23 09:48 雨渐渐 阅读(110) 评论(0) 推荐(0) 编辑

2012年2月20日

每行显示多少个

摘要: publicstaticvoidPrintValues(IEnumerablemyList,intmyWidth){54inti=myWidth;55foreach(ObjectobjinmyList){56if(i<=0){57i=myWidth;58Console.WriteLine();59}60i--;61Console.Write("{0,8}",obj);62}63Console.WriteLine();64} 阅读全文

posted @ 2012-02-20 15:09 雨渐渐 阅读(136) 评论(0) 推荐(0) 编辑

BitArray

摘要: http://www.cnblogs.com/lanse777/archive/2007/04/01/695801.html关于OCR矩阵采用 海明距离 检验相似度的算法实现将 0 1 2 3 4 5 6 7 8 9 改为直接序列化为 二进制 而不是 字符串然后求的时候 根据 矩形 算出长度 根据长度构造一个 二进制数组 将数组根据 RGB 赋值 0 1这样就有 两个 二进制 数组了构造两个 BitArray 求 海明距离 然后 海明距离 跟阀值相比 计算相似度http://www.cnblogs.com/i80386/archive/2012/02/20/2359493.htmlusing 阅读全文

posted @ 2012-02-20 14:59 雨渐渐 阅读(659) 评论(0) 推荐(0) 编辑

2012年2月14日

solr.net实践(二)

摘要: Setting up the libraryOnce you have created your document class, you have to initialize the library in order to operate against the Solr instance. This is usually done once at application startup:(通常在程序开始时,启动一次即可 例如:application.start)Startup.Init<Product>("http://localhost:8983/solr" 阅读全文

posted @ 2012-02-14 11:25 雨渐渐 阅读(385) 评论(0) 推荐(0) 编辑

2012年2月10日

一些记录

摘要: 淘宝APIhttp://www.cnblogs.com/wuhuacong/archive/2012/02/10/2344722.htmlhttp://www.cnblogs.com/koeltp/archive/2012/02/08/2343394.html asp.net win7 iishttp://www.cnblogs.com/Magicsky/archive/2012/02/08/2342806.html 作业调度http://www.cnblogs.com/htynkn/archive/2012/02/07/AForge_5.html 阅读全文

posted @ 2012-02-10 12:13 雨渐渐 阅读(141) 评论(0) 推荐(0) 编辑

2012年2月9日

C# 生成唯一值函数

摘要: source :http://hi.baidu.com/lwlfox/blog/item/ee221b245a0f3c3ac9955927.htmlC# 生成唯一值函数private string getGUID() { System.Guid guid = new Guid(); guid = Guid.NewGuid(); string str = guid.ToString(); return str; }随机生成如下字符串: e92b8e30-a6e5-41f6-a6b9-188230a23dd2格式说明:System... 阅读全文

posted @ 2012-02-09 10:47 雨渐渐 阅读(1066) 评论(0) 推荐(0) 编辑

上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 57 下一页

导航