摘要: Python python -m SimpleHTTPServer NPM npm install -g http-server http-server Mongoose 支持多个操作系统 阅读全文
posted @ 2021-08-04 16:15 飞天小烤猪 阅读(35) 评论(0) 推荐(0) 编辑
摘要: Windows安装 修改配置文件 编辑$MAVEN3$/conf/setting.xml 修改仓库地址 找到<localRepository>标签,修改为自己希望的仓库路径 修改 找到<mirrors>标签,在标签中间加入: <mirror> <id>alimaven</id> <name>aliy 阅读全文
posted @ 2021-04-08 16:46 飞天小烤猪 阅读(24) 评论(0) 推荐(0) 编辑
摘要: # Intellij project files *.iml *.ipr *.iws .idea/ # go.gitignore from https://github.com/github/gitignore/blob/master/Go.gitignore # Binaries for prog 阅读全文
posted @ 2020-11-25 09:54 飞天小烤猪 阅读(3242) 评论(0) 推荐(0) 编辑
摘要: apt安装 apt install golang-goprotobuf-dev 手动安装 wget https://github.com/protocolbuffers/protobuf/releases/download/v3.13.0/protobuf-all-3.13.0.zip unzip, 阅读全文
posted @ 2020-10-24 10:09 飞天小烤猪 阅读(320) 评论(0) 推荐(0) 编辑
摘要: # Java class files *.class # Eclipse project files .classpath .project .settings/ # Intellij project files *.iml *.ipr *.iws .idea/ .DS_Store/ /target 阅读全文
posted @ 2020-09-28 09:43 飞天小烤猪 阅读(596) 评论(0) 推荐(0) 编辑
摘要: import ( "time" _ "github.com/go-sql-driver/mysql" ) type User struct { Id int Uuid string Name string Email string Password string CreatedAt time.Tim 阅读全文
posted @ 2020-09-15 17:33 飞天小烤猪 阅读(271) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/micro-chen/p/5694423.html 阅读全文
posted @ 2020-09-07 20:45 飞天小烤猪 阅读(142) 评论(0) 推荐(0) 编辑
摘要: CLion 配置 Fortran MPI 的第一个Hello world项目以及CMake配置 0.前置:安装好wsl,gfortran,mpich 1.安装Clion 的 Fortran 插件 2.创建一个Fortran项目 3.修改Cmake文件 cmake_minimum_required(V 阅读全文
posted @ 2020-09-05 15:18 飞天小烤猪 阅读(1076) 评论(0) 推荐(0) 编辑
摘要: WSL(Windows Subsystem for Linux)入门与安装 入门介绍 Windows Subsystem for Linux(简称WSL)是一个为在Windows 10上能够原生运行Linux二进制可执行文件(ELF格式)的兼容层。它是由微软与Canonical公司合作开发,目标是使 阅读全文
posted @ 2020-06-15 00:05 飞天小烤猪 阅读(459) 评论(0) 推荐(0) 编辑
摘要: 阿里云ECS Ubuntu18 部署单节点etcd方法 安装 安装etcd 有两种方法安装,第一种使用apt,第二种从github下载编译好的二进制文件,我使用的是第二种。 我下的是3.3的最后一个版本。 mv /tmp/etcd-download-test/etcd /usr/local/bin/ 阅读全文
posted @ 2020-06-04 22:29 飞天小烤猪 阅读(526) 评论(0) 推荐(0) 编辑