求仁得仁
Caddy2-获取证书 Caddy2-获取证书
docker-compose.yml version: '3.8' services: caddy: image: caddy ports: - "80:80" - "443:443"
2023-05-17
tensorflow-ValueError logits and labels must have the same shape, received ((None, 240, 1) vs (None,)). tensorflow-ValueError logits and labels must have the same shape, received ((None, 240, 1) vs (None,)).
如果输入的 shape 都没问题,那应该是没加 Flatten 的原因 model = tf.keras.models.Sequential([ # input_shape 保持和数据集一致 tf.keras.layers.
2023-05-16
jhipster-error './lib/util/namespace' is not defined by exports in 'xxxx/package.json' jhipster-error './lib/util/namespace' is not defined by exports in 'xxxx/package.json'
package.json 中的 exports 中添加 "./lib/util/namespace": "./lib/util/namespace.js" "exports": { ".": "./lib/environment.js"
2023-05-15
gin-hello world gin-hello world
package main import "github.com/gin-gonic/gin" func main() { r := gin.Default() r.GET("/", func(c *gin.Context) {
2023-05-15
JWT-生成和校验Token JWT-生成和校验Token
JwtTokenService @Service @RequiredArgsConstructor public class JwtTokenService { public static final long EXPIRATION
2023-05-15
V2Fly-Caddy2-WebSocket-部署 V2Fly-Caddy2-WebSocket-部署
docker-compose.yml 这里使用了 nfs 挂载数据卷,也可以直接挂到本地 version: "3.8" services: caddy: image: caddy ports: - "80:
2023-05-14
WIN-开启BBR WIN-开启BBR
管理员模式打开 powershell netsh int tcp set supplemental Template=Internet CongestionProvider=bbr2 netsh int tcp set supplement
2023-05-12
Linux-开启BBR Linux-开启BBR
echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysc
2023-05-12
vue-echarts-更新图表 vue-echarts-更新图表
<template> <v-chart ref="line-chart" class="line-chart" :option="chartOptions"/> </template> expor
2023-05-12
市场分析-20230510-Brooks-S&P Emini 市场分析-20230510-Brooks-S&P Emini
Trading Update: Wednesday May 10, 2023 S&P Emini pre-open market analysis Emini daily chart The Emini has had two c
2023-05-11
LeetCode-14.最长公共前缀 LeetCode-14.最长公共前缀
题干 编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 “”。 示例 1: 输入:strs = [“flower”,“flow”,“flight”] 输出:“fl” 示例 2: 输入:strs = [“
2023-05-11
LeetCode-13.罗马数字转整数 LeetCode-13.罗马数字转整数
题干 罗马数字包含以下七种字符: I, V, X, L,C,D 和 M。 字符 数值 I 1 V 5 X 10 L 50 C
2023-05-11
LeetCode-12.整数转罗马数字 LeetCode-12.整数转罗马数字
题干 罗马数字包含以下七种字符: I, V, X, L,C,D 和 M。 字符 数值 I 1 V 5 X 10 L 50 C
2023-05-11
LeetCode-11.盛最多水的容器 LeetCode-11.盛最多水的容器
题干 给定一个长度为 n 的整数数组 height 。有 n 条垂线,第 i 条线的两个端点是 (i, 0) 和 (i, height[i]) 。 找出其中的两条线,使得它们与 x 轴共同构成的容器可以容纳最多的水。 返回容器可以储存的最大
2023-05-11
powershell-导出壁纸缓存图片 powershell-导出壁纸缓存图片
export_wallper.ps1 [CmdletBinding()] Param( [bool] $init ) $link_target = 'C:\Users\xiche\AppData\Local\Packages\Mi
2023-05-11
WIN-命令行模式使用天翼云盘 WIN-命令行模式使用天翼云盘
安装 winget install tickstep.cloudpan189-go -l D:\Programs\cloudpan189-go --accept-package-agreements 使用 help # 登录 login
2023-05-10
python-线程池 python-线程池
from concurrent.futures import ThreadPoolExecutor, wait, ALL_COMPLETED pool = ThreadPoolExecutor(max_workers=30) tasks
2023-05-10
15 / 35