前言

本篇为工作过程中对于 工具下载与使用备忘记录。

Beyond Compare 5

  • 使用

对比常用软件

  • 官网

BC5官网:https://www.scootersoftware.com/

  • 无限试用期

参考链接:https://zhuanlan.zhihu.com/p/401663968

修改文件[BCUnrar.dll] ,这个文件重命名或者直接删除。

将以下操作保存为bat文件,然后双击运行即可

  • 绿色版与其他工具

http://bbs.wuyou.net/forum.php?mod=viewthread&tid=441367&extra=

Vscode

插件记录。

Rider

ide 占用内存过高解决

https://blog.csdn.net/m0_37735713/article/details/106380607

VS

平时编译使用VS

Other

geek.exe

Typora

Everything

UnrealGameSync

Horde

腾讯会议

网易有道翻译

腾讯元宝

WPS Office

飞书

NodePad–

看log 查询作用

https://gitee.com/cxasm/notepad--

Windows

  • 停止更新

https://www.douyin.com/jingxuan/search/windows%E5%81%9C%E6%AD%A2%E6%9B%B4%E6%96%B0?aid=2ca0e946-24af-4d5b-948f-77e42d0d72ed&modal_id=7476391021354536243&type=general

Process Explorer

进程工具

https://blog.csdn.net/linxinfa/article/details/106800716

Fork

官网Fork - a fast and friendly git client for Mac and Windows

Fork版本管理工具安装及配置_fork安装-CSDN博客

OBS

显示时间插件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap'>
<style>
p {
margin: 0;
}

#clock {
color: #FFFFFF;
font-family: "Share Tech Mono", monospace;
-font-weight: bolder;
-text-align: center;
text-shadow: 2px 2px 2px grey;
position: absolute;
padding: 5%;

border-left:10px solid CornflowerBlue;
-border-radius: 10px;
padding: 10px;
background-color: rgba(0, 0, 0, 0.75);
}

#clock #time {
font-size: 32px;
font-weight: bold;
-text-align: center;
}

#clock #date {
font-size: 24px;
color: azure;
}
</style>

<script>
if (document.location.search.match(/type=embed/gi)) {
window.parent.postMessage("resize", "*");
}
</script>
</head>

<body translate="no">
<div id="clock" x-data="app()" x-init="startClock();updateClock();">
<p id="time" x-text="time">00:00:00</p>
<p id="date" x-text="date">Loading...</p>
</div>

<script src='https://cdnjs.cloudflare.com/ajax/libs/alpinejs/2.8.0/alpine.js'></script>
<script>
function app() {
return {
time: 0,
date: 0,
week: ['SUNDAY', 'MONDAY', 'TUESDAY', 'WEDNESDAY', 'THURSDAY', 'FRIDAY', 'SATURDAY'],
startClock() {setInterval(() => {
this.updateClock();
}, 1000);},
updateClock() {
var newDate = new Date();
this.time = this.padNum(newDate.getHours(), 2) + ':' + this.padNum(newDate.getMinutes(), 2) + ':' + this.padNum(newDate.getSeconds(), 2) + ' | Live ';
this.date = this.padNum(newDate.getFullYear(), 4) + '/' + this.padNum(newDate.getMonth() + 1, 2) + '/' + this.padNum(newDate.getDate(), 2) + ' | ' + this.week[newDate.getDay()];
},
padNum: function (num, digit) {
var zero = '';
for (var i = 0; i < digit; i++) {
zero += '0';
}
return (zero + num).slice(-digit);
} };
}
</script>
</body>
</html>