Clash for Windows 使用教程(详解,全流程) ⭐ 觅云🔥 (miyun.app)
如果连校园网,acm官方网站获取pdf那里是get access,就断开墙,刷新,就是pdf的链接了。

写作

Zotero导入知网文献 - 知乎 (zhihu.com)


mathpix 公式转为word


有2款英文写作检查的免费软件还不错,【icheck】和【whitesmoke】。


批量转换ppt to pdf

怎么批量将PPT转为PDF? - 奔跑吧永恒君的回答 - 知乎 https://www.zhihu.com/question/402305951/answer/2301250556

  1. 代码粘贴到记事本中 后缀名为.vbs
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    Set argv = WScript.Arguments
    if argv.Count < 1 then
    WScript.Quit
    end if
    For Each argv In WScript.Arguments
    filename = argv
    if right(filename, 3) = "ppt" or right(filename, 3) = "pps" then
    pdfname = left(filename, len(filename)-3) + "pdf"
    elseif right(filename, 4) = "pptx" then
    pdfname = left(filename, len(filename)-4) + "pdf"
    else
    msgbox(filename+" is not ppt/pptx!")
    WScript.Quit
    end if
    Set pptApp = CreateObject("PowerPoint.Application")
    Set MyPress = pptApp.Presentations.Open(filename)
    ppSaveAsPDF = 32
    MyPress.SaveAs pdfname, ppSaveAsPDF, false
    Next
    pptApp.Quit
  2. 将ppt文件拖放到 VBS 文件上就OK了

找句子神器就用Phrasebank(5星)


ppt


色卡网站 Color Palettes for Designers and Artists - Color Hunt

代码处理

List of available features — TSFEL 0.1.4 documentation
“To extract these statistical features, we used the tsfel library [3]. The library allowed us to extract 56 features (e.g., min, max, std, mean, median, kurtosis, skewness, absolute energy, zero crossing rate, histogram, and empirical cumulative distribution function) that describe temporal and statistical aspects of the time series nature of the data8.”


pycharm-github
Tab选择提供的建议
Alt+]查看下一个建议;Alt+查看上一个建议。(macos把Alt键换成option键即可)
Esc拒绝所提的建议
Alt+Enter显示当前所有的建议

end