会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
scott_h
新随笔
管理
上一页
1
2
3
4
5
6
7
8
···
11
下一页
2019年6月8日
【win10激活问题】 从【win10专业工作站版】转为 数字许可证的【win10专业版】
摘要: 今天安装了 win10 1903 (10.0.18362 暂缺 Build 18362) 安装时 选的 是【win10 专业工作站版】 却无法激活, (因为当初是从win7升级上win10的,只有关联账户的数字许可证) 只能激活【专业版】, 所以无法激活【工作站版】 解决方案: 在【设置】【激活】【
阅读全文
posted @ 2019-06-08 21:23 scott_h
阅读(3881)
评论(0)
推荐(0)
2019年6月6日
gitea (git服务器), 修改配置,更换IP地址
摘要: 使用的gitea项目管理git 服务器 (可以不用备份项目, 通过直接修改gitea配置, 直接使用) 步骤1.在gitea 配置目录 修改 步骤2.在项目目录中 目录 修改 文件
阅读全文
posted @ 2019-06-06 15:15 scott_h
阅读(13302)
评论(0)
推荐(0)
2019年5月24日
valgrind 代码检查,内存泄漏
摘要: 使用平台 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
阅读(328)
评论(0)
推荐(0)
2019年4月18日
c# 使用GetPrivateProfileString 读ini数据 失败
摘要: 项目中用到 GetPrivateProfileString但是使用中, 发现 无法读出 ini 配置中的值, 比如Enable_log =3 我读到的是 API设置的默认值. 网上说可能时字符集编码的问题. 带着问题, 测试多次,发现 字符编码的确会影响!!! 结果: 实际上,用utf8 还是会出现
阅读全文
posted @ 2019-04-18 14:41 scott_h
阅读(7590)
评论(0)
推荐(0)
2019年4月12日
win10/server2019 系统安装 详解
摘要: 安装操作系统
阅读全文
posted @ 2019-04-12 11:39 scott_h
阅读(8885)
评论(0)
推荐(0)
2019年4月10日
版本管理 word 文档比较
摘要: 版本管理 优化工作效率 word 比对
阅读全文
posted @ 2019-04-10 18:51 scott_h
阅读(3152)
评论(0)
推荐(0)
2019年3月22日
c# 遍历目录
摘要: ```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
阅读(482)
评论(0)
推荐(0)
CRC 简介
摘要: CRC wiki,历史发展,各个版本的用途 等 https://en.wikipedia.org/wiki/Cyclic_redundancy_check (apple)crc32.c crc32 c
阅读全文
posted @ 2019-03-22 17:11 scott_h
阅读(623)
评论(0)
推荐(0)
calc PI
摘要: 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
阅读(183)
评论(0)
推荐(0)
2019年3月21日
c# 设置水印,消除水印
摘要: 方案1: 图像处理 opencv etc 方案2: 开源框架,直接使用,已经优化
阅读全文
posted @ 2019-03-21 10:17 scott_h
阅读(2140)
评论(0)
推荐(0)
2019年3月19日
设置windows10 背景颜色
摘要: 护眼
阅读全文
posted @ 2019-03-19 14:48 scott_h
阅读(2937)
评论(0)
推荐(0)
2019年3月13日
C# 获取当前路径
摘要: ```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
阅读(3130)
评论(0)
推荐(1)
2019年3月5日
反编译工具
摘要: 反汇编
阅读全文
posted @ 2019-03-05 15:33 scott_h
阅读(1441)
评论(0)
推荐(0)
2019年3月2日
c# 窗口API,以及全屏锁定一些tips
摘要: ```t this.WindowState = FormWindowState.Maximized; this.FormBorderStyle = FormBorderStyle.None; /* FormBorderStyle.FixedSingle FormBorderStyle.Fixed3D FormBorderStyle.FixedDialog FormBorderStyle....
阅读全文
posted @ 2019-03-02 10:04 scott_h
阅读(759)
评论(0)
推荐(0)
2019年2月28日
c# 几种singleton 实现
摘要: 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
阅读(1404)
评论(0)
推荐(0)
List<T> JIT 分配策略
摘要: 参考 Tips :以后找源码可以看这 = github 找不到List.cs此文件(我找不到而已),所以去microsoft 官网找的此文件,如下 cs // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved.
阅读全文
posted @ 2019-02-28 12:28 scott_h
阅读(470)
评论(0)
推荐(0)
2019年2月25日
软件工程
摘要: 软件工程(建议参考 代码大全 ,构建之法) if else 代码优化 1. 数据类型也很重要 需要注意 比较容易错误的是 bool int UInt if(){} 中是 【0 判断】,和【非0 判断】 与【负数判断】【指针判断】 【字符判断】不要混淆
阅读全文
posted @ 2019-02-25 18:16 scott_h
阅读(156)
评论(0)
推荐(0)
2019年2月13日
mariaDB 安装/卸载+启动/关闭 服务
摘要: 1.设置环境变量 无论是用户环境变量还是系统环境变量 2.安装服务 进入根目录 名字根据 install 后的 参数来决定 叫MariaDB,MySQL 都可以 Service successfully installed. 安装通过ini配置文件(不配置环境变量, 一定要通过这种方式 来安装服务)
阅读全文
posted @ 2019-02-13 16:34 scott_h
阅读(8450)
评论(0)
推荐(0)
2018年12月14日
c# pictureBox 循环播放图片
摘要: c 1.遍历目录 查找图片 2.在 pictureBox 循环播放
阅读全文
posted @ 2018-12-14 10:42 scott_h
阅读(3170)
评论(0)
推荐(0)
2018年11月27日
Cypress USB3014 controlEndPoint 使用事项
摘要: control endpoint 发送,接收数据 返回fasle , lastError = 997, 抓包查看 Control Transfer (UP) XXXXXXXXX 1. Device: FX3 Status: 0xc0000004 USBD_STATUS_STALL_PID 0xC00
阅读全文
posted @ 2018-11-27 15:26 scott_h
阅读(1213)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
···
11
下一页
公告