一些常用的工具

常用工具整理。

工具箱

1
2
3
4
https://www.iamwawa.cn/

# 太极
https://ltribe.lanzout.com/iBikg0qpcl7c

软件库

1
2
3
https://www.ghxi.com/
https://github.com/Awesome-Windows/Awesome/blob/master/README-cn.md
https://amazing-apps.gitbook.io/windows-apps-that-amaze-us/zh-cn

下载工具

优先选择IDM,也可以用XDM。

IDM

在Windows XP上使用可能会造成连不上网的问题。破解版下载链接如下。

1
https://ltribe.lanzout.com/itOtx0257b4f

不调用IDM下载

按住Alt键再点击下载按钮即可。

断点续传

打开主界面,在所需任务上右键并点击刷新下载地址。获取URL后复制,在刚才的任务上右键点击属性,将地址一栏替换为刚才复制的URL,继续下载即可。

设置多线程

进入设置,选择连接,连接类型/速度选择较高速率连接,默认最大连接数按照需求选择。建议小于2G的文件可以开32线程,大于2G的文件减少到8-16线程。

插件修复

Chrome

打开以下链接进行安装即可。

1
https://chrome.google.com/webstore/detail/idm-integration-module/ngpampappnmepgilojfohadhhmbhlaek

Edge

打开以下链接进行安装即可。

1
ms-windows-store://review/?PFN=TonecInc.IDMIntegrationModule_e7b5mm5d3r6v2

悬浮嗅探窗修复

首先尝试重新启用浏览器扩展,并在IDM扩展属性中勾选允许访问文件网址。

若无效,着进入IDM设置,在常规选项卡下取消勾选使用高级浏览器集成。进入C:\Users\你的用户名\AppData\Roaming\IDM,删除该目录下所有文件,重新测试悬浮窗是否可用。

也可尝试使用IE浏览器。

下载直播视频

打开C:\Users\你的用户名\AppData\Roaming\IDM\DwnlData, 进入路径内部直至看到一份没有后缀名的文件。若要停止录制,则将文件复制一份,并添加后缀名tsmp4即可。

XDM

1
https://subhra74.github.io/xdm/

Tracker

列表如下。

1
2
3
4
5
6
7
8
https://www.52pojie.cn/thread-1032873-1-1.html
https://github.com/XIU2/TrackersListCollection
https://trackerslist.com/#/zh
https://github.com/ngosang/trackerslist
http://github.itzmx.com/1265578519/OpenTracker/master/tracker.txt
https://newtrackon.com/list
http://www.torrenttrackerlist.com/torrent-tracker-list
https://tinytorrent.net/best-torrent-tracker-list-updated/

qBittorrent

1
2
https://github.com/c0re100/qBittorrent-Enhanced-Edition
https://www.qbittorrent.org/

NDM

1
http://www.neatdownloadmanager.com/index.php/en/

FDM

1
https://www.freedownloadmanager.org/zh/

Xdown

1
https://xdown.org/

DL磁力下载

1
https://www.lanzous.com/i68544h

迅雷X

可无限循环获得试用会员加速。

1
https://www.52pojie.cn/thread-1012585-1-1.html

其它破解版如下。

1
https://www.lanzoui.com/iXVgXj24kyj

BitComet

原版软件下载链接如下。

1
http://www.bitcomet.com/en

破解版如下。

1
2
3
https://www.lanzous.com/b073c7g4f
https://www.52pojie.cn/thread-1034122-1-1.html
https://www.52pojie.cn/thread-1049654-1-1.html

点比特彗星里上方栏位的工具-电驴插件-显示插件窗口,拉长弹出来的插件窗口,点击工具-直接下载,复制要下载的ed2k链接后回车即可。

ADM

1
https://ltribe.lanzous.com/iKhZAmi4mqh

文件蜈蚣

1
http://www.filecxx.com

Bitport.io

1
https://bitport.io/pricelist

sonic.SeedBox

1
https://www.sonicseedbox.com/

Torrent Safe

1
https://www.torrentsafe.com/cn/

bytebx

1
https://bytebx.com/

seedr

1
https://www.seedr.cc/

FileStream

1
https://filestream.me/

ZBIGZ

下载种子。

1
https://zbigz.com/

Direct Torrents

1
https://www.direct-torrents.com/

Streamza

1
https://streamza.com/

OffCloud

1
https://www.offcloud.com/

Aria2

仓库如下。

1
2
https://github.com/aria2/aria2
https://aria2.github.io/

安装

通过以下命令安装即可。

1
2
3
wget http://ftp.tu-chemnitz.de/pub/linux/dag/redhat/el6/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm 
rpm -ivh rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
yum -y install aria2

启动

RPC Server模式

命令行启动

在终端输入以下命令。

1
aria2c --enable-rpc --rpc-listen-all --rpc-allow-origin-all -c  --dir /root/downloads -D
配置文件启动

在终端输入以下命令。

1
aria2c --conf-path="/etc/aria2/aria2.conf"

其中配置文件需通过以下命令新建。

1
2
mkdir /etc/aria2/
cat /dev/null > /etc/aria2/aria2.session

内容如下。

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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
## 文件保存相关

# 文件的保存路径(绝对路径/相对路径),默认当前启动位置
dir=~/downloads

# 启用磁盘缓存,0为禁用缓存,需1.16以上版本,默认16M
# disk-cache=32M

# 文件预分配方式,能有效降低磁盘碎片,默认prealloc
# 预分配所需时间none < falloc ? trunc < prealloc
# falloc和trunc则需要文件系统和内核支持
# NTFS建议使用falloc,EXT3/4建议trunc,Mac下需要注释此项
file-allocation=none

# 断点续传
continue=true

## 下载连接相关

# 最大同时下载任务数,运行时可修改,默认5
max-concurrent-downloads=1

# 同一服务器连接数,添加时可指定,默认1
max-connection-per-server=5

# 最小文件分片大小,添加时可指定,取值范围1M -1024M,默认20M
# 假定size=10M,文件为20MiB 则使用两个来源下载; 文件为15MiB 则使用一个来源下载
min-split-size=10M

# 单个任务最大线程数,添加时可指定,默认5
split=5

# 整体下载速度限制,运行时可修改,默认0
# max-overall-download-limit=0

# 单个任务下载速度限制,默认0
# max-download-limit=0

# 整体上传速度限制,运行时可修改,默认0
# max-overall-upload-limit=0

# 单个任务上传速度限制,默认0
# max-upload-limit=0

# 禁用IPv6,默认false
disable-ipv6=true

## 进度保存相关

# 从会话文件中读取下载任务
input-file=/etc/aria2/aria2.session

# 在Aria2退出时保存`错误/未完成`的下载任务到会话文件
save-session=/etc/aria2/aria2.session

# 定时保存会话,0为退出时才保存,需1.16.1以上版本,默认0
# save-session-interval=60

## RPC相关设置

# 启用RPC,默认false
enable-rpc=true

# 允许所有来源,默认false
rpc-allow-origin-all=true

# 允许非外部访问,默认false
rpc-listen-all=true

# 事件轮询方式,取值epoll/kqueue/port/poll/select,不同系统默认值不同
# event-poll=select

# RPC监听端口,端口被占用时可以修改,默认6800
rpc-listen-port=6800

# 设置的RPC授权令牌,v1.18.4新增功能,取代--rpc-user和--rpc-passwd选项
#rpc-secret=<TOKEN>

# 设置的RPC访问用户名,此选项新版已废弃,建议改用--rpc-secret选项
rpc-user=ruyo

# 设置的RPC访问密码,此选项新版已废弃,建议改用--rpc-secret选项
rpc-passwd=RUYO.net

## BT/PT下载相关

# 当下载的是一个torrent结尾的种子时,自动开始BT任务,默认true
# follow-torrent=true

# BT监听端口,当端口被屏蔽时使用,默认6881-6999
listen-port=51413

# 单个种子最大连接数,默认55
# bt-max-peers=55

# 打开DHT功能,PT需要禁用,默认true
enable-dht=true

