Loading

上一页 1 ··· 6 7 8 9 10 11 12 下一页
摘要: GitHub链接 https://github.com/WindSnowLi/My-python-tools/blob/main/DownloadM3u8/marge.py # -*- coding: UTF-8 -*- from genericpath import exists import o 阅读全文
posted @ 2020-12-30 21:50 WindSnowLi 阅读(35) 评论(0) 推荐(0) 编辑
摘要: Windows写入注册表自启动键值对消失: Windows程序将程序路径写入注册表自启动时,有时可能会遇到写入成功但是注册表依然空白的问题。并且随意的字符串可以正常写入,但是写入程序路径时键与值会直接消失。 问题描述: 最初写MFC时遇到过上述情况,最后通过写入RunOnce,并在Run下写入一个标 阅读全文
posted @ 2020-12-27 18:49 WindSnowLi 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 标准 一、 目前国内正在使用的有两种坐标系 火星坐标系 (GCJ-02)百度坐标系 (BD-09) 二、 国内的地图软件获取的位置一般是自己的标准,例如百度的BD-09,各自之间不太通用。 三、 传感器获取的经纬度(例如GPS与北斗)是原始数据,也不能直接拿来在各大地图api上使用 转化为WGS84 阅读全文
posted @ 2020-12-11 10:28 WindSnowLi 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 命令前加sudo,以管理员身份运行解决 阅读全文
posted @ 2020-12-02 20:37 WindSnowLi 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 获取官方win10系统镜像方法 一、以下为PC下载镜像方法(手机端直接可以下载) 浏览器访问 https://www.microsoft.com/zh-cn/software-download/windows10ISO 开发者模式设置为手机端 选择版本 Windows 10或家庭版 确定 选择语言 阅读全文
posted @ 2020-11-26 10:51 WindSnowLi 阅读(9) 评论(0) 推荐(0) 编辑
摘要: #define MATH 0 #define CHINESE 1 #define ENGLISH 2 #define HIGHMATH 3 #define BIGGESTSTUDENT 50 #include <stdbool.h> #include <stdio.h> #include <stdl 阅读全文
posted @ 2020-10-12 18:06 WindSnowLi 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 寻找迷宫出口的最短步数C++实现。 #include <iostream> #include <fstream> #include <cstring> #include <string> #include <queue> using namespace std; //标记全图状态,已经访问的按钮为1 阅读全文
posted @ 2020-10-11 15:41 WindSnowLi 阅读(5) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <fstream> #include <algorithm> #include <vector> #include <ctime> #ifdef linux #include <unistd.h> #endif // linux #if de 阅读全文
posted @ 2020-10-01 17:38 WindSnowLi 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 一个简短的图书管理系统,C语言完成。 头文件部分function.h #ifndef FUNCTION_H_ #define FUNCTION_H_ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdboo 阅读全文
posted @ 2020-10-01 17:30 WindSnowLi 阅读(52) 评论(0) 推荐(0) 编辑
摘要: Installing, this may take a few minutes… WslRegisterDistribution failed with error: 0x800701bc Error: 0x800701bc WSL 2 ??? https://aka.ms/wsl2kernel P 阅读全文
posted @ 2020-08-09 21:22 WindSnowLi 阅读(85) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 下一页