解决方案:Grammarly for Word 无法使用
使用 Grammarly for Microsoft Word and Outlook 时,安装后无法使用,参考网络文章解决,十分有用,共享。
在安装的时候同时按住ctrl+shift,然后点击Get started,这样就可以进入高阶设置界面,然后按需安装即可。
原文链接: 经验分享:正确安装Word的Grammarly插件
SDZM: Software for determining shear failure regions of rock joints
To meansure the shear damage zones of post-shearing rock joint, a free open-source software named SDZM toolbox was developed based on Python & PyQt5.
Source Code: https://github.com/Doradx/SDZMtoolbox
Installation
Download source code from Github Repository
Install dependencies using pip install -r requirements.txt
Run the main program using python MainWindow.py
Features
One-step determination of shear damage zones.
Complete project management is supported.
Related Publications
Xia, ...
CNKI知网油猴插件-一键导入Endnote&下载PDF
由于知网导出参考文献过于繁琐,故自己编写了油猴插件,一键导入Endnote、一键下载PDF。好用的插件分享给大家。
功能
搜索页一键下载PDF、导出RIS
详情页支持下载PDF、导出RIS
支持学位论文PDF版本下载
油猴插件地址CNKI PDF RIS Helper
知乎回答Endnote 快速导入知网参考文献
油猴插件安装教程知乎 - 浏览器辅助神器:油猴脚本使用教程
RSS 订阅地大新闻 - CUG News
经常关注不到学校的一些通知之类的,而学校网站又没有 RSS 订阅。
使用 Feed43 创建订阅源,需要的同学可以订阅。
RSSHub 方案由于 Feed43 方案更新较慢,无法满足需求,调研后,发现RSSHub可以解决,但需要自己适配,故向RSSHub提交了pull request。
订阅链接
今日新闻 https://rss.cuger.cn/hub/cug/news
研究生院
通知公告 https://rss.cuger.cn/hub/cug/graduate
工程学院 https://rss.cuger.cn/hub/cug/gcxy (可指定类别,具体文档)
学院新闻 https://rss.cuger.cn/hub/cug/gcxy/1
通知公告 https://rss.cuger.cn/hub/cug/gcxy/2
党建工作 https://rss.cuger.cn/hub/cug/gcxy/3
学术动态 https://rss.cuger.cn/hub/cug/gcxy/4
本科生教育 https://rss.cuger.cn/hub/cug/gcxy/5
研究 ...
Word 公式字体替代方案
word 自带的公式编辑器挺好用,相对 MathType 需要破解、行间距经常出莫名其妙的 bug 而言, word 自带编辑器好用很多。但是,其自带字体为 Cambria Math,无法调为 Time New Roman 字体。在网上检索发现,可以使用 XITS Math 等方案进行替代。
字体对比
XITS Math 下载地址
Asana Math 下载地址
Latin Modern 下载地址
安装方法
下载字体压缩包或文件
选中要安装的字体 (*.otf),右键安装
打开 Word,点击公式工具->设计->转换->公式选项->常规->公式区的默认字体,设置为你下载的格式,大功告成
详细安装教程
注意由于他人电脑上可能没安装该字体(如打印店等),最好是更改 word 的默认选项,将字体嵌入文件。
ArcGIS License Manager 无法启动 - Sorry, this application cannot run under a virtual machine
ArcGIS 10.6 安装过程中, 出现 ArcGIS License Manager 服务无法启动的情况(已替换 service.txt 和 ARCGIS.exe),尝试了麻辣GIS-安装ArcGIS License Manager 服务无法启动的解决方案汇总后仍然无法解决,自行尝试后发现另一种解决方法,可以一试。
解决方案先尝试 麻辣GIS-安装ArcGIS License Manager 服务无法启动的解决方案汇总,还是不行的同学,可以试一下面方案。
打开,并检查是否开启了 Hyper-V 和 Virtual Machine Platform 两个功能,如果打开了,请关闭,重启。
再试试 ArcGIS License Manager,启动服务。
分析过程
找到 lmgrd.exe 关键文件
尝试 lmgrd.exe -z -c service.txt 命令行,发现报错 Sorry, this application cannot run under a virtual machine
尝试卸载 VMWare 并卸载所有残留,无效
尝试关闭Hyper-V 并重启,无效
...
html table 批量转 Excel(xlsx)
由于实验设备导出的数据为 html 格式,单个 html 文件达到 10-200M。采用 python 脚本,批量将 html 中的 table 批量转为 Excel,并导出到文件。
主要流程
采用 Beautifulsoup 4 库进行解析,获取 html 中的 table;
采用 pandas 解析 table 库中的数据,并进行整合;
将整合后的 DataFrame 导出到各 Sheet,并保存到文件。
依赖包
bs4
pandas
主要代码123456789101112131415161718192021222324from bs4 import BeautifulSoupimport pandas as pdprint('Reading Started')html_id=2html=BeautifulSoup(open('Ma-%s-statistics.html'%html_id,'r').read())tables=html.find_all('table',cla ...
ImageColorAnalysisTool-图像颜色分析工具-Matlab GUI版
Image Color Analysis ToolAn image tool for color clustering based on K-means.
UsageDownloadYou can get the last version from Release page or download from Mathworks File Exchanges .
InstallDouble click on Image Color Analysis Tool.mlappinstall to install the application, and you can find it in Matlab>App.
Run1. Open imageClickFile>Open to select a image.
2. Set color numberClick Analysis>Set Cluster Number to set cluster number for k-means clustering.
3. AnalysisClick Analysis>R ...
matlab柱状图(bar)转折线图(line)方案
bar2line该函数用于将柱状图转换为折线图坐标。
Example1234567891011121314% datax=1:10;y=rand(10,1)*100;width=1;figure;% 绘制 barsubplot(1,2,1);bar(x,y,width);% 绘制 linesubplot(1,2,2);[lx,ly]=bar2line(x,y,width);plot(lx,ly,'r')
GithubGithub
AuthorDorad, ddxid@outlook.com
图像主要颜色分析工具(pyImageColorAnalysisTool)
pyImageColorAnalysisToolThis tool is designed to analysis color distribution of image based on k-means cluster.
UsageDownload1git clone https://github.com/Doradx/pyImageColorAnalysisTool.git
Install requirements1pip install -r requirements
Run1python main.py
Example
1234567891011主要颜色及占比:RGB(59,119,137):16.40%RGB(27,93,25):16.00%RGB(187,141,121):15.60%RGB(219,231,204):12.40%RGB(122,47,186):12.00%RGB(161,238,104):11.60%RGB(15,200,34):4.00%RGB(229,67,60):4.00%RGB(9,211,167):4.00%RGB(244,60,173) ...