摘要: 前两年微软宣布在2020年1月14日正式停止Windows 7的支持维护。与此同时,驱动通过微软WHQL认证的Catalog文件获得数字签名的算法也变更成SHA256。而最初版的Windows 7 系统只能识别 Sha128算法的签名,无法识别SHA256算法的数字签名。这就意味着部分Windows 阅读全文
posted @ 2022-09-22 15:32 朝雾之归乡 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 测试用的FPGA型号为:xc6slx75-3csg484 ISE版本为:ISE 14.5 Flash芯片为:MT25QL128ABA8ESF-OSIT 其原理如下: 按照上图需要在FPGA外置的Flash芯片中放置3个image,分别是Header、Golden和Multi,依据UG380文档(Sp 阅读全文
posted @ 2020-11-24 16:10 朝雾之归乡 阅读(2055) 评论(7) 推荐(0) 编辑
摘要: void quicksort(int arr[], const int BEGIN, const int END) { if (BEGIN >= END) { return; } int i = BEGIN + 1; int j = END; while(i arr[BEGIN]) { ... 阅读全文
posted @ 2018-05-04 17:11 朝雾之归乡 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 欧几里得算法的原理:基于这样一种观察,两个整数x和y(x>y)的最大公约数等同于y和(x%y)的最大公约数; 数t整除x和y,当且仅当t整数y和(x%y);这是因为:x = t*y + x%y; 具体代码如下: 阅读全文
posted @ 2018-04-27 11:49 朝雾之归乡 阅读(909) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std; typedef struct node* list; struct node { int Item; list next; }; void Display(list head) { list t = head; while (nullptr != t) { ... 阅读全文
posted @ 2018-04-26 14:36 朝雾之归乡 阅读(298) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std; typedef struct node* list; struct node { int Item; list next; }; static void DisplayList(list head) { if (head->next == nullptr) { ... 阅读全文
posted @ 2018-04-25 09:53 朝雾之归乡 阅读(359) 评论(0) 推荐(0) 编辑
摘要: #include #include int main(int argc, char *argv[]) { int i = 2, j = 0; long N = atol(argv[1]); int *a = malloc(N*sizeof(int)); if (NULL == a) { printf("There is no enough... 阅读全文
posted @ 2018-04-21 13:26 朝雾之归乡 阅读(363) 评论(0) 推荐(0) 编辑
摘要: 下载并安装wampserver; 安装时,提示SMTP服务器时,应正确填写邮箱的SMTP的服务器地址; 安装完成后,登录phpMyAdmin; 给原有的root用户创建密码,所有root用户; 创建一个名称为mantis的用户和同名的数据库,同时创建密码,属性选择utf8_general_ci; 刷新后,将无法登录phpMyAdmin,这是因为其默认按照没有密码登录的; 打开wampserver... 阅读全文
posted @ 2017-09-07 16:03 朝雾之归乡 阅读(1766) 评论(0) 推荐(0) 编辑
摘要: 【参考文献】: 阅读全文
posted @ 2017-08-22 14:12 朝雾之归乡 阅读(3002) 评论(0) 推荐(0) 编辑
摘要: net use \\192.168.1.112\ipc$ admin /user:admin #第一个admin是密码,第二admin是用户名; xcopy test.txt \\192.168.1.112\VS2010 /Y net use \\10.10.12.220\ipc$ /delete 阅读全文
posted @ 2017-08-22 14:07 朝雾之归乡 阅读(5237) 评论(0) 推荐(0) 编辑