# 打开IPv6 DHT功能,PT需要禁用
# enable-dht6=false

# DHT网络监听端口,默认6881-6999
#dht-listen-port=6881-6999

# 本地节点查找,PT需要禁用,默认false
# bt-enable-lpd=true

# 种子交换,PT需要禁用,默认true
enable-peer-exchange=true

# 每个种子限速,对少种的PT很有用,默认50K
#bt-request-peer-speed-limit=50K

# 客户端伪装,PT需要
peer-id-prefix=-TR2770-
user-agent=Transmission/2.77
# 当种子的分享率达到这个数时,自动停止做种,0为一直做种,默认1.0
seed-ratio=0

# 强制保存会话,即使任务已经完成,默认false
# 较新的版本开启后会在任务完成后依然保留.aria2文件
# force-save=false

# BT校验相关,默认true
# bt-hash-check-seed=true

# 继续之前的BT任务时,无需再次校验,默认false
bt-seed-unverified=true

# 保存磁力链接元数据为torrent结尾的种子文件,默认false
bt-save-metadata=true

完成后通过以下命令赋予权限。

1
chmod +x /etc/init.d/aria2

然后通过以下命令即可实现相应功能。

1
2
3
4
5
6
7
8
# 启动
/etc/init.d/aria2 start

# 停止
/etc/init.d/aria2 stop

# 重启
/etc/init.d/aria2 restart

图形界面

现成网站

可通过以下网站。

1
2
3
http://aria2c.com/
http://binux.github.io/yaaw/demo/
http://ariang.mayswind.net/
Aria2 Web UI

在服务器输入以下命令,然后访问IP:9999即可访问。

1
2
3
git clone https://github.com/ziahamza/webui-aria2
cd webui-aria2
python -m SimpleHTTPServer 9999
YAAW

在服务器输入以下命令,然后访问IP:9999即可访问。

1
2
3
git clone https://github.com/binux/yaaw
cd yaaw
python -m SimpleHTTPServer 9999
AriaNg

仓库如下。

1
https://github.com/mayswind/AriaNg

使用

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
# 当源地址存在诸如&amp;,*等shell的特殊字符时,需使用单引号/双引号把URI包含起来
# 下载文件
aria2c [网址]

# 分段下载
# 2表示使用2连接
aria2c -s 2 [网址]

# 断点续传
aria2c -c [网址]

# 下载torrent文件
aria2c -o [文件名] [网址]

# 后台下载
aria2c -D [网址]
aria2c –deamon=true [网址]

# 验证文件
aria2c –checksum=md5=[文件MD5]

# BT下载
aria2c [本地/远程种子路径]

# 设置DHT端口
aria2c –dht-listen-port=1234 .torrent

# 下载需要引用页的文件
aria2c –referer=referurl [网址]

# 单文件限速下载
aria2c –max-download-limit=500k [网址]

# 全局限速下载
aria2c –max-overall-download-limit=500k [网址]

# 下载需要Cookie验证的文件
aria2c –essay-header='Cookie:[cookie名称]=[cookie内容]' [网址]
aria2c –load-cookies=[cookie文件] [网址]

# 批量下载文本中所有URL
aria2c -i [文本文件路径]

下载资源搜索

magnetW

1
https://github.com/xiandanin/magnetW

离线下载

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 磁力空间
http://cilikongjian.com/

# 飞鸟下载器
https://web.feiniaobt.com/

# Pikpak
# 网页版
https://mumuchenchen.github.io/pikpak/
https://pikpak.kinh.cc
# Windows版
https://weinb.top/index.php/archives/168/
http://www.lanzoui.com/pikpak
# Mac+Windows版
https://qianye520.notion.site/qianye520/PikPak-Win-Mac_By_Shimily-a5201f193f1949be821579abdf096e09
# Android版
https://play.google.com/store/apps/details?id=com.pikcloud.pikpak&hl=en_US&gl=US

# 极致云视
# 可以免费在线观看,限制会员才能下载
# 可在不安装网站对应浏览器扩展的前提下,点击播放视频,利用下载得到的m3u8文件获取视频下载链接
http://www.yunshix.com/

文件传输

Dukto

可使同一局域网下的电脑传输文件,传输双方的系统类型可以不同。

1
https://www.52pojie.cn/thread-1086314-1-1.html

文件管理

nexusfile

适用于Windows的快速强大的文件管理器。

1
http://www.xiles.net/

润普

1
http://www.everydo.com/

IPFS

持久且分布式存储和共享文件的网络传输协议。

打开以下链接并安装IPFS CLI。

1
https://ipfs.io/

在命令提示符切换到解压后的安装目录,输入以下命令。

1
2
3
4
5
# 初始化
ipfs.exe init

# 开启守护进程
ipfs.exe daemon

在浏览器输入http://localhost:5001/webui进入主界面即可使用。在Files上传文件后右键点击Copy hash,使用以下命令即可查看该文件。

1
htttps://ipfs.io/[hash值]

也可通过以下命令上传本地文件。

1
2
3
4
5
6
7
# 上传
# 上传完后用localhost:8080/ipfs/[hash值]访问
ipfs add -r [文件(夹)路径]

# 发布到网络
# 发布后可用ipfs.io/[hash值]访问
ipfs name publish [hash值]

其余命令如下。

命令 含义
ifps id 查看节点ID
ipfs name resolve [节点ID] 查询节点hash值

tagLyst Next 3

标签式文件资料管理。

1
http://www.taglyst.com/

SparkleShare

1
https://www.sparkleshare.org/

Syncthing

文件同步程序。

1
https://syncthing.net/

ZOHO

适用于团队和个人的在线文件管理。

1
https://www.zoho.com.cn/docs/

Cloudreve

通过以下链接下载安装包,然后上传到服务器根目录。打开http://[域名]/CloudreveInstaller即可进入安装界面。

1
https://github.com/cloudreve/Cloudreve

若无权限,则需要在服务器使用以下命令。

1
chmod 777 [源码安装目录]

若安装失败,则可先安装宝塔镜像,并切换PHP版本。

安装成功后打开http://[域名]/Admin,使用提供的初始用户名和密码登录即可。一般需要在基础设置中添加跨域访问规则,来源为*,允许Methods全选,允许Headers为*,暴露Headers不填,缓存时间为0

MOVER.IO

文件迁移服务。支持OneDrive/GoogleDrive/Dropbox等。

1
https://mover.io/

GDIndex

1
https://gdindex-code-builder.glitch.me/

OLAINDEX

OneDrive文件管理。

1
https://github.com/WangNingkai/OLAINDEX

OneList

OneDrive文件管理。

1
https://github.com/malaohu/OneList--

Directory Lister

公开任何可通过Web访问的文件夹的内容以进行浏览和共享。

1
https://www.directorylister.com/

Tiny File Manager

基于Web的文件管理器。

1
https://github.com/prasathmani/tinyfilemanager

Z-File

在线文件目录。

1
https://github.com/zhaojun1998/zfile

SeaweedFS

简单且高度可扩展的分布式文件系统。

1
https://github.com/chrislusf/seaweedfs

Syncthing

文件同步程序。

1
https://github.com/syncthing/syncthing

h5ai

HTTP Web服务器的现代文件索引器。

1
https://larsjung.de/h5ai/

ocDownloader

1
https://github.com/e-alfred/ocdownloader

Nextcloud

1
2
https://docs.nextcloud.com/server/17/user_manual/
https://github.com/nextcloud/docker

filebrowser

1
https://github.com/filebrowser/filebrowser

微力同步

高效的数据传输工具。

1
http://www.verysync.com/

FileRun

自托管文件同步和共享。

1
https://filerun.com/

使用CentOS6 X64系统部署,命令如下。

1
2
3
wget ftp://192.99.11.204/FileRun_2017_03_18_PHP7.zip 
unzip FileRun_2017_03_18_PHP7.zip
chmod 777 -R system/data

访问网址即可进入向导。

FFmpeg插件可通过以下命令安装。

