上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: 1、查找文件 find / -name 文件夹或文件名 2、编辑文件 vi 文件路径按i或者insert进入编辑模式按esc退出编辑模式按:wq保存或者按:q! 3、查看服务器IP ifconfig -a 4、下载文件 wget 文件下载地址 5、查看安装文件 ps -ef |grep 软件名 6、 阅读全文
posted @ 2020-05-28 11:11 榕树下的回忆 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 一、redis安装 https://blog.csdn.net/weixin_44899258/article/details/93976868 二、linux下设置redis使用service服务启动 1.设置redis.conf中daemonize为yes,确保守护进程开启,也就是在后台可以运行 阅读全文
posted @ 2020-05-26 20:08 榕树下的回忆 阅读(867) 评论(0) 推荐(0) 编辑
摘要: 一、配置git ssh 1、检查用户名和邮箱是否配置 git config --global --list 2、配置用户名和邮箱 git config --global user.name "这里换上你的用户名" git config --global user.email "这里换上你的邮箱" 3 阅读全文
posted @ 2020-05-25 16:52 榕树下的回忆 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 1、mysql安装 https://www.jianshu.com/p/276d59cbc529 2、linux操作命令 (1)找文件 find / -name 文件夹或文件名 (2)编辑文件 vi 文件路径 按i进入编辑模式 按esc退出编辑模式 按:wq保存 (3)查看服务器IP ifconfi 阅读全文
posted @ 2020-05-10 17:40 榕树下的回忆 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 出错提示:NPOI.POIFS.FileSystem.OfficeXmlFileException: The supplied data appears to be in the Office 2007+ XML. You are calling the part of POI that deals 阅读全文
posted @ 2020-04-29 14:32 榕树下的回忆 阅读(1557) 评论(0) 推荐(0) 编辑
摘要: 1、创建MVC项目 dotnet new mvc -o MvcMovie 2、信任https开发证书(linux无效) dotnet dev-certs https --trust 3、添加nuget包 (1)通过命令行 dotnet add package 包名 (2)通过vscode nuget 阅读全文
posted @ 2020-04-23 10:14 榕树下的回忆 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 需要更新dotnet tool,使用的命令为: dotnet tool update --global dotnet-ef --version 3.0.0-preview7.19362.6 阅读全文
posted @ 2020-04-22 14:30 榕树下的回忆 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 1、vscode不能使用nuget插件问题 问题:"Versioning information could not be retrieved from the NuGet package repository. Please try again later."解决方式:打开 /Users/用户名/ 阅读全文
posted @ 2020-04-21 19:00 榕树下的回忆 阅读(802) 评论(0) 推荐(0) 编辑
摘要: 前期准备:PowerDesigner12以上版本及PDMReader软件 PowerDesigner下载地址: https://www.onlinedown.net/soft/577763.htm PDMReader下载地址: http://www.downza.cn/soft/237177.htm 阅读全文
posted @ 2020-04-18 15:49 榕树下的回忆 阅读(476) 评论(0) 推荐(0) 编辑
摘要: 一、前期准备 微信测试账号登录:https://mp.weixin.qq.com/debug/cgi-bin/sandbox?t=sandbox/login 获取appID和appsecret,并且修改网页回调地址,需要注意的是测试账号可以使用域名或者是IP,正式站只能通过域名访问 测试账号回调例子 阅读全文
posted @ 2020-04-01 16:42 榕树下的回忆 阅读(138) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页