分类: 技术分享
thumbnail

MySQL数据迁移到PGSQL

MySQL数据迁移到PGSQL 采用的工具是navicat premium软件的数据传输功能,但有小坑: mysql的bit(1)数据类型转成了varchar(1) mysql的自增主键功能迁移后在pg……
thumbnail

PostgreSQL JSON类型字段常用操作

初始数据 insert into name_age values('{"id":1,"name":"小明", "age":18}'); insert into name_age values('{&quo……
thumbnail

批量修改git历史记录中的用户名和邮箱

其实就一个脚本就搞定 #!/bin/sh git filter-branch -f --env-filter ' OLD_EMAIL="原来的邮箱" CORRECT_NAME="现在的名字" CORRECT_EM……
thumbnail

Mermaid示例

gitGraph commit commit branch develop checkout develop commit commit checkout main merge develop commit commit graph TD; A(视图创建) --发起--&……
thumbnail

Notion笔记定时备份

先说原理 原理就是,模拟notion的"export all workspace content"按钮的请求,得到notion返回的zip压缩包。 拿到zip压缩包后怎么处理,就看各自的需……
thumbnail

Markdown软件比对

比对 飞书 Typora 小书匠 Notion 移动端 Yes No No Yes mermaid语法 No Yes Yes Yes 导出MD No Yes Yes Yes 飞书 官网:https://www.feishu.c……
thumbnail

批量替换文件名中的指定字符串

方法一 比较通用 find ./ -name "*keyword*" | while read f; do mv $f ${f/keyword/targetword}; done 命令解释:找出文件名中有 keyword 字符串……
thumbnail

正则表达式匹配第几个符号问题

先说下需求 现在有类似下面的字符串(只列出部分,实际很多): object_type,customer,消费者对象 object_type,product,产品对象 object_type,organization,组……
thumbnail

表单重复提交解决方案

可用从下面几个问题着手 什么叫重复表单 这个定义出来了,那么后面就是技术方案罢了 采用什么样的技术方案 比如可以采用阿里巴巴sentinel,其实本质上就是限……
thumbnail

vuepress-theme-hope使用心得

markdown中相对路径的图片地址必须以./开头,否则显示不出来       随机毒鸡汤:我想早恋,但是已经晚了…