• 2024-01-31mac下git命令自动补全
    本文亲测可用。老版本macos方法:1、打开网页,https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash全选,复制内容。2、在~/.bash_profile文件(如果没有需要创建)中加入以下内容即可生效if\[-f~/.git-completion.bash\];then.~/.gi
  • 2024-01-29excel批量转换为CSV格式
    在左侧工程资源管理器中双击Sheet1(Sheet1)打开代码窗口。工程资源管理器如果没有显示,则按ctrl+R就可以显示 代码窗口中输入下面代码,其中有两行需要自己修改为实际文件来源路径和保存路径。就是开头说到的那两个文件夹位置。SubSaveToCSVs()DimfDirAsStringDim
  • 2023-02-07Python生成文件md5校验值函数
    linux有个命令叫做md5sum,能生成文件的md5值,一般情况下都会将结果记录到一个文件中用于校验使用,比如会这样使用:[crazyant@localhostPythonMd5]$moresample_filewww
  • 2022-11-25【Python】 文件夹压缩 zip
    文件夹压缩zipimportzipfilesrmdir_all_folder#文件夹路径print('原始文件夹路径:',srmdir_all_folder)zip_name='srmdir_all.zip'#压缩文件名称zip_file
  • 2022-11-01node04_05时钟web服务器
    1.创建clock文件夹,里面有index.hrml和对应的css文件  2.编写node代码//1.1导入http模块consthttp=require('http')//1.2导入fs模块constfs=require('fs')
  • 2022-10-22web服务器5
    //1导入fsconstfs=require('fs')//2导入path模块constpath=require('path')//3导入http模块consthttp=require('http')//4创建web服务器constserver