会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Miraizu的笔记
一个蒟蒻的博客
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
9
10
11
下一页
2022年10月12日
golang中使用sqlx + squirrel作为orm
摘要: # 依赖 ```go import ( sq "github.com/Masterminds/squirrel" _ "github.com/go-sql-driver/mysql" "github.com/jmoiron/sqlx" ) ``` 定义数据实体 ```go type User str
阅读全文
posted @ 2022-10-12 12:25 七つ一旋桜
阅读(520)
评论(0)
推荐(0)
2022年10月10日
rustup toolchains
摘要: 默认的toolchain是stable-x86_64-pc-windows-msvc 也可以使用stable-x86_64-pc-windows-gnu gnu结尾的需要mingw32 默认的需要vs c++ build tool rustup install <toolchain> # toolc
阅读全文
posted @ 2022-10-10 23:09 七つ一旋桜
阅读(202)
评论(0)
推荐(0)
2022年10月6日
yolov5笔记
摘要: ```shell git clone https://github.com/ultralytics/yolov5 cd yolov5 pip install -r requirements.txt ``` 然后是去roboflow下载数据集 里面一般解压完会有一个data.yaml,要在里面修改两个
阅读全文
posted @ 2022-10-06 13:59 七つ一旋桜
阅读(58)
评论(0)
推荐(0)
2022年9月30日
python調用wasm
摘要: 安裝wasm-pack cargo install wasm-pack 新建rust lib 項目 cargo new --lib <project name> 配置Cargo.toml [package] name = "rust_wasm" version = "0.1.0" edition =
阅读全文
posted @ 2022-09-30 19:16 七つ一旋桜
阅读(330)
评论(0)
推荐(0)
2022年9月7日
springboot 集成jimmer
摘要: java 添加依赖 <repositories> <repository> <id>nexus-tencentyun</id> <name>Nexus tencentyun</name> <url>http://mirrors.cloud.tencent.com/nexus/repository/m
阅读全文
posted @ 2022-09-07 22:34 七つ一旋桜
阅读(752)
评论(1)
推荐(0)
2022年8月25日
haskell 一行代码汉明码
摘要: 核心代码为 foldl (\x y -> x `xor` y) 0 $ filter (\x -> bits !! x /= 0) [0..length bits - 1] import Data.Bits solve bits = foldl (\x y -> x `xor` y) 0 $ fil
阅读全文
posted @ 2022-08-25 23:06 七つ一旋桜
阅读(36)
评论(0)
推荐(0)
2022年8月23日
shell脚本中切换用户并执行命令
摘要: 
阅读全文
posted @ 2022-08-23 16:02 七つ一旋桜
阅读(48)
评论(0)
推荐(0)
2022年8月6日
GHCup安装haskell开发环境
摘要: 使用ghcup安装haskell 详细参考如下 GHCup 源使用帮助 — USTC Mirror Help 文档 windows: # Windows 用户:以非管理员身份在 PowerShell 中运行如下命令 $env:BOOTSTRAP_HASKELL_YAML = 'https://mir
阅读全文
posted @ 2022-08-06 10:50 七つ一旋桜
阅读(924)
评论(0)
推荐(1)
2022年7月29日
vite config打包时移除console和debugger
摘要: //vite.config.js import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' export default defineConfig({ plugins: [vue()], build: { min
阅读全文
posted @ 2022-07-29 23:01 七つ一旋桜
阅读(557)
评论(0)
推荐(1)
2022年7月21日
springboot + react(antd)文件上传与下载
摘要: 后台 依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>or
阅读全文
posted @ 2022-07-21 00:10 七つ一旋桜
阅读(1100)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
10
11
下一页
公告