• 2023-05-29win10 卸载docker 干净
    百度搜到的不多,看了这一篇,测试可行感谢https://blog.csdn.net/weixin_41517074/article/details/128653118$ErrorActionPreference="SilentlyContinue"kill-force-processname'DockerforWindows',com.docker.db,vpnkit,com.docker.proxy,com.docker.9pdb,mo
  • 2023-01-05PowerShell 备份与定期删除文件
    $d1=get-date-format"yyyyMMdd"New-Item-ItemTypeDirectory-Force-PathD:\kingdee\$d1New-PSDrive-Name"z"-PSProviderFileSystem-Root"\\172.16.200.11\d$\K
  • 2022-11-10Python: recurse directory
     importos,sysfromstatimport*fromtypingimportCallabledefvisit_file(file):print('visiting',file)defwalktree(top,callback:Callable):
  • 2022-09-23Why is git submodule not updated automatically on git checkout?
    Whyisgitsubmodulenotupdatedautomaticallyongitcheckout?WhenswitchingbrancheswithgitcheckoutIwouldassumethatmostofthetimeyouwouldwant
  • 2022-08-17Codeforces 1713C - Build Permutation
    题意为给出一个长度为n的空数组,数组下标为0至n-1。我们需要在数组中的每个位置上填上合适的数A[i],使得i+A[i]为完全平方数。并且数组最后需为0至n-1的一个排列。