1
2
3
4
5
6
yum install yasm -y
wget http://ffmpeg.org/releases/ffmpeg-3.1.3.tar.bz2
tar jxvf ffmpeg-3.1.3.tar.bz2
cd ffmpeg-3.1.3
./configure
make && make install

Furk.net

获取媒体文件并立即流式传输。

1
https://www.furk.net/

KodExplorer

网络文件管理器。

1
2
https://github.com/kalcaddle/KODExplorer
https://kodcloud.com/

MultCloud

跨网盘传输文件在线服务。

1
https://www.multcloud.com/

Air Explorer

全球各大网盘服务之间文件同步工具。免费版每个云服务器只能登陆1个账号,不支持计划任务,不支持限速。

1
https://www.airexplorer.net/en/

filestack

上载,转换任何文件并将其传送到应用中。

1
https://www.filestack.com/

截图

Snipaste

有贴图功能。

1
https://www.snipaste.com/

ShareX

1
https://getsharex.com/

FSCapture

1
https://dl.pconline.com.cn/download/409863.html

系统维护

Dism++

需在Windows 7及以上系统使用。

1
http://www.chuyu.me/zh-Hans/

360系统急救箱独立版

1
http://www.xue51.com/soft/15383.html

CGI备份还原

1
https://www.ranwenzw.com/xiazai/49240.html

CleanMyPC

1
2
3
https://macpaw.com/cleanmypc
https://www.lanzoux.com/ic9hf1e
https://www.lanzoux.com/ic9hhmh

Wise Disk Cleaner

1
2
https://www.wisecleaner.com/wise-disk-cleaner.html
https://www.lanzoux.com/ic9oorg

一键系统优化加速工具

1
https://www.lanzoux.com/ic9onud

火绒弹窗拦截独立版

1
https://www.lanzoux.com/iqAkjgyw9vc

卸载工具

Geek Uninstaller

1
https://www.lanzoux.com/ic9h9da

Revo Uninstaller Pro

1
2
https://www.jb51.net/softs/654861.html
https://www.lanzoux.com/ic9h98f

IObit Uninstaller

1
https://www.lanzoux.com/ic9ha6j

硬件配置与检测

AIDA64

1
https://www.aida64.com/downloads

SiSoftware Sandra

1
https://www.sisoftware.co.uk/download-buy/

everest

可用于配置较低的主机,在AIDA64打不开时可使用本软件。

1
https://www.onlinedown.net/soft/106556.htm

CPU-Z

查看CPU配置。

1
https://www.cpuid.com/

GPU-Z

查看GPU配置。

1
https://www.techpowerup.com/download/gpu-z/

Fritz Chess Benchmark4

象棋跑分软件。

1
https://download.pchome.net/system/benchmark/download-3641.html

图吧工具箱

1
http://www.tbtool.cn/

卡硬工具箱

1
http://www.kbtool.cn/

入梦工具箱

1
https://www.bianshengruanjian.com/index.php/archives/5/

硬盘分区

DiskGenius

1
https://www.diskgenius.cn/

文件压缩

Bandizip

破解补丁链接如下。

1
2
3
4
5
6
7
https://ltribe.lanzoui.com/inf1Xrmikif

# 新版已失效
# 应用补丁后需要在软件注册,邮箱随便填,密钥填以下两个之一
# 企业版离线密钥 / 20380808-ENT000002-0E34A52561-166371E0
# 专业版离线密钥 / 20380808-PRO0BFAEBFDAE23C425E-173E2DF1
https://ltribe.lanzous.com/iw8h3e30u0h

镜像拷录

UltraISO

注册码如下。

1
2
3
4
5
用户名 / 王涛
注册码 / 7C81-1689-4046-626F

用户名 / 累累
注册码 / 4EE9-A156-B015-A70E

rufus

1
http://rufus.ie/

文本编辑

WinHex

1
https://www.onlinedown.net/soft/1510.htm

010 Editor

1
http://www.pc0359.cn/downinfo/60574.html

MarkdownPad 2

密钥如下。

1
2
3
4
5
// 邮箱
Soar360@live.com

// 授权秘钥
GBPduHjWfJU1mZqcPM3BikjYKF6xKhlKIys3i1MU2eJHqWGImDHzWdD6xhMNLGVpbP2M5SN6bnxn2kSE8qHqNY5QaaRxmO3YSMHxlv2EYpjdwLcPwfeTG7kUdnhKE0vVy4RidP6Y2wZ0q74f47fzsZo45JE2hfQBFi2O9Jldjp1mW8HUpTtLA2a5/sQytXJUQl/QKO0jUQY4pa5CCx20sV1ClOTZtAGngSOJtIOFXK599sBr5aIEFyH0K7H4BoNMiiDMnxt1rD8Vb/ikJdhGMMQr0R4B+L3nWU97eaVPTRKfWGDE8/eAgKzpGwrQQoDh+nzX1xoVQ8NAuH+s4UcSeQ==

EditPlus

注册码在线网站如下。

1
https://51.ruyo.net/test/editplus-generate.html

源码如下。

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
var list = [0,49345,49537,320,49921,960,640,49729,50689,1728,1920,51009,1280,50625,50305,1088,52225,3264,3456,52545,3840,53185,52865,3648,2560,51905,52097,2880,51457,2496,2176,51265,55297,6336,6528,55617,6912,56257,55937,6720,7680,57025,57217,8000,56577,7616,7296,56385,5120,54465,54657,5440,55041,6080,5760,54849,53761,4800,4992,54081,4352,53697,53377,4160,61441,12480,12672,61761,13056,62401,62081,12864,13824,63169,63361,14144,62721,13760,13440,62529,15360,64705,64897,15680,65281,16320,16000,65089,64001,15040,15232,64321,14592,63937,63617,14400,10240,59585,59777,10560,60161,11200,10880,59969,60929,11968,12160,61249,11520,60865,60545,11328,58369,9408,9600,58689,9984,59329,59009,9792,8704,58049,58241,9024,57601,8640,8320,57409,40961,24768,24960,41281,25344,41921,41601,25152,26112,42689,42881,26432,42241,26048,25728,42049,27648,44225,44417,27968,44801,28608,28288,44609,43521,27328,27520,43841,26880,43457,43137,26688,30720,47297,47489,31040,47873,31680,31360,47681,48641,32448,32640,48961,32000,48577,48257,31808,46081,29888,30080,46401,30464,47041,46721,30272,29184,45761,45953,29504,45313,29120,28800,45121,20480,37057,37249,20800,37633,21440,21120,37441,38401,22208,22400,38721,21760,38337,38017,21568,39937,23744,23936,40257,24320,40897,40577,24128,23040,39617,39809,23360,39169,22976,22656,38977,34817,18624,18816,35137,19200,35777,35457,19008,19968,36545,36737,20288,36097,19904,19584,35905,17408,33985,34177,17728,34561,18368,18048,34369,33281,17088,17280,33601,16640,33217,32897,16448];
var hexchars = ['0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'];
var regcode = new Array(29);
var i = 0, j = 0, k = 0;
var len, temp, sum, result;
var username = document.getElementById("username").value;
username = username.replace(/^\s+|\s+$/g, "");

for(i = 0;i < 5;i++,k++)
{
for(j = 0;j < 5;j++,k++)
{
regcode[k] = hexchars[parseInt(Math.random() * 16)];
}
if(k == 29)
break;
regcode[k] = '-';
}

len = username.length;

sum = 1;
for(i = 0;i < len;i++)
sum += username.charCodeAt(i);
temp = (parseInt( (sum + 23) / 6 ) + 3) * 7 % 16;
regcode[6] = hexchars[temp & 0xF];

sum = 1;
for(i = 0;i < len;i++)
sum += username.charCodeAt(i);
temp = parseInt( (3 * sum + 39) / 8 ) % 16;
regcode[9] = hexchars[temp & 0xF];

sum = 1;
for(i = 0;i < len;i++)
sum += username.charCodeAt(i);
temp = parseInt( (3 * sum + 19) / 9 ) % 16;
regcode[7] = hexchars[temp & 0xF];

