上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: https://archive.codeplex.com/?p=timsort4net 117964 download archive https://codeplexarchive.blob.core.windows.net/archive/projects/timsort4net/timsort 阅读全文
posted @ 2019-10-10 10:24 scott_h 阅读(220) 评论(0) 推荐(0) 编辑
摘要: //using NationalInstruments.NI4882; //请将项目文件中的“AutoGenerateBindingRedirects”属性设置为true //https://www.cnblogs.com/zoro zero/p/5867320.html //NI4882_1850 阅读全文
posted @ 2019-10-09 17:36 scott_h 阅读(276) 评论(0) 推荐(0) 编辑
摘要: https://gerardnico.com/ide/notepad/replace https://notepad plus plus.org/community/topic/16787/find and replace using regular expression http://www.pn 阅读全文
posted @ 2019-09-12 11:54 scott_h 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 面向对象,继承关系设计 阅读全文
posted @ 2019-07-22 11:25 scott_h 阅读(406) 评论(0) 推荐(0) 编辑
摘要: 导入sqlite库 1.下载 安装包 http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki 记得.net frame 将来会被.net core 替代(应该只是想维护一个 跨平台的版本), 新项目 应该尽量使用.n 阅读全文
posted @ 2019-07-02 12:26 scott_h 阅读(539) 评论(0) 推荐(0) 编辑
摘要: 今天安装了 win10 1903 (10.0.18362 暂缺 Build 18362) 安装时 选的 是【win10 专业工作站版】 却无法激活, (因为当初是从win7升级上win10的,只有关联账户的数字许可证) 只能激活【专业版】, 所以无法激活【工作站版】 解决方案: 在【设置】【激活】【 阅读全文
posted @ 2019-06-08 21:23 scott_h 阅读(3716) 评论(0) 推荐(0) 编辑
摘要: 使用的gitea项目管理git 服务器 (可以不用备份项目, 通过直接修改gitea配置, 直接使用) 步骤1.在gitea 配置目录 修改 步骤2.在项目目录中 目录 修改 文件 阅读全文
posted @ 2019-06-06 15:15 scott_h 阅读(12002) 评论(0) 推荐(0) 编辑
摘要: 使用平台 linux 下载 http://valgrind.org/ 文档 http://valgrind.org/docs/manual/manual.html 博客 https://www.oschina.net/translate/valgrind memcheck https://blog. 阅读全文
posted @ 2019-05-24 10:17 scott_h 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 项目中用到 GetPrivateProfileString但是使用中, 发现 无法读出 ini 配置中的值, 比如Enable_log =3 我读到的是 API设置的默认值. 网上说可能时字符集编码的问题. 带着问题, 测试多次,发现 字符编码的确会影响!!! 结果: 实际上,用utf8 还是会出现 阅读全文
posted @ 2019-04-18 14:41 scott_h 阅读(7343) 评论(0) 推荐(0) 编辑
摘要: 安装操作系统 阅读全文
posted @ 2019-04-12 11:39 scott_h 阅读(8492) 评论(0) 推荐(0) 编辑
摘要: 版本管理 优化工作效率 word 比对 阅读全文
posted @ 2019-04-10 18:51 scott_h 阅读(3002) 评论(0) 推荐(0) 编辑
摘要: ```cs public static List TraverseDirector(string dir, bool isTraveSubDirFlag, bool isFilterSuffix, string suffix) { string suffix_ = "*.*"; if (isFilterSuffix) ... 阅读全文
posted @ 2019-03-22 17:54 scott_h 阅读(476) 评论(0) 推荐(0) 编辑
摘要: CRC wiki,历史发展,各个版本的用途 等 https://en.wikipedia.org/wiki/Cyclic_redundancy_check (apple)crc32.c crc32 c 阅读全文
posted @ 2019-03-22 17:11 scott_h 阅读(577) 评论(0) 推荐(0) 编辑
摘要: https://en.wikipedia.org/wiki/Pi code https://github.com/HHS IntroProgramming/Calculate Pi https://github.com/morphx666/CalcPi https://github.com/Dret 阅读全文
posted @ 2019-03-22 17:07 scott_h 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 方案1: 图像处理 opencv etc 方案2: 开源框架,直接使用,已经优化 阅读全文
posted @ 2019-03-21 10:17 scott_h 阅读(2091) 评论(0) 推荐(0) 编辑
摘要: 护眼 阅读全文
posted @ 2019-03-19 14:48 scott_h 阅读(2649) 评论(0) 推荐(0) 编辑
摘要: ```t System.Environment.CurrentDirectory; //当前路径 System.Windows.Forms.Application.ExecutablePath; //当前路径/app.exe System.Windows.Forms.Application.CommonAppDataPath; //exe数据存放路径 c:\\programData\\ap... 阅读全文
posted @ 2019-03-13 09:40 scott_h 阅读(3110) 评论(0) 推荐(1) 编辑
摘要: 反汇编 阅读全文
posted @ 2019-03-05 15:33 scott_h 阅读(1327) 评论(0) 推荐(0) 编辑
摘要: ```t this.WindowState = FormWindowState.Maximized; this.FormBorderStyle = FormBorderStyle.None; /* FormBorderStyle.FixedSingle FormBorderStyle.Fixed3D FormBorderStyle.FixedDialog FormBorderStyle.... 阅读全文
posted @ 2019-03-02 10:04 scott_h 阅读(717) 评论(0) 推荐(0) 编辑
摘要: http://csharpindepth.com/Articles/General/Singleton.aspx introduction 4th在线看 https://www.manning.com/books/c sharp in depth fourth edition 参考 http://z 阅读全文
posted @ 2019-02-28 14:35 scott_h 阅读(1375) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页