02 2021 档案

摘要:hello.go package main import "fmt" func main(){ fmt.Print("hello,world\n"); } 运行时遇到 go: cannot find main module; see 'go help modules' 解决的方法: 1.设置环境变量 阅读全文
posted @ 2021-02-08 13:20 慕尘 阅读(2071) 评论(0) 推荐(0) 编辑
摘要:报错: $GOPATH/go.mod exists but should not 开启模块支持后,需要把项目从GOPATH中移出 阅读全文
posted @ 2021-02-08 13:07 慕尘 阅读(5391) 评论(0) 推荐(0) 编辑
摘要:Navisworks是Autodesk所设计的一系列项目审核软件 Navisworks的功能 模型聚合 模型查看 全方位项目审阅 施工管理 碰撞检测 算量 注: 3D模型,4D管理(工程进度),5D就是算量 Navisworks文件格式 nwc 是Navisworks缓存文件,中间格式,由Navis 阅读全文
posted @ 2021-02-07 16:41 慕尘 阅读(690) 评论(0) 推荐(0) 编辑
摘要:cutecharts手绘风格图形库 github 地址https://github.com/cutecharts/cutecharts.py 安装 pip install cutecharts 使用 eg: from cutecharts.charts import Line chart = Lin 阅读全文
posted @ 2021-02-07 13:06 慕尘 阅读(371) 评论(0) 推荐(0) 编辑
摘要:使用 turtle报错 Traceback (most recent call last): File "turtle.py", line 1, in <module> from turtle import * File "E:\python\demo\turtle.py", line 2, in 阅读全文
posted @ 2021-02-07 13:05 慕尘 阅读(1581) 评论(0) 推荐(0) 编辑
摘要:DataX 是阿里巴巴集团内被广泛使用的离线数据同步工具/平台,实现包括 MySQL、Oracle、SqlServer、Postgre、HDFS、Hive、ADS、HBase、TableStore(OTS)、MaxCompute(ODPS)、DRDS 等各种异构数据源之间高效的数据同步功能 gith 阅读全文
posted @ 2021-02-04 22:25 慕尘 阅读(1927) 评论(0) 推荐(0) 编辑
摘要:Talend Open Studio是Talend公司开发的一个数据集成的数据ETL软件 1.下载 https://www.talend.com/products/data-integration-manuals-release-notes/ 我选择的 TOS_DI-20190620_1446-V7 阅读全文
posted @ 2021-02-04 22:16 慕尘 阅读(1483) 评论(0) 推荐(0) 编辑
摘要:Locust的使用二 使用命令定期保存CSV文件 启动Locust命令时,加入参数--csv=*** locust -f locustfile.py --web-host="127.0.0.1" -u 100 -r 20 -H http://127.0.0.1:80 15 --csv result 阅读全文
posted @ 2021-02-03 13:56 慕尘 阅读(102) 评论(0) 推荐(0) 编辑
摘要:Locust的使用一 通过命令参数可以配置Locust运行方式 文档 https://docs.locust.io/en/stable/configuration.html#command-line-options Locust的运行模式有: 单进程运行 所有的虚拟并发用户均运行在单个Python进 阅读全文
posted @ 2021-02-03 13:43 慕尘 阅读(1101) 评论(0) 推荐(0) 编辑
摘要:Locust 是一个开源负载测试工具,使用 Python 代码定义用户行为 安装 pip install locust 查看是否安装成功 locust -V 测试locustfile.py import time from locust import HttpUser, task, between 阅读全文
posted @ 2021-02-03 12:37 慕尘 阅读(750) 评论(0) 推荐(1) 编辑
摘要:Gitalk——基于Preact和Github Issue的评论系统 为docsify添加Gitalk评论系统 根据官方的配置 index.html增加 <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/gitalk/dist/gitalk.cs 阅读全文
posted @ 2021-02-02 13:31 慕尘 阅读(570) 评论(0) 推荐(0) 编辑
摘要:使用docsify 生成文档 docsify init index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <meta http-equiv="X-UA-C 阅读全文
posted @ 2021-02-02 13:07 慕尘 阅读(5956) 评论(0) 推荐(1) 编辑