sum = 1;
for(i = 0;i < len;i++)
sum += username.charCodeAt(i);
temp = parseInt( (sum + 10) / 3 ) * 8 % 16;
regcode[10] = hexchars[temp & 0xF];

sum = 1;
for(i = 0;i < len;i++)
sum += username.charCodeAt(i);
temp = (parseInt( (9 * sum + 10) / 3 ) + 36) % 16;
regcode[4] = hexchars[temp & 0xF];

sum = 1;
for(i = 0;i < len;i++)
sum += username.charCodeAt(i);
temp = parseInt( (5 * sum + 11) / 5 ) % 16;
regcode[8] = hexchars[temp & 0xF];

result = 0;
for(i = 0;i < len;i++)
result = ((result >> 8) & 0xFF) ^ list[username.charCodeAt(i) ^ (result & 0xFF)];
result = result.toString(16).toUpperCase();
regcode[2] = result.charAt(0);
regcode[3] = result.charAt(1);

len = regcode.length;
result = 0;
for(i = 2;i < len;i++)
result = ((result >> 8) & 0xFF) ^ list[regcode[i].toString().charCodeAt(0) ^ (result & 0xFF)];
result = result.toString(16).toUpperCase();
regcode[0] = result.charAt(0);
regcode[1] = result.charAt(1);
console.log(regcode.join(''));

本地搜索

Everything

可将某目录映射到localhost。打开选项-HTTP服务器,勾选启用HTTP服务器,并选择服务器页面位置即可。

1
https://www.voidtools.com/zh-cn/

Listary Pro

1
https://www.52pojie.cn/thread-821169-1-1.html

文字识别

PandaOCR

1
https://github.com/miaomiaosoft/PandaOCR

天若OCR

1
https://tianruoocr.cn/

其它

1
2
3
4
5
6
7
8
9
10
11
12
13
# 全平台
https://mooc1.chaoxing.com/zt/203917711.html
https://github.com/AnyListen/tools-ocr/releases

# Windows
https://github.com/AnyListen/tianruoocr
https://gitee.com/wanglifree/tianruoocr-cl
https://www.52pojie.cn/thread-754074-1-1.html
https://github.com/miaomiaosoft/PandaOCR
https://github.com/miaomiaosoft/PandaOCR.Pro
http://spf.cn/ocr/
https://getquicker.net/
https://docs.ayano.top

虚拟机

Qemu Manager

1
https://www.cr173.com/soft/794471.html

密码破解

Accent RAR

RAR文件密码破解工具。

1
http://www.uzzf.com/soft/118363.html

ziprello

ZIP文件密码破解工具。

1
https://www.lanzous.com/i5mxkza

压缩包解密

1
https://axu.lanzous.com/icbt77g

密码管理

LastPass

教育版

1
https://lastpass.com/edupromo.php

bitwarden

1
https://bitwarden.com/

keybase

1
https://keybase.io/

RoboForm

教育版

1
https://www.roboform.com/promotions/college

LoginTC

可免费试用。

1
https://www.logintc.com/

Have I Been Pwned

检查密码是否已经泄露。

1
https://haveibeenpwned.com/

onelogin

1
https://www.onelogin.com/

CloudSploit

1
https://cloudsploit.com/

BitNinja

1
https://bitninja.io/

Auth0

1
https://auth0.com/

图片放大

Waifu2x

1
https://github.com/AaronFeng753/Waifu2x-Extension-GUI/releases

X-Mind

1
https://ltribe.lanzous.com/icUNjdo4o1g

终端美化

FluentTerminal

带SSH功能。

1
https://github.com/felixse/FluentTerminal

网络调试与优化

PsPing

支持ICMP Ping、TCP Ping、网络延迟(TCP/UDP)、带宽测试(TCP/UDP)。

1
https://download.sysinternals.com/files/PSTools.zip

下载后放到C:\Windows\System32,在命令行输入psping即可开始使用。可输入以下命令查询具体命令。

1
2
3
4
5
6
7
8
9
10
11
// ICMP PING
psping -? i

// TCP PING
psping -? t

// 响应延迟
psping -? l

// 带宽测试
psping -? b

示例如下。

1
2
3
4
5
6
7
8
9
10
11
// ICMP PING
psping -4 -n 10 -w 2 -h 10 www.baidu.com

// TCP PING
psping -4 -n 10 -w 2 -h 10 www.baidu.com:443

// 响应延迟
psping -l 1500 -n 300 -h 10 51.ruyo.net:443

// 带宽测试
psping -b -l 1500 -n 300 -h 10 51.ruyo.net:443

TCPing

检测端口是否开启和TCP延迟的工具。对于Windows,可通过以下链接下载,然后复制tcping.exe到C:\Windows\System32,在命令行输入tcping以调用。

1
https://www.elifulkerson.com/projects/tcping.php

对于Mac,通过Homebrew安装即可。

1
brew install tcping

对于Linux,可在终端执行以下命令以安装。

1
2
3
4
5
6
7
yum install -y tcptraceroute
yum install -y bc

cd /usr/bin
wget http://www.vdberg.org/~richard/tcpping
chmod +x tcpping
mv tcpping tcping

FinalShell

一体化的服务器网络管理软件。

1
http://www.hostbuf.com/t/989.html

cFosSpeed

网络质量以及本地延迟优化软件。网站需要翻墙才能打开。

1
http://www.cfos.de/zh-cn/index.htm

破解版如下。

1
https://pan.baidu.com/s/1mhBC7Ja

流程图

draw.io

1
https://www.lanzoux.com/iQUObgedhrc

Processist

1
https://www.lanzoux.com/idmOCgedlsh

Dia

1
https://www.lanzoux.com/i5E9bgedkng

ClickCharts

1
https://www.lanzoux.com/ii7PNgedi8j

操作录制

Quite Imposing Plus 5

1
https://axu.lanzoux.com/iQEOoidfl4b

Acrobat DC 2020

1
https://pan-yz.chaoxing.com/external/m/file/474329810964955136

TinyTask

1
https://axu.lanzoux.com/iG9inidfnba

浏览器

pcxFirefox

1
https://sourceforge.net/projects/pcxfirefox/files/Release/Firefox/

增强版Chrome

1
https://shuax.com/project/chrome/

游戏库

1
https://wwc.lanzouy.com/b03j43zxi(密码 / 0000)

文件预览

1
2
3
4
5
6
# SumatraPDF,预览PDF
https://www.sumatrapdfreader.org/free-pdf-reader

# QuickLook
https://pooi.moe/QuickLook/
https://github.com/QL-Win/QuickLook/wiki/Available-Plugins

全文检索

Windows

Archivarius 3000

1
https://axu.lanzoux.com/ix0fdhthm6b

FileLocator Pro

1
https://axu.lanzoux.com/isXexhtp2ad

Microsoft Office 2010筛选器

添加docx/pptx/xlsx格式搜索支持。

1
https://axu.lanzoux.com/i8i14hthwxi

Mac

DocFetcher

1
http://docfetcher.sourceforge.net/en/download.html

屏幕录像

网页

1
2
https://www.apowersoft.cn/free-online-screen-recorder
https://showmore.com/zh/

Chrome扩展

1
2
3
4
5
# Stream Recorder
https://chrome.google.com/webstore/detail/stream-recorder-download/iogidnfllpdhagebkblkgbfijkbkjdmm?hl=zh-CN

# Separate Window
https://chrome.google.com/webstore/detail/separate-window/cbgkkbaghihhnaeabfcmmglhnfkfnpon?hl=zh-CN

电脑端

全平台

1
2
3
4
5
# OBS Studio
https://github.com/obsproject/obs-studio

# ActivePresenter
https://atomisystems.com/download/

Mac

打开QuickTime Player后,点击文件-新建屏幕录制即可。

Windows

1
2
3
4
5
# Captura
https://github.com/MathewSachin/Captura

# vokoscreenNG
https://github.com/vkohaupt/vokoscreenNG

全平台

