最方便的视频提取文本工具,没有之一

微信小程序搜索“一键提文”,就可以找到,把B站、小红书、抖音、播客等主流网站的分享链接贴进去,过一会就提取出文本,还能直接保存成Word文档,很丝滑。

mongodb启动服务命令

启动服务​brew services start mongodb/brew/mongodb-community启动并设置为开机自启

免费的文本转语音网站

https://app.clipchamp.com/

颜色搭配的网站

https://colordrop.io/https://color.adobe.com/trendshttp://figma.com/colorshttps://www.figma.com/color-wheel/神器:https:...

CDN源

国内的CDN源,之前用头条的,过一阵子就抽风一次,让人恶心得不行。换成CDNJS源,地址:https://cdnjs.com/

后台运行paddleocr

docker run -it --detach --name paddleocr \ -v $PWD:/paddle \ -p 9000:9000 \ paddlepaddle/paddle:latest

free privacy policy

https://app.freeprivacypolicy.com/国外的人真是慷慨

Python的sets操作

x.union(y) This method returns all the unique items that are present in the two sets, as a new set. x_set | y_set x....

Dictionary的方法

len (x_dict)To know the number of key: value pairs in the dictionary.x_dict.keys ( )Returns all the 'keys' of diction...

Python的lists操作

list.append (x)Add an item to the end of the list.list.extend (x)Extend the list by appending all the items at the en...