上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: 面向对象,继承关系设计 阅读全文
posted @ 2019-07-22 11:25 scott_h 阅读(403) 评论(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 阅读(530) 评论(0) 推荐(0) 编辑
摘要: 今天安装了 win10 1903 (10.0.18362 暂缺 Build 18362) 安装时 选的 是【win10 专业工作站版】 却无法激活, (因为当初是从win7升级上win10的,只有关联账户的数字许可证) 只能激活【专业版】, 所以无法激活【工作站版】 解决方案: 在【设置】【激活】【 阅读全文
posted @ 2019-06-08 21:23 scott_h 阅读(3651) 评论(0) 推荐(0) 编辑
摘要: 使用的gitea项目管理git 服务器 (可以不用备份项目, 通过直接修改gitea配置, 直接使用) 步骤1.在gitea 配置目录 修改 步骤2.在项目目录中 目录 修改 文件 阅读全文
posted @ 2019-06-06 15:15 scott_h 阅读(11565) 评论(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 阅读(7197) 评论(0) 推荐(0) 编辑
摘要: 安装操作系统 阅读全文
posted @ 2019-04-12 11:39 scott_h 阅读(8356) 评论(0) 推荐(0) 编辑
摘要: 版本管理 优化工作效率 word 比对 阅读全文
posted @ 2019-04-10 18:51 scott_h 阅读(2955) 评论(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 阅读(474) 评论(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 阅读(562) 评论(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 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 方案1: 图像处理 opencv etc 方案2: 开源框架,直接使用,已经优化 阅读全文
posted @ 2019-03-21 10:17 scott_h 阅读(2083) 评论(0) 推荐(0) 编辑
摘要: 护眼 阅读全文
posted @ 2019-03-19 14:48 scott_h 阅读(2555) 评论(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 阅读(3100) 评论(0) 推荐(1) 编辑
摘要: 反汇编 阅读全文
posted @ 2019-03-05 15:33 scott_h 阅读(1298) 评论(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 阅读(687) 评论(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 阅读(1374) 评论(0) 推荐(0) 编辑
摘要: 参考 Tips :以后找源码可以看这 = github 找不到List.cs此文件(我找不到而已),所以去microsoft 官网找的此文件,如下 cs // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. 阅读全文
posted @ 2019-02-28 12:28 scott_h 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 软件工程(建议参考 代码大全 ,构建之法) if else 代码优化 1. 数据类型也很重要 需要注意 比较容易错误的是 bool int UInt if(){} 中是 【0 判断】,和【非0 判断】 与【负数判断】【指针判断】 【字符判断】不要混淆 阅读全文
posted @ 2019-02-25 18:16 scott_h 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 1.设置环境变量 无论是用户环境变量还是系统环境变量 2.安装服务 进入根目录 名字根据 install 后的 参数来决定 叫MariaDB,MySQL 都可以 Service successfully installed. 安装通过ini配置文件(不配置环境变量, 一定要通过这种方式 来安装服务) 阅读全文
posted @ 2019-02-13 16:34 scott_h 阅读(7911) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 10 下一页