1
2
3
4
https://mooc1.chaoxing.com/zt/201726403.html?_from_=&rtag=
https://getkap.co/
https://monosnap.com/welcome
https://www.apowersoft.cn/record-all-screen

划词翻译

1
2
https://hcfy.limingkai.cn/
https://saladict.crimx.com/

病毒查杀

全平台

卡巴斯基

1
https://www.kaspersky.com.cn/free-antivirus

数学建模

Maple

数学建模软件。

Mathematica

数学建模软件。

办公工具

WPS政府版/教育版

在安装前需要卸载之前的版本,并以wps、kingsoft为关键词进行全盘搜索,删除相关文件和文件夹。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 教育版
https://ncre.neea.edu.cn/html1/report/1507/861-1.htm
https://it.ynnu.edu.cn/info/1146/2421.htm
https://www.dqzyxy.net/xdjy/info/9377/58678.htm

# 政府版
http://www.daqing.gov.cn/xiangguanxiazai/14436.html
http://www.xjfydj.com/P/C/66148.htm
https://wps.jcgov.gov.cn/downloadOffice
https://yzy.gdzwfw.gov.cn/download.html
http://info.dxzc.gov.cn/Item/21126.aspx

# 邮政版
https://www.123pan.com/s/RcsRVv-tkB7H.html

自动重复处理

键盘鼠标操作录制

1
2
3
4
5
6
7
8
# 按键精灵
http://download.myanjian.com/

# Tingtask
https://thetinytask.com/

# Keymousego
https://github.com/taojy123/KeymouseGo

需要逻辑判断的自动化

1
2
3
4
5
6
7
8
9
10
# UiBot
https://www.uibot.com.cn/

# 影刀
https://www.winrobot360.com/

# Power Automate Desktop
# Windows 11内置,非Windows 11可通过以下链接下载
https://www.microsoft.com/store/productId/9NFTCH6J7FHV
https://go.microsoft.com/fwlink/?linkid=2185680

Pixiv

XZPixivDownloader

Pixiv图片下载器。

1
https://github.com/xuejianxianzun/XZPixivDownloader

Pixiv-Nginx

PIXIV网页版及客户端访问恢复。

1
2
https://github.com/mashirozx/Pixiv-Nginx
https://2heng.xin/2017/09/19/pixiv/

P站非会员查看人气作品

1
https://github.com/chenjiandongx/pixiv

音频处理

1
2
# ffmpeg助手
https://heiwukeji.lanzout.com/iG6pK0xbb91g

剪贴板共享

Clipboard-online

用于iOS和Windows之间共享剪贴板,通过将本机剪贴板暴露于HTTP端口、iOS发送HTTP请求来获取/发送剪贴板的方式实现,仓库链接如下。

1
https://github.com/YanxinTang/clipboard-online

Windows安装以上仓库的安装包,iOS使用以下两个捷径。

1
2
3
4
5
# 获取Wndows剪贴板
https://www.icloud.com/shortcuts/a10cc2d0f1f94249b36489db102c367d

# 发送到Windows剪贴板
https://www.icloud.com/shortcuts/d9466ea3eff54e91bf1f0801cc7ce32c

运行捷径前需要配置。在Windows下查看本机IP,可通过cmd下输入ipconfig查看。然后在iOS下打开捷径的配置,按照提示添加键和值,其中键是Wi-Fi名称,值是刚才获取的IP,其它保持默认即可。

FnSync

用于Android和Windows之间共享剪贴板,仅支持Windows 10。
s

1
https://gitee.com/holmium/fnsync

Windows安装以上仓库的安装包,Android安装以下APP。

1
https://www.coolapk.com/apk/269031

完成配置后,对于Android 10以下版本即可使用。对于Android 10及以上版本,由于Android 10对系统权限做了限制,不允许应用后台获取剪贴板,因此需要手动下拉通知栏,并点击发送剪切板文本。

快贴

1
https://clipber.com/

Pushbullet

1
https://www.pushbullet.com/

iOS客户端已下架,可通过捷径实现类似效果。

1
https://meta.appinn.net/t/topic/18629/2

其它

1
2
3
4
https://chigusa-web.com/clibor-zh-cn/
http://clipdiary.com/index_simplifiedchinese.php
https://github.com/sabrogden/Ditto
https://github.com/huiyadanli/PasteEx

格式转换

普通格式转换

1
2
3
4
5
https://cn.office-converter.com/
https://www.online-convert.com/
https://convertio.co/zh/
https://cloudconvert.com/
https://www.cleverbrush.com/

视频格式转换

Windows

M3U8视频辅助工具

1
https://www.52pojie.cn/thread-878944-1-1.html

QQ影音转码

1
2
http://pan-yz.chaoxing.com/external/m/file/322880726122655744?appId=1000&name=QQ%E5%BD%B1%E9%9F%B3%E8%BD%AC%E7%A0%81%E5%B7%A5%E5%85%B7.rar
http://pan-yz.chaoxing.com/external/m/file/322852715956563968?appId=1000&name=QQ%E5%BD%B1%E9%9F%B3%E8%BD%AC%E7%A0%81%E5%B7%A5%E5%85%B7.exe

迅捷视频转换

1
2
https://pan-yz.chaoxing.com/external/m/file/312568666797150208
https://pan-yz.chaoxing.com/external/m/file/322851553912061952

万兴全能格式转换器

1
2
https://pan-yz.chaoxing.com/external/m/file/322853804621729792
https://pan-yz.chaoxing.com/external/m/file/322879210716426240

Mac

万兴全能格式转换器

1
https://pan-yz.chaoxing.com/external/m/file/322879349300432896

APE转换

把cue文件拖入千千静听中,选中你需要转换的歌曲,右键选择转换格式即可。

NCM/QMC转换

网站

1
2
http://tool.moresound.tk/
https://ix64.github.io/unlock-music/

电脑端应用

全平台

1
https://github.com/Presburger/qmc-decoder/releases

Windows

1
https://lanzoux.com/i8fAuez0yjc

Mac

1
2
https://lanzoux.com/iQyFQez0zgf
https://lanzoux.com/iydObez0zpe

手机端应用

Android

1
https://lanzoux.com/ivcrPez10fa

TS转MP4

Medlexo

1
2
https://www.lanzoux.com/b06a213gj
https://www.lanzoux.com/b06a274lg

M3U8视频辅助工具

1
https://www.lanzoux.com/b06a213ra

PDF压缩

1
2
3
4
5
6
7
8
# Windows
http://freepdfcompressor.com/
http://reducepdfsize.com/
https://www.4dots-software.com/free-pdf-compress/zh/

# Mac
https://lightweightpdf.com/
https://www.imymac.tw/free-imymac-pdf-compressor/

PDF处理

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 需要edu邮箱
https://online.foxitsoftware.cn/

# 其它
https://docsmall.com/
https://www.foxitcloud.cn/
https://lightpdf.cn/pdf-edit
https://www.pdfpai.com/
https://www.ilovepdf.com/zh-cn
https://lightpdf.com/zh/
http://www.pdfdo.com/
https://smallpdf.com/
https://www.hipdf.com/
http://www.html22.com/zh/
https://issuu.com/
https://tools.pdf24.org/zh/
https://www.sejda.com/
https://pdfcandy.com/cn/
https://www.tracker-software.com/product/pdf-xchange-editor
https://zh-cn.libreoffice.org/
https://www.cnblogs.com/pdfpatcher/archive/2011/02/25/Index.html

文本语音转换

文字转语音

网站

1
2
3
4
https://www.xfyun.cn/services/online_tts
http://www.ffkuaidu.com/
http://xfyousheng.com/
https://peiyin.wozhiyi.com/production.html

电脑端应用

1
https://www.lanzoux.com/i1Ks9e04ecj

手机端应用

1
2
3
http://www.voiceclub.cn/index.html#/
https://www.lanzoux.com/ixU3Ce050xc
https://www.lanzoux.com/iq1kKe050rg

语音转文字

网站

1
2
http://www.iyuji.cn/iyuji/home
https://www.iflyrec.com/

API接口

