摘要:
arduino-esp32 github 地址: https://github.com/espressif/arduino-esp32 Arduino IDE 添加 esp32 开发板 文件 > 首选项 > 其他开发板管理地址 填写:https://raw.githubusercontent.com 阅读全文
摘要:
![](https://img2023.cnblogs.com/blog/622937/202302/622937-20230202114237316-1810333167.webp) 阅读全文
摘要:
Dockerfile house.jar 为 jar 包名称 /data 为存放路径 FROM lpicanco/java11-alpine MAINTAINER chenglong <long7@vip.qq.com> VOLUME /tmp RUN mkdir /data EXPOSE 8080 阅读全文
摘要:
<a href="javascript:void(0)" title="下载" onclick="downloadCros('url地址','文件名称')"></a> function getBlob(url) { return new Promise(resolve => { const xhr 阅读全文
摘要:
导出本地依赖的所有包,并下载到 packages 目录下 pip list pip freeze > requirements.txt pip download -d packages -r requirements.txt 将 packages 文件夹和 requirements.txt 拷贝至离 阅读全文
摘要:
临时使用: pip install --trusted-host https://repo.huaweicloud.com -i https://repo.huaweicloud.com/repository/pypi/simple 安装的包名 或者 pip install -i https://r 阅读全文
摘要:
pip install flake8 vscode 安装 flake8 插件 Shift+Alt+F 阅读全文
摘要:
#!/bin/bash # 备份 MySQL 的 shell 脚本(mysqldump版本) # 定义变量 user(数据库用户名),passwd(数据库密码),date(备份的时间标签) # dbname(需要备份的数据库名称,根据实际需求需要修改该变量的值,默认备份 mysql 数据库) # c 阅读全文
摘要:
pip 设置代理 设置国内镜像源 在用户目录(C:\Users${用户名}\pip)下创建pip.ini 文件,文件内容如下: 如果没有 pip 文件夹就新建 [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install 阅读全文
摘要:
在使用 IDEA 新建一个 Maven Archetype 的时候 ArcheType 的可选项并不是很多。我们可以从 apache maven 下载一份 archetype-catalog 来快速搭建想要的项目。 1.从 https://repository.apache.org/content/ 阅读全文