会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
小白一枚
博客园
首页
新随笔
联系
订阅
管理
2021年4月8日
笔记本禁用键盘
摘要: 使用管理员权限的cmd 禁用: sc config i8042prt start= disabled 开启: sc config i8042prt start= demand 都需要重启电脑生效 这种禁用方法只会在电脑正常开始后进入操作系统才会生效 如果我们要进入bios,其实此时的键盘是可以使用的
阅读全文
posted @ 2021-04-08 12:33 MrDong-
阅读(561)
评论(0)
推荐(0)
2021年4月1日
Wikipedia Extractor处理维基百科数据
摘要: 1. 下载维基百科数据:https://dumps.wikimedia.org/zhwiki/latest/zhwiki-latest-pages-articles.xml.bz2 2. 去Github上下载Wikipedia Extractor,直接下载zip即可 3. 解压,进入目录可以看到有一
阅读全文
posted @ 2021-04-01 20:26 MrDong-
阅读(841)
评论(0)
推荐(0)
2020年12月29日
解决pip install tensorflow慢的问题
摘要: 使用这个命令安装:python -m pip install tensorflow -i https://pypi.douban.com/simple 转载于:https://blog.csdn.net/weixin_38109583/article/details/93376954 解决下载其他第
阅读全文
posted @ 2020-12-29 21:21 MrDong-
阅读(849)
评论(0)
推荐(0)
2020年6月28日
C语言,需要getchar()接收回车的情况
摘要: 1、先scanf后getchar() int main(){ char ch, arr[10]; scanf("%s", arr); ch = getchar(); printf("output: arr = %s", arr); printf("output: ch = %c", ch); ret
阅读全文
posted @ 2020-06-28 00:27 MrDong-
阅读(2435)
评论(0)
推荐(2)
2020年6月23日
C语言,如何读取带空格的字符串
摘要: 1、使用gets() char *arr; arr = malloc(50 * sizeof(char)); gets(arr); 2、使用scanf() scanf("%[^\n]", arr); //遇到‘\n’结束读取 3、使用getchar() int k = 0; while((arr[k
阅读全文
posted @ 2020-06-23 14:27 MrDong-
阅读(5739)
评论(0)
推荐(0)
2020年6月22日
vscode调试C程序
摘要: 1、程序路径不能有中文,因为MinGW不支持 2、选择一个文件夹当作工作区,并且在该文件夹下创建./vscode文件夹,并在该文件夹下创建两个json文件 launch.json { "version": "0.2.0", "configurations": [ { "name": "C/C++",
阅读全文
posted @ 2020-06-22 21:27 MrDong-
阅读(2762)
评论(0)
推荐(0)
2020年6月10日
解决下载Git的网速慢问题
摘要: 感谢https://blog.csdn.net/weixin_45122120/article/details/91872691 使用淘宝的镜像来下载,可以找到各种版本 下载地址:https://npm.taobao.org/mirrors/git-for-windows/
阅读全文
posted @ 2020-06-10 21:45 MrDong-
阅读(542)
评论(0)
推荐(0)
2020年6月6日
学习Node.js,使用npm时遇到的问题
摘要: 1、首次安装模块时遇到“时间超时”错误,原因是npm的服务器在外国,可以把镜像改成淘宝的镜像,代码如下 npm config set registry https://registry.npm.taobao.org 2、安装ejs模块时,遇到如下错误,原因是缺少package.json文件,(有可能
阅读全文
posted @ 2020-06-06 16:54 MrDong-
阅读(190)
评论(0)
推荐(0)
2020年6月4日
使用Pandas时遇到的一些问题
摘要: 一、读取csv文件的时候遇到了UnicodeDecodeError: 'utf-8' codec can't decode byte 0xc4 in position 0: invalid continuation byte 错误,可以加入参数encoding='unicode_escape'来解决
阅读全文
posted @ 2020-06-04 16:35 MrDong-
阅读(324)
评论(0)
推荐(0)
2019年3月27日
模仿主流网页
摘要: 源码链接: 码云:https://gitee.com/dongshuaishuai/imitate_mainstream_web_pages.git 百度云:https://pan.baidu.com/s/1PpbcPrBEAtgZOb7y3vzOFQ 提取码:39ex 原网页截图: 模仿网页截图:
阅读全文
posted @ 2019-03-27 12:19 MrDong-
阅读(529)
评论(0)
推荐(0)
下一页
公告