创建应用后即可获取API Key和Secret Key。

1
https://developer.baidu.com/vcast

其余API如下。

1
2
3
4
5
6
7
8
9
10
11
// 语音转文字
http://ai.baidu.com/tech/speech/asrpro

// 截图文字识别
http://ai.baidu.com/tech/ocr/general

// 文字转语音
http://ai.baidu.com/tech/speech/tts

// 复制翻译
http://fanyi-api.baidu.com/api/trans/product/index

软件

1
https://axu.lanzoux.com/ipdDye04dij

图片画质修复

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
# waifu2x模型,基于动漫图片训练而得的AI模型
# 源模型
https://github.com/nagadomi/waifu2x
# 工具
https://gitee.com/aaronfeng0711/Waifu2x-Extension-GUI
https://github.com/X-Lucifer/AI-Lossless-Zoomer
https://github.com/net2cn/Real-ESRGAN_GUI
https://www.ghxi.com/ghimgamp.html
http://www.ucbug.com/soft/132125.html
http://waifu2x.udp.jp/
https://waifu2x.me/
https://waifu2x.booru.pics/
https://waifu2x.pro/
https://waifu2x.org/

# Real-ESRGAN模型
# 源模型
https://github.com/xinntao/Real-ESRGAN
# 工具
https://github.com/X-Lucifer/AI-Lossless-Zoomer
https://github.com/net2cn/Real-ESRGAN_GUI
https://www.ghxi.com/ghimgamp.html

# 其它
https://bigjpg.com/
https://imagetoolbox.app/
https://placeimg.com/
https://shields.io/
https://jpghd.com/

视频画质修复

Topaz Video Enhance AI

各种修复模型区别如下。

类型 说明
Artemis 适合修复画面本身噪点不多,已经被轻微后处理过的视频
Dione 能够处理隔行扫描视频,但当视频中有运动的主体时其横纹时常有残留,且当人脸在画面中占比不是很大时,眼睛经常会有类似水纹的横纹存在
Gaia 修复CG动画和数码制作的动画,颜色不复杂、线条明显的手绘动画用Gaia-CG,采用特别材质,如水彩、丙烯等的动画用Gaia-HQ
Theia 自己调整参数的模型

一般360P、480P建议选低质量模型,720P建议中等质量,1080P则选高质量。

建议关闭裁剪以填充帧。若为真人视频,颗粒数量和大小推荐均设置为0.8或均设置为0,动画CG视频则均建议设置为0。

扫描器

APP可用Office Lens、联想智能扫描、Adobe Scan、白描、坚果云扫描、Google PhotoScan 照片扫描仪、ABBYY FineReader。小程序可用腾讯文档智能扫描。

壁纸

1
2
# 香芋壁纸
https://mtribe.lanzout.com/iBDzy0spu6oj

网络直播

1
2
3
4
https://github.com/guyijie1211/JustLive-Web
https://github.com/guyijie1211/JustLive-Android
https://github.com/iiijam/ice_live_viewer
https://github.com/wbt5/real-url

字体管理

1
2
https://www.hellofont.cn/
https://typefaceapp.com/

音乐处理

Audacity

1
https://axu.lanzoux.com/igeNYe04dne

GoldWave

1
https://axu.lanzoux.com/iqGQGe04e1i

WavePad

1
https://axu.lanzoux.com/izccwe04dri

音乐播放

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# MusicFree
# 打开软件后点击设置-插件管理-从网络导入-安装,输入以下链接即可导入音源
# https://gitee.com/maotoumao/MusicFreePlugins/raw/master/plugins.json
https://github.com/maotoumao/MusicFree

# 茉莉音乐
https://www.zdfans.com/html/7639.html

# Listen1
http://listen1.github.io/listen1/

# 音乐搜索器
https://github.com/maicong/music

# 洛雪音乐助手桌面版
https://github.com/lyswhut/lx-music-desktop

音乐伴奏制作

SpleeterGui

下载链接如下。

1
https://github.com/boy1dr/SpleeterGui

iZotope RX 7 Audio Editor

下载链接如下。

1
https://pan-yz.chaoxing.com/external/m/file/476456201711878144

打开RX7,拖入要消音的音频,然后在右边的面板找到Music Rebalance,接着在弹出的面板里面把最左边的人声拉到最低,接着点击下方的Render确定修改即可。

Adobe Audition

下载链接如下。

1
https://pan-yz.chaoxing.com/external/m/file/476456698956173312

启动AU,拖入音频,选中需要修改的音频,点击效果-立体声音像-中置声道提取器。选择预设中的人声移除,然后把右边的中心声道电平拉到最低,最后点击应用。

手写模拟

1
https://ltribe.lanzous.com/iiOuonc9hef

京东签到

1
https://ltribe.lanzous.com/iNmxNn6l4rg

图片上色

1
2
https://github.com/taizan/PaintsChainer
https://github.com/lllyasviel/style2paints

图片编辑

可用EPIK、一甜相机、TouchRetouch、Photo Retouch等。

1
2
https://github.com/tannerhelland/PhotoDemon
https://www.potatofield.cn/imagetoolkit

抠图

可用天天P图、Backgroud Eraser。也可用以下软件。

1
2
3
4
5
6
# Franzis CutOut 7
# 许可证获取
https://reg.franzis.de/reg/COW-22171000/999999999/0/502/2.0/0/en/
# 软件下载
https://download.digitalphoto.de/files/DigitalPHOTO/2021/02/CutOut-7_winde.exe.zip
https://download.digitalphoto.de/files/DigitalPHOTO/2021/02/CutOut-7-standard_macde.zip

图片搜索

1
2
3
4
5
6
7
8
9
10
11
12
# 全平台
https://juniperphoton.net/myersplash/
https://github.com/aitexiaoy/Strawberry-Wallpaper
https://www.artpip.com/

# Windows
https://github.com/t1m0thyj/WinDynamicDesktop
https://www.microsoft.com/zh-cn/p/dynamic-theme/9nblggh1zbkw#activetab=pivot:overviewtab

# Mac
https://satelliteeyes.tomtaylor.co.uk/
http://paper.meiyuan.in/

加水印

1
https://github.com/rosuH/EasyWatermark

GIF压缩

1
2
3
4
5
6
7
# UleadGIFAnimator
https://www.lanzoux.com/iUEKYgxu9zi

# PP鸭
https://pan-yz.chaoxing.com/external/m/file/413806043510824960

http://ppduck.com/

视频剪辑

1
2
3
https://github.com/mifi/lossless-cut
https://avidemux.sourceforge.net/
https://mooc1.chaoxing.com/zt/201533924.html

视频去水印

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 快剪辑
http://kuai.360.cn/home.html

# 格式工厂
https://pan-yz.chaoxing.com/external/m/file/447904642101260288
https://pan-yz.chaoxing.com/external/m/file/447905398419349504
https://axu.lanzous.com/iQ1Cqd92vyj

# Remove Logo Now!
https://pan-yz.chaoxing.com/external/m/file/324681592051896320

# Easy Video Logo Remover
https://pan-yz.chaoxing.com/external/m/file/324690584870350848

# AJJCut,剪掉爱剪辑的片头和片尾
https://github.com/117503445/AJJCut

# 乐视频
https://axu.lanzous.com/ibld75c

文库下载

百度文库

VIP免费、VIP专享、需付费但可完整预览的文档可下载,需付费且无法完整预览的文档不可下载。

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
# 在线下载网站
http://html22.com/zh/
http://bdwk.588230.com/
https://www.tool77.com/wenku

# 百度文库下载利器
链接 / https://pan.baidu.com/s/10ZHoaW3ECOWIZE-2EuhR6Q
提取码 / 7g09

# 大圣文库下载器
https://www.lanzous.com/i6tve2h

# DoDo百度文库提取工具
# 只能提取doc格式的文件
https://www.lanzoux.com/iknkfe9fvji

# 文库下载器
https://naitangmao.lanzoui.com/iIkPzhsbvif

# wkDownloader
https://www.52pojie.cn/forum.php?mod=viewthread&tid=1516078

