免费的文本转语音网站

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...

Python金融计算公式

# Formula for calculating Future Value FV = PV * ((1+r) ** n) # Formula for calculating Present Value PV = FV / ((1 ...

strapi docker启动命令

后台运行:docker run -d --rm \ -v $(pwd):/srv/app \ -p 1337:1337 \ --name strapi-container \ node:20 \ sh -c &qu...