2024年4月21日
摘要: 分析原因 如果采用https方法上传代码,应该使用的是密码方式。如果报403问题,可能是本地缓存密码有问题。 解决办法 # 清理密码缓存 git config --local --unset credential.helper git config --global --unset credenti 阅读全文
posted @ 2024-04-21 07:53 生活的艺术 阅读(13) 评论(0) 推荐(0) 编辑
  2024年3月10日
摘要: 更换submodule url 将子模块从.gitmodules文件中删除 git submodule deinit <submodule-name> 将子模块从主项目中删除 git rm <submodule-name> 删除子模块相关的配置文件,例如.git/modules/<submodule 阅读全文
posted @ 2024-03-10 15:29 生活的艺术 阅读(2) 评论(0) 推荐(0) 编辑
  2023年11月10日
摘要: 修改.sbt的.sbt\repositories [repositories] local aliyun: https://maven.aliyun.com/nexus/content/groups/public/ central: https://maven.aliyun.com/nexus/co 阅读全文
posted @ 2023-11-10 23:00 生活的艺术 阅读(59) 评论(0) 推荐(0) 编辑
  2023年9月22日
摘要: 参考: https://docs.scala-lang.org/overviews/jdk-compatibility/overview.html 阅读全文
posted @ 2023-09-22 20:05 生活的艺术 阅读(30) 评论(0) 推荐(0) 编辑
  2023年8月14日
摘要: ## 1. 参考 https://www.intel.cn/content/www/cn/zh/docs/programmable/683236/19-4/verilog-hdl-macros.html 阅读全文
posted @ 2023-08-14 07:47 生活的艺术 阅读(24) 评论(0) 推荐(0) 编辑
  2023年8月13日
摘要: ## tcl设置引脚 tool->TCL -> run ```TCL # GLOBAL # #set_global_assignment -name FAMILY "Cyclone IV E" #set_global_assignment -name DEVICE EP4CE6F17C8 #set_ 阅读全文
posted @ 2023-08-13 21:46 生活的艺术 阅读(36) 评论(0) 推荐(0) 编辑
摘要: ## 1. 下载软件 搜索“quartus lite”,即可进入软件下载页面。quartus lite版本对cyclone IV芯片是免费使用。 下载下面3个软件 - QuartusLite fpga开发软件 - Questa 与modelsim相似的模拟软件,可以不需要 - cyclone 与芯片 阅读全文
posted @ 2023-08-13 19:10 生活的艺术 阅读(159) 评论(0) 推荐(0) 编辑
  2023年7月22日
摘要: Set-VM -VMName ubuntu-22.04 -EnhancedSessionTransportType HvSockethttps://www.bktus.com/archives/2764https://codeload.github.com/microsoft/linux-vm-to 阅读全文
posted @ 2023-07-22 21:46 生活的艺术 阅读(104) 评论(0) 推荐(0) 编辑
  2023年6月28日
摘要: ## 使用monit管理mogodb ## 1.安装monit sudo apt install monit cp /etc/monit/monitrc ~/.monitrc ## 2.修改monit配置文件 添加mongodb启动和停止命令 ```SHELL check process mongo 阅读全文
posted @ 2023-06-28 08:00 生活的艺术 阅读(12) 评论(0) 推荐(0) 编辑
  2023年6月22日
摘要: ## 1.下载mongodb https://www.mongodb.com/try/download/community 下载ubuntu的tgz版本 ## 2.解压tgz 解压安装包到工作目录 ## 3.修改.bashrc ```shell export MONGODB_HOME=xxx/mon 阅读全文
posted @ 2023-06-22 10:38 生活的艺术 阅读(236) 评论(0) 推荐(0) 编辑