# 文库下载器BY小叶
# 解压后将tmp下的ttf的权限设为拒绝读取,即可屏蔽更新弹窗
https://laoyee.lanzout.com/i2Bhrloeq6b

# Tampermonkey脚本
https://greasyfork.org/zh-CN/scripts/405373
https://greasyfork.org/zh-CN/scripts/437609

# 冰点文库
# 已停止维护,可能无法使用
https://www.lanzous.com/i50pm1i
https://axu.lanzoux.com/b06aezmeh
https://ltribe.lanzous.com/iDvT2mpao6h

其它文库

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
# 网站
# 爱问共享资料
http://ishare.iask.sina.com.cn/
# 道客巴巴
# 可使用阅读器免费打开文档,通过打印到PDF可免费获取文档
http://www.daokeyuedu.com/

# 文库下载器
https://www.lanzoux.com/icy3yg8a0va

# 豆丁当当
# 适用于豆丁、道客巴巴等
https://www.lanzoux.com/iblf8di

# 豆丁当当之道客专版
# 适用于豆丁
https://www.lanzoux.com/i1OG2g89zyh

# 文库下载助手
https://imwcr.cn/api/GetDocumentText/

# Tampermonkey脚本
https://greasyfork.org/zh-CN/scripts/435884

# doc_downloader
https://github.com/rty813/doc_downloader

# 稻壳阅读器
# 适用于稻壳,用阅读器打开后,通过打印到PDF即可导出
http://www.daokeyuedu.com/

数据恢复

1
2
3
4
5
6
7
8
9
# Windows
https://www.lanzoux.com/b06aavj5c

# Mac
https://www.lanzoux.com/b06aavi2d

# Android
https://www.lanzoux.com/b06aavi0b
https://www.lanzoux.com/b06aavhvg

文档对比

可用Word/WPS的审阅功能。也可用ExamDiff Pro、Beyond Compare。

在Windows上可通过在命令行输入以下命令,无限续期Beyond Compare。若无效,则需要删除安装目录下的BCUnrar.dll文件。

1
reg delete "HKEY_CURRENT_USER\Software\Scooter Software\Beyond Compare 4" /v CacheID /f

PDF转换

手机端可使用Microsoft Office、Adobe Scan(国区没有此APP)。电脑端可使用以下软件。

迅捷PDF转换器

1
https://pan-yz.chaoxing.com/external/m/file/312608395106230272

Solid Converter PDF

1
https://pan-yz.chaoxing.com/external/m/file/312609211821096960

Acrobat

打开后选择扫描和OCR,输出选择可搜索的图像(精确)即可。

Office2PDF

1
https://github.com/evgo2017/Office2PDF

清理重复文件

可用Duplicate Cleaner。

全文翻译

1
2
https://copytranslator.github.io/
http://www.zhiyunwenxian.com/

论文查重

1
2
https://www.lanzoux.com/i9wkwjc
https://axutongxue.coding.net/api/share/download/85540a82-4308-47c2-b1a6-b0cb0985245d

论文搜索和下载

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
http://www.koovin.com/
https://www.cn-ki.net/
https://www.academia.edu/
http://www.koovin.com/
http://www.ncpssd.org/
http://www.lunwenxiazai.com/
http://wenku.bemfa.com/
http://hiwenku.com/

# 上海科技创新资源中心
http://www.sgst.cn/
http://www.sstir.cn/register

# 广西壮族自治区图书馆
# 打开以下网站并注册账号,然后点击数字资源导航,选择知网进入。选择包库入口,输入之前注册的账号密码登陆
http://www.gxlib.org.cn/

# 浙江图书馆
# 打开支付宝并进入浙江图书馆生活号,点击服务-我的读者证,办理读者证。完成后打开以下链接,登录
https://www.zjlib.cn/

# 绍兴图书馆
# 打开支付宝并进入绍兴图书馆生活号,其余同上
http://www.sxlib.com/

# 辽宁图书馆
http://index.lnlib.net.cn/opac/reader/register
http://sso.lnlib.com/interlibSSO/main/main.jsp

# 贵州图书馆
http://www.gzlib.org/

# 长春图书馆
# 打开支付宝,搜索借书并关注生活号。点击我要借书,点左上角切换为长春图书馆,接着点击右下方我的-我的电子证,办理读者证。完成后打开以下链接,登录
http://www.ccelib.cn/

Bilibili视频下载

1
2
# BiliDownloader
https://github.com/JimmyLiang-lzm/biliDownloader_GUI

M3U8视频下载

1
https://github.com/nilaoda/N_m3u8DL-CLI

视频下载

1
2
3
4
5
6
7
8
9
10
# 无差别视频提取工具
https://github.com/Momo707577045/media-source-extract
# 可将下载的视频和音频在以下网站播放
http://blog.luckly-mjw.cn/tool-show/media-source-extract/player/player.html

# 其它
https://evilcult.github.io/moviecatcher/index.html
https://github.com/EvilCult/Video-Downloader
https://github.com/ingbyr/VDM
http://www.vidown.cn/

视频实时字幕与翻译

移动端可用Tap translate、Hi translate、Lingotube、搜狗翻译、zTranslate等。电脑端可使用以下方式。

Chrome

可在Chrome中点击设置-高级-无障碍,开启实时字幕,然后进入chrome://flags/并将Live Caption改为Enabled,即可开启实时字幕功能。

PotPlayer

PotPlayer内置在线字幕翻译。在视频上右键点击字幕-实时字幕翻译即可开启。该功能需要翻译API,可安装以下插件以添加百度翻译和腾讯翻译的API支持。

1
2
3
4
5
# 百度翻译
https://github.com/fjqingyou/PotPlayer_Subtitle_Translate_Baidu

# 腾讯翻译
https://github.com/BlackGlory/subtitle-translate-tmt

浏览器扩展

1
2
3
4
5
# YouTube™ 双字幕
https://chrome.google.com/webstore/detail/hkbdddpiemdeibjoknnofflfgbgnebcm

# SubTrans
https://chrome.google.com/webstore/detail/oflioiciloahhlekagfajdkigboemklf

视频补帧

播放器实时处理

可使用PotPlayer。视频播放时在PotPlayer上右键,选择图像处理-倍帧即可。最高可将视频处理成60帧。

也可配合SVP使用,获得更好的补帧体验。安装SVP后打开PotPlayer,右键选择选项,找到滤镜-全局滤镜优先权-添加系统滤镜,选择ffdshow raw video filter并确定,然后在滤镜优先排位设置下勾选刚才添加的滤镜,右侧选择强制使用。若有独显,还需要找到滤镜-视频解码器-内置解码器/DXVA 设置,勾选硬件加速并把DXCA2 Copy-Back切换为独显。完成后点击确定保存设置,然后重启电脑。

重启后打开SVP,然后用PotPlayer播放视频即可。

直接视频处理

RIFE算法

推荐使用。

1
2
https://github.com/YiWeiHuang-stack/Squirrel-RIFE
https://nmkd.itch.io/flowframes

Super SloMo算法

1
https://github.com/avinashpaliwal/Super-SloMo

DAIN插帧算法

1
2
https://github.com/baowenbo/DAIN
https://github.com/BurguerJohn/Dain-App

正则表达式编写

1
2
# Match Tracer
http://www.regexlab.com/zh/mtracer/

机器学习

Mapbox

1
https://www.mapbox.com/community/education/

Vertabelo

专业数据建模。

1
https://www.vertabelo.com/

SAS教育版

进行统计分析,数据挖掘和预测。

1
2
https://www.sas.com/en_us/software/university-edition.html
https://www.sas.com/en_us/software/on-demand-for-academics.html

MinIO

构建用于机器学习,分析和应用程序数据工作负载的高性能基础架构。

1
https://github.com/minio/minio

datapane

用Python创建和发布交互式报告。

1
https://datapane.com/

MonkeyLearn

训练定制的机器学习模型。

1
https://monkeylearn.com/

tamber

1
https://tamber.com/

Algorithmia

