会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Fintech技术汇
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
5
6
7
8
9
10
11
12
13
···
16
下一页
2025年5月12日
linux-断开SSH终端连接后,保持程序依然运行
摘要: 方法一 nohup ./process > output.log 2>&1 & 方法二 screen -S my_session 运行命令如:npm run dev 按 Ctrl+A, 然后按 D 分离会话 关闭SSH终端连接 其他命令 查看所有会话 screen -ls # 等价于 screen
阅读全文
posted @ 2025-05-12 07:49 Fintech技术汇
阅读(202)
评论(0)
推荐(0)
2025年5月10日
linux命令
摘要: 文件系统 根据文件名在目录"/dirpath"下查找文件 find /dirpath -name <filename> 查找目录下的所有文件并且输出到指定文件中 find /path -type f > <filename> 按照修改时间列出目录 * 降序 ls -ltd */ * 升序 ls -l
阅读全文
posted @ 2025-05-10 14:30 Fintech技术汇
阅读(37)
评论(0)
推荐(0)
2025年3月30日
GO单元测试-工具
摘要: 本文介绍如何在GO语言中编写单元测试,主要内容包括:标准库中的testing包,第三方框架testify和mockery工具,monkey patching框架gomonkey,以及如何查看覆盖率。
阅读全文
posted @ 2025-03-30 14:25 Fintech技术汇
阅读(173)
评论(0)
推荐(0)
2024年6月4日
开源协议
摘要: 开源协议分析: 开源协议选择:转自 https://www.ruanyifeng.com/blog/2011/05/how_to_choose_free_software_licenses.html
阅读全文
posted @ 2024-06-04 07:32 Fintech技术汇
阅读(42)
评论(0)
推荐(0)
2024年2月19日
JKS证书转换
摘要: jks 转换成p12格式 keytool -importkeystore -srckeystore d:\cert\server.jks -destkeystore d:\cert\server.p12 -srcstoretype jks -deststoretype pkcs12 执行上述命令后,
阅读全文
posted @ 2024-02-19 12:27 Fintech技术汇
阅读(386)
评论(0)
推荐(0)
2023年11月25日
Moodle环境搭建
摘要: Environment (Windows OS) Apache and PHP8 installation reference https://cloud.tencent.com/developer/article/1938414 PHP Installation reference: https:
阅读全文
posted @ 2023-11-25 13:06 Fintech技术汇
阅读(114)
评论(0)
推荐(0)
2022年3月24日
Ubuntu下解决Git保存用户名和密码的方法
摘要: 进入Git 配置文件: vim ~/.gitconfig 修改配置文件,添加下面内容: [credential] helper = store 引自:https://blog.csdn.net/zhengqijun_/article/details/63298202
阅读全文
posted @ 2022-03-24 23:43 Fintech技术汇
阅读(593)
评论(0)
推荐(0)
2021年8月24日
MySql操作
摘要: MySql创建用户
阅读全文
posted @ 2021-08-24 07:43 Fintech技术汇
阅读(76)
评论(0)
推荐(0)
2021年7月28日
NPM设置和恢复淘宝镜像
摘要: # 设置淘宝源 npm config set registry https://registry.npm.taobao.org npm config set sass_binary_site http://cdn.npm.taobao.org/dist/node-sass # 恢复默认源 npm c
阅读全文
posted @ 2021-07-28 23:51 Fintech技术汇
阅读(623)
评论(0)
推荐(0)
2021年6月23日
Spring Boot实现热部署
摘要: Spring Boot实现热部署
阅读全文
posted @ 2021-06-23 06:17 Fintech技术汇
阅读(284)
评论(0)
推荐(0)
上一页
1
···
5
6
7
8
9
10
11
12
13
···
16
下一页
公告