开发机器学习运营成熟度。

1
https://algorithmia.com/

bigML

1
https://bigml.com/

clarifai

计算机视觉和人工智能。

1
https://www.clarifai.com/

消息推送和同步

ably

1
https://www.ably.io/

Iron

快速通过托管消息队列传递消息。

1
https://www.iron.io/

OneSignal

Web推送,电子邮件和应用内消息。

1
https://onesignal.com/

QuickBlox

提供即时消息API。

1
https://quickblox.com/

simperium

跨平台的数据同步服务。

1
https://simperium.com/

pusher

跨平台的推送通知API。

1
https://pusher.com/beams

VWO

通过网络推送通知和Facebook Messenger使您的访客参与自动营销活动。

1
https://vwo.com/engage/?ref=pc

pushbots

1
https://pushbots.com/

QQ空间批量导出

1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 浏览器扩展
https://github.com/ShunCai/QZoneExport

# 油猴脚本
https://greasyfork.org/zh-CN/scripts/399958

# Windows
https://github.com/qinjintian/qq-zone
https://github.com/kahotv/QZAlbumTool

# 其它
https://github.com/dslwind/qzone-photo-downloader
https://gitee.com/songxf1024/QQZone_AutoDownload_Album
https://github.com/wwwpf/QzoneExporter

通讯

环信

1
https://www.easemob.com/

亲加通讯云

1
http://www.gotye.com.cn/

API调用

GraphQL Inspector

1
https://github.com/marketplace/graphql-inspector

axway

1
https://www.axway.com/en/streamdataio

Tyk

API和服务管理平台。

1
https://tyk.io/

AIPage

1
https://aipage.baidu.com/

Time Door

用于集成时间序列分析的API。

1
https://timedoor.io/

SOFODATA

从CSV文件创建API。

1
https://www.sofodata.com/

Postbacks

免费八千个回调。

1
https://www.postbacks.io/

calendarific

1
https://calendarific.com/

Cloudmersive

文件和资料转换API。

1
https://cloudmersive.com/

currencyscoop

1
https://currencyscoop.com/

DreamFactory

数据库API。

1
https://www.dreamfactory.com/

postman

API开发协作平台。

1
https://www.postman.com/
1
https://microlink.io/

ipgeolocation

1
https://ipgeolocation.io/

Vattly

1
https://vattly.com/

WrapAPI

1
https://wrapapi.com/

zenscrape

网络抓取API。

1
https://zenscrape.com/

happi.dev

1
https://happi.dev/

OCRSpace

OCR API。

1
https://ocr.space/

stream

聊天API。

1
https://getstream.io/

imagecharts

生成图表图像的API。

1
https://www.image-charts.com/

reSmush

提供图像优化的免费API。

1
https://resmush.it/

abstract

API​​抽象套件。

1
https://www.abstractapi.com/

BigData Cloud

大数据云API。

1
https://www.bigdatacloud.com/

OpenAPI 3

1
https://interaction-design.co.za/openapidesigner/

ip-api

1
https://ip-api.com/

API模拟

Pixela

记录并跟踪习惯或努力。

1
https://pixe.la/

microenv

REST API模拟。

1
https://microenv.com/

mockoon

API模拟,测试和重新创建所有类型HTTP和HTTPS响应。

1
https://mockoon.com/

RunKit

提供模拟JS环境,可测试npm模块。

1
https://runkit.com/home

micro-jaymock

微型API模拟微服务,用于生成伪造的JSON数据。

1
https://micro-jaymock.now.sh/

JSONPlaceholder

免费使用伪造的在线REST API进行测试和原型设计。

1
http://jsonplaceholder.typicode.com/

fake{JSON}

1
https://fakejson.com/

apiary

1
https://apiary.io/

My Fake API

1
https://myfakeapi.com/

ETF Data API

1
https://etf-data.com/

API Mocha

1
https://apimocha.com/

mockapi.io

模拟REST API。

1
https://www.mockapi.io/

编译工具

JetBrains

包括Clion、Pycharm等。

学生包

1
https://www.jetbrains.com/community/education/#students

激活

可用以下网站申请免费许可证。

1
https://www.jetbrains.com/shop/eform/opensource

也可使用以下破解补丁。

1
2
链接 / https://pan.baidu.com/s/1DH-MrLMr9cZWze3gfw_xTA
提取码 / 3urx

BELSoft

Java平台和应用。

1
https://bell-sw.com/

Jupyter

在线环境

可直接打开以下网站进入在线Jupyter环境。

1
https://cocalc.com/

安装

通过以下命令安装。

1
2
3
pip install jupyter
# 若较慢可尝试以下命令
pip install jupyter -i https://pypi.tuna.tsinghua.edu.cn/simple

配置文件

通过以下命令生成。

1
jupyter notebook--generate-config

启动

1
jupyter contrib nbextension install --user --skip-running-check

插件

nbextension

目录插件。通过以下命令安装。

1
2
pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user --skip-running-check

打开Jupyter后选择Nbextensions,开启Table of Contents即可。

其它

Unlocker

解除文件被占用的限制。

1
https://www.onlinedown.net/soft/24732.htm

f.lux

添加夜间模式。

1
https://justgetflux.com/

蚂蚁笔记

1
https://leanote.com/

绿色程序制作

1
https://www.lanzoux.com/iMtkjfcey0f

WizTree

磁盘文件分析。

1
https://www.lanzoux.com/iyl7Ig6ilxe

远程关机

1
https://ltribe.lanzoui.com/iDJjmjekfpi

Teambition云盘直链解析平台

直接打开以下链接即可使用。

1
https://teambition.icu/

也可在服务器自行搭建。对于Linux,在终端运行以下命令。

1
2
3
wget https://one.blob.core.chinacloudapi.cn/badyun/teambition/v0.01/app
chmod +x ./app
./app

然后在宝塔面板后台添加反向代理,代理名称为5213,目标URL为http://127.0.0.1/5213,发送域名为$host。

然后执行以下命令以让程序在后台运行。

1
nohup ./app &

对于Windows,下载以下应用并运行即可。

1
https://one.blob.core.chinacloudapi.cn/badyun/teambition/v0.01/app.exe

好司机下载器

提供电脑端大型游戏下载。

1
https://wwi.lanzous.com/i6FHJk3b1di

全能抢购神器

1
https://lanren.lanzous.com/iJPgojk0lfa

Buttondown

生成新闻通讯。

1
https://buttondown.email/

Public Resources on SAE

SAE公共资源。

1
http://lib.sinaapp.com/

transifex

基于云的翻译管理。

1
https://www.transifex.com/

APIFY

从任何网站提取数据。

1
https://apify.com/

posthook

在准确的时间或按照定义的工作流程回电。

1
https://posthook.io/

Netlicensing

简化许可证激活。

1
https://netlicensing.io/

asciinema

终端录制。

1
https://asciinema.org/

HELPlightning

1
https://helplightning.com/

Scrubit

获得准确的手术设置。

1
https://www.scrubit.com/

GPU.JS

1
https://gpu.rocks/#/

HuBoard

GitHub项目的即时项目管理。

1
https://huboard.com/

参考教程

桌维网管实典

1
https://hoochanlon.github.io/helpdesk-guide/

Teambition云盘直链解析平台 支持多用户,支持永久直链,支持列目录

1
https://www.52pojie.cn/thread-1320716-1-1.html

不重视硬件检测的人都后悔惨了!答应我务必用用这些超牛X的硬件工具箱

1
https://mp.weixin.qq.com/s/64gbcQJ_9ASRFe91rfRX6g

这些宝藏小工具,竟然能复活「被微软阉割的」文件管理好功能!

1
https://mp.weixin.qq.com/s/RwFi7XbGd0yqkqX7923iXw

1秒预览各类文件内容,这些软件真的配得上Windows必装!

1
https://mp.weixin.qq.com/s/TG7X4AXm1qJACQmZTEg8mA

神作!吾爱大佬出品!

1
https://mp.weixin.qq.com/s/eY068-EDxmm8jFUoe-yESA