视频课程资源

python

机构培训视频

课程全面,适合自学人群的查漏补缺
千峰教育:https://www.bilibili.com/video/BV15J411T7WQ/
尚学堂:https://www.bilibili.com/video/BV1Hb411G7Vb/
霍格沃兹(测开):https://pan.baidu.com/s/1S0l46HWY8LPFlkPtjRgQwg 提取码:test

书籍配套演示视频

《Python编程 从入门到实践》https://www.bilibili.com/video/BV19t411m7uU/
《数据结构与算法 Python语言描述 裘宗燕著》https://www.bilibili.com/video/BV18W411T7Vv/

公开课

MIT 计算机科学导论及Python编程
适合新手学习掌握基础计算机科学理论知识
https://www.bilibili.com/video/BV1kx411e7vE/?vd_source=5082bcfde189f2d90cc60e5bc0c74b28

资源汇总

Full Stack Python
有各种python资源汇总,从基础入门到各种框架web应用开发和部署,再到高级的ORM、Docker都有

linux

机构培训视频

兄弟连:https://www.bilibili.com/video/BV14p4y1C768/

公开课

斯坦福 Practical Unix
https://www.bilibili.com/video/BV1MK4y1e7us/?vd_source=5082bcfde189f2d90cc60e5bc0c74b28

docker&k8s

京峰教育: https://pan.baidu.com/s/1-fcrvXhIg_FEkBFLzfazzQ 提取码:test
Kubernetes中文社区: https://pan.baidu.com/s/1lgzzjMtFhQraSuXadVRgeA 提取码:test

网络

北京大学计算机网络:链接:https://pan.baidu.com/s/1k9xceozKNEIDeaLAGXgLfg 提取码:test
深入理解网络基础:链接:https://pan.baidu.com/s/1OqlEprVzgF1bVguA8imwPA 提取码:test
HTTP协议:链接:https://pan.baidu.com/s/1-6Td_BGUsLvf3U_qLaRz1w 提取码:test
51CTO计算机网络原理精讲:链接:https://pan.baidu.com/s/1g6EwGt8bKS5YRMQ3NzrChQ 提取码:test

CVS 代码管理

包括svn&git
链接:https://pan.baidu.com/s/1_i4dtI70Pk0H2r9kGZuo6Q 提取码:test

jenkins

链接:https://pan.baidu.com/s/1aBt7CJyxcvoGKTUV2UaCxA 提取码:test

资源

Stanford Engineering Everywhere

斯坦福工程无处不在(SEE)https://see.stanford.edu/
完全免费提供许多斯坦福在线课程。 每个人都可以使用他们的系统和移动设备从任何地方免费访问完整的课程资料,包括教学大纲、讲义、家庭作业和考试

计算机科学(CS)公开课(清华,北大,浙大,上交,中科大)

清华:https://github.com/PKUanonym/REKCARC-TSC-UHT(更新及时)
北大: https://github.com/lib-pku/libpku
浙大:https://github.com/QSCTech/zju-icicles
上交:https://github.com/CoolPhilChen/SJTU-Courses
中科大:https://github.com/USTC-Resource/USTC-Course

阅读全文
性能&稳定性测试资料

性能测试

让数据证明结论,而不是下结论

性能测试是一种非功能软件测试技术,能够确定应用程序在给定工作负载下的稳定性、速度、可伸缩性和响应能力。 性能测试是确保软件质量的关键步骤,但遗憾的是,它经常被视为单独的事后步骤,并且在功能测试完成之后才进行,在大多数情况下,甚至要在代码准备发布之后才进行。
性能测试的目的包括评估应用程序输出、处理速度、数据传输速度、网络带宽使用、最大并发用户、内存利用率、工作负载效率和命令响应时间。

术语

https://help.aliyun.com/document_detail/74223.html

基础理论

https://www.cnblogs.com/puresoul/p/5456855.html

并发虚拟用户、RPS、TPS

https://help.aliyun.com/document_detail/29343.html

性能测试过程关键技术规范

https://help.aliyun.com/document_detail/29337.html

测试指标

https://help.aliyun.com/document_detail/29338.html

测试流程

https://www.cnblogs.com/puresoul/p/5463477.html

分析及调优流程和方法

https://help.aliyun.com/document_detail/29342.html

线上压测要素

https://help.aliyun.com/document_detail/91580.html

工具选型

https://www.cnblogs.com/puresoul/p/5503134.html

性能压测工具对比

https://help.aliyun.com/document_detail/434264.html

稳定性测试(可靠性)

稳定性测试是在保证功能完整正确的前提下,必不可少的一项测试内容,通过对软件稳定性的测试可以观察在一个运行周期内、一定的压力条件下,软件的出错机率、性能劣化趋势等。进而大大减少软件上线后的崩溃卡死等现象,为软件的逐步优化提供方向及验证。
无论是服务器端还是客户端,对稳定性的测试无非是就是测试系统的长期稳定运行能力。在系统运行过程中,对系统施压,观察系统的各种性能指标,以及服务器的指标。不同于服务器端的稳定性测试的是,客户端软件是运行在单机环境下,所以不存在并发用户数的概念,取而代之的是一些多进程长时间的操作,以及各种复杂的并发场景的组合。一款客户端软件,它的稳定性测试需求基本包括:

  • 1、长时间运行及各种操作下,软件的稳定性以及各种性能指标的劣化趋势。
  • 2、多进程或多线程运行时的稳定性。
  • 3、不同操作系统,在不同宿主软件下运行的稳定性。

基础理论

https://www.cnblogs.com/AlwinXu/p/5456900.html

测试流程

https://jiagoushi.pro/importance-stability-and-reliability-testing-software-development

阅读全文
python及jenkins入门推荐

python

推荐书籍

https://blog.csdn.net/sinat_38682860/article/details/85840247

学习视频

https://www.bilibili.com/read/cv6218127

学习要点

https://blog.51cto.com/mingongge/3130574

pytest常见思路及用法

https://www.its304.com/article/weixin_42530697/96841071

自动化测试常用库

https://blog.csdn.net/weixin_39962285/article/details/110557822

pytest常用插件

https://www.bytebaike.com/pytest/pytest%E5%B8%B8%E7%94%A8%E6%8F%92%E4%BB%B6.html
https://xie.infoq.cn/article/f40b3cfd96a4c0dbdd9102da1

jenkins

教程

https://www.jenkins.io/zh/doc/tutorials/

中文文档

https://www.w3cschool.cn/jenkins/

常用插件

https://www.jianshu.com/p/d6e9e63716a4

视频资料

python

链接:https://pan.baidu.com/s/1TIO2ylKSh22KS-xAYPKDHQ
提取码:xfnb

jenkins

链接:https://pan.baidu.com/s/1nGj6nLu5pXfjAIETFrXNDg
提取码:xfnb

测开及性能

链接:https://pan.baidu.com/s/1MRkKsF6D-hLtRcdh5a5qZw
提取码:xfnb

阅读全文
通过Navicat做MYSQL和SQLite的数据迁移

MYSQL的数据迁移到SQLite

1. 连接上MYSQL

2. sql file导入MYSQL

3. 建立空SQLite数据库

使用命令行工具创建空数据库

1
> sqlite3 SQLITEDB.db

4. 打开SQLite数据库

5. 导出MYSQL到SQLite database

执行数据传输后,查看文件size,此时已有内容。

6. 验证内容

1
2
> sqlite3 SQLITEDB.db
sqilte3> .tables

或用DataGrip打开SQLITEDB.db查看

SQLite数据迁移到MYSQL

SQLite的数据迁移到MYSQL的方法基本一致,最大的区别是在第5步数据传输时,对应的目标做一个对调,源为SQLite,目的为MYSQL的数据库。数据传输完成后,即可以看到数据导入到了MYSQL database中。

阅读全文
树莓派配置

ubuntu server system-boot wifi配置

https://ubuntu.com/tutorials/how-to-install-ubuntu-on-your-raspberry-pi#3-wifi-or-ethernet

network-config

1
2
3
4
5
6
7
wifis:
wlan0:
dhcp4: true
optional: true
access-points:
"gbqpchot":
password: "23332333"

修改wifi设置

https://blog.csdn.net/lps11188/article/details/112058379

网线直连,网络共享,dos命令arp -a 接口192.168.137.1下的ip中找到树莓派的ip

1
cd /etc/netplan

yaml

1
2
3
4
5
6
7
8
9
10
11
12
network:
ethernets:
eth0:
dhcp4: true
optional: true
version: 2
wifis:
wlan0:
dhcp4: true
access-points:
"wifi名":
password: "wifi密码"
1
2
netplan try #或
netplan apply

花生壳内网穿透

https://service.oray.com/question/11639.html

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 下载安装包
wget https://dl-cdn.oray.com/hsk/linux/phtunnel_5_0_rapi_aarch64.deb
# 切换管理员权限
sudo -s
# 安装
dpkg -i phtunnel_5_0_rapi_aarch64.deb
# 记录SN及密码
+--------------------------------------------------+
| Oray Phtunnel Raspberry 5.0.0 |
+--------------------------------------------------+
| SN: xxx Default password: xxx |
+--------------------------------------------------+
| Remote Management Address http://b.oray.com |
+--------------------------------------------------+
# phddns回车,可以看到扩展功能。phddns phddns(启动)| status(状态)| stop(停止)|restart(重启)| reset(重置)|enable(开机自启动)|disable(关闭开机自启动)|version(版本)

# 启动
phddns start
# 自启动
phddns enable

注意:当有线无线都连接时,断开有线需重启花生壳phddns restart(目测默认有线生效,网络切换需重启)

阅读全文
实用网站

实用网站

科学上网

https://github.com/junwen0301/Announcement

资源分享

视频剪辑、解压、录屏、思维导图

http://www.dayanzai.me/

正版软件

Itellyou:https://msdn.itellyou.cn

在线服务

命令解释

查看Linux命令如何工作
https://www.explainshell.com/

定制个性命令提示符

简单说就是个性化生成命令提示符,可将生成的代码写入到用户家目录的.bashrc或者可以设置全局变量文件/etc/profile对所有用户生效
http://bashrcgenerator.com/
可参考:http://stackoverflow.com/questions/4133904/ps1-line-with-git-current-branch-and-colors

通过RPG游戏练习VIM使用

通过RPG游戏练习VIM编辑器的使用,使用h,j,k,l字符移动人物来获得新的命令能力和搜集钥匙,查看帮助可使用:help
https://vim-adventures.com/

幕布

在线思维笔记工具,整理结构化的内容,构建清晰的思维逻辑
https://mubu.io/

在线学习Git版本控制

这个网站模拟了一个控制台
https://try.github.io/

练习快捷键

涵盖了vim、sublime、emacs、git等软件的快捷使用方式和友好的说明
https://www.shortcutfoo.com/

免费编程书籍

以Github管理的方式搜集了免费的编程和系统管理等书籍
https://github.com/EbookFoundation/free-programming-books

实时文本交互聊天

可以创建一个文档http://collabedit.com/yb22u填写相关的用户名和选择语言;然后可以将此文档地址发给另一个人,那么互相之间就可以实时看到对方的输入,有高亮语法;使用场合嘛,比如通过collabedit可以考量对方编程能力等
http://collabedit.com/

在线编写运行分享C++代码编辑器

可在线编辑运行C++代码,亦可Ctrl+Z生成url分享给好友
http://cpp.sh/

浏览器运行虚拟机

在线运行虚拟机,可以选择下载虚拟机镜像也可以上传自己的iso,copy.sh在线运行虚拟机
源码:https://github.com/copy/v86
http://copy.sh/

命令或记录网站

分享自己的CLI库,也可以学习借鉴别人的命令脚本
https://www.commandlinefu.com/commands/browse

提供了Linux发行版的详细信息

通过Distrowath不仅可以精确的查看互联网都有哪些流行的Linux发行版,还可以查看每个发行版的相关信息如默认桌面环境、默认应用程序及镜像的下载链接;堪称Linux的数据库
https://distrowatch.com/

在线查看命令帮助

相当于系统内部的man、help、info等的综合
http://linuxmanpages.com/

适用Linux环境的软件搜索引擎

如果有款win下好用的软件想在linux下使用,或许可以通过AwesomeCow找到与其类似或者一样的软件,或者通过WINE
http://awesomecow.com/

Linux好玩游戏合集

http://www.penguspy.com/

音/视频转txt

https://beecut.cn/speech-to-text-online

音乐下载

https://taira-komori.jpn.org/freesoundcn.html

http://tool.liumingye.cn/music/?page=homePage

搜索

秘迹搜索:https://mijisou.com

小白盘: https://www.xiaobaipan.com

DogeDoge: https://www.dogedoge.com/

GitLogs: https://www.gitlogs.com/

大数据

大数据导航

包含:数据搜索、互联网趋势分析、全球互联网数据、BI 商业智能、实时数据工具、短视频数据平台、教育数据、城市开放数据等

http://hao.199it.com/

可视化

Flourish

只要操作者把数据文件(例如 Excel 文件)上传到该平台就可以轻松完成可视化的工作。

https://flourish.studio/

PPT模板下载

优品PPT: http://www.ypppt.com

文件共享

拷贝兔

https://cp.anyknew.com

软件下载

我爱分享网

http://www.zhanshaoyi.com/rjxz.html

图片

无损放大

http://bigjpg.com/zh

http://waifu2x.udp.jp/index.zh-CN.html

照片抠图

https://www.remove.bg/

稿定设计(在线PS)

https://www.uupoop.com/

图片素材

https://pixabay.com/zh/

图片无损在线压缩

https://tinypng.com/

批量裁剪缩放

https://www.smartresize.com/zh-cn

GIF工具之家

https://tool.gifhome.com/

个人信息伪造

https://www.fakepersongenerator.com/

排行榜

http://guozhivip.com/rank/

系统怀旧

http://www.therestartpage.com/

查你出生的那年都发生了什么事

http://whathappenedinmybirthyear.com/

快速定位背景音乐

https://www.tunefind.com/

最好的短网址服务

https://bit.ly

WikiHow专业的问题解答

https://zh.wikihow.com/

临时邮箱

https://temp-mail.org/zh/

http://24mail.chacuo.net/

临时接收手机验证码

https://www.materialtools.com/

冷门好用的免费素材网:

https://unsplash.com/

给未来的自己发一封有意义的邮件:

https://www.futureme.org/

灵感艺术创作

http://weavesilk.com/

网络测速

https://fast.com/

病毒测试

https://www.virustotal.com/

邮箱泄露测试

https://haveibeenpwned.com/

信息加密传输

https://privnote.com/

pdf在线编辑

https://www.pdfescape.com

https://www.pdfpai.com/

代码编程学习

https://www.codecademy.com/learn

插图素材

https://undraw.co/

免费应用程序替代

https://alternativeto.net/

在线学习

Alison

https://alison.com/

未来学习

https://www.futurelearn.com/

卡登泽

https://www.kadenze.com/

斯坦福在线

https://online.stanford.edu/

乌迪米

https://www.udemy.com/

Udacity

https://www.udacity.com/

密码学

https://www.codecademy.com/

Coursera

https://www.coursera.org/

达世币大会–学习编码

https://dash.generalassemb.ly/

edx

https://www.edx.org/

开放学习

https://www.open.edu/openlearn/

开放学习计划

https://oli.cmu.edu/

github学习项目

构建你自己的 X

如果你想要做些什么,并且想要获得一些关于如何实现它的指导,这是一个很好的资源。通过浏览列表,你还会发现很多真正有趣的事情。
地址:https://github.com/danistefanovic/build-your-own-x

JavaScript 算法

提供了很多不同的算法,一个详尽的数据结构列表,还有你可能在软件工程面试中遇到的一些典型问题的答案。
地址:https://github.com/trekhleb/javascript-algorithms

OSSU

OSSU 的课程为所有想要学习计算机科学的人提供了大量的免费学习资源。
地址:https://github.com/ossu/computer-science

代码 30 秒

超过 100 个代码段,涵盖了 JavaScript 中的各种内容,从典型的算法,到你可能会发现自己需要完成的常见任务。
地址:https://github.com/30-seconds/30-seconds-of-code

真实世界示例应用

有没有想过要学习如何使用特定的语言 / 技术开发适当的应用?这就是为你准备的 GitHub 仓库!这超出了典型的“ to-do”应用程序, RealWorld 的示例使整个“Medium-style”应用程序更加丰富,包括了所有的钟声、哨声和最佳实践。
地址:https://github.com/gothinkster/realworld

免费编程书籍

大量的免费编程书籍可以帮助你的知识和理解更上一层楼。
地址:https://github.com/EbookFoundation/free-programming-books

系统设计入门

拥有设计大型系统的能力是很有价值的
地址:https://github.com/donnemartin/system-design-primer

了不起的 Python

Python 内建了一系列不同的库、框架和技术的列表。对那些想要学习一种新的编程语言或仅仅想要提高对已有 Python 的了解的人来说,这是一个极好的指南。
地址:https://github.com/vinta/awesome-python

node 最佳实践

自学的坏处之一就是,你并不总是从最佳实践开始。因此,拥有这些详细的指南可以帮助你快速提高技能。
地址:https://github.com/goldbergyoni/nodebestpractices

超棒的机器学习

像我们之前看到的 Python 清单一样,这个 GitHub 仓库包含大量不错的机器学习资源。
地址:https://github.com/josephmisiti/awesome-machine-learning

电影

Vudu https://www.vudu.com/
看看TV (仅限在加拿大和澳洲地区使用) https://www.wekan.tv/
Tubi https://tubitv.com/
Bigdramas https://bigdramas.org/
Popcornflix https://www.popcornflix.com/
Pluto http://pluto.tv/
Youtube https://www.youtube.com/
The Roku Channel https://therokuchannel.roku.com/
Crackle https://www.crackle.com/
Azm https://azm.to/

其他

越摇摆越快乐
网址:http://www.staggeringbeauty.com/
Reflect在线换脸
网址:https://reflect.tech/
图片动起来
https://nodtotherhythm.com/make
geoguessr(猜猜我在哪)
网址:https://geoguessr.com
Click to start(测试自己的反应速度)
网址:https://www.humanbenchmark.com/tests/reactiontime
重力点
https://codepen.io/akm2/full/rHIsa
帮程序员减压放松的网站
网址:https://www.loungev.com/caribbean-lounge/
云游天下
http://www.airpano.com/
深海
https://neal.fun/deep-sea/
Firefox Monitor(安全邮箱检查)
https://monitor.firefox.com/

阅读全文
实用免费软件

实用免费软件

markdown编辑器

typora:https://typora.io/

上传图片并获取图片网址链接

PicGo:https://github.com/Molunerfinn/PicGo

ssh客户端

MobaXterm:https://mobaxterm.mobatek.net/download-home-edition.html

PuTTY:https://www.putty.org/

SimpleRemote:http://www.91fk.net/

Finalshell:http://www.hostbuf.com/

JuiceSSH:https://juicessh.com/

ServerCat:https://apps.apple.com/cn/app/servercat-linux-%E7%9B%91%E6%8E%A7-ssh-%E7%BB%88%E7%AB%AF/id1501532023

redis客户端

Another-Redis-Desktop-Manager:https://github.com/qishibo/AnotherRedisDesktopManager

Hosts管理

SwitchHosts:https://github.com/oldj/SwitchHosts

office

onlyoffice: https://www.onlyoffice.com/zh/
Libreoffice:https://www.libreoffice.org/

激活

KMSOffline – https://free.appnee.com/kmsoffline
Office Tool Plus – https://otp.landian.vip

虚拟定位

爱思助手:https://www.i4.cn
Fake GPS location:https://play.google.com/store/apps/details?id=com.lexa.fakegps&hl=en_US&gl=US

在线实时视频抠图去背景

https://peterl1n.github.io/RobustVideoMatting
在线使用- https://peterl1n.github.io/RobustVideoMatting/#/demo

电脑远程控制

Remotely: https://remotely.one/

视频格式转换器

handbrake:https://handbrake.fr/

视频剪辑

ShortCut: https://shotcut.org/
VideoPad:https://www.nchsoftware.com/videopad/index.html
VSDC:http://www.videosoftdev.com/
HitFilm:https://fxhome.com/product/hitfilm-express
Openshot:https://www.openshot.org/zh-hans/
iMovie:https://www.apple.com/imovie/
DaVinci Resolve:http://www.blackmagicdesign.com/products/davinciresolve/

视频播放

Potplay: https://potplayer.daum.net
VLC: https://www.videolan.org

密码管理器

Bitwarden: https://bitwarden.com/

创建USB启动盘

rufus:https://rufus.ie/

windows系统优化

dism++: https://www.chuyu.me/zh-Hans/
Glarysoft: https://www.glarysoft.com

软件卸载

geekuninstaller: https://geekuninstaller.com
WGestures:https://www.yingdev.com/projects/wgestures

密码管理

KeePass:https://keepass.info/

高精度截图

Snipaste:https://www.snipaste.com/

资源管理

QTTabbar:http://qttabbar.wikidot.com/

安全超频

MSI Afterburner: https://www.msi.com/page/afterburner

跨平台游戏连接

GOG星系: https://www.gog.com/galaxy

超级进程管理

SuperF4: https://stefansundin.github.io/superf4/

虚拟手机号

Textnow:https://www.textnow.com/
Google Voice:https://voice.google.com/
textplus: https://textplus.com/
nextplus:
(Android)https://play.google.com/store/apps/details?id=me.nextplus
(iPhone):https://apps.apple.com/us/app/nextplus

PDF to Word

https://www.ilovepdf.com

GIF动图制作

https://www.screentogif.com/

远程办公

https://www.teamviewer.com
https://remotedesktop.google.com

快速文件索引软件

https://www.voidtools.com/

Adobe Photoshop Express

Adobe Photoshop Express:https://www.microsoft.com/en-us/p/adobe-photoshop-express-image-editor-adjustments-filters-effects-borders/9wzdncrfj27n?activetab=pivot%3Aoverviewtab

pdf编辑

Xodo PDF Reader & Editor: https://www.microsoft.com/en-us/p/pdf-reader-view-edit-annotate-by-xodo/9wzdncrdjxp4?activetab=pivot%3Aoverviewtab

音量分别调节

EarTrumpet: https://www.microsoft.com/en-us/p/eartrumpet/9nblggh516xp?activetab=pivot%3Aoverviewtab

轻量远程终端连接

Fluent Terminal: https://www.microsoft.com/en-us/p/fluent-terminal/9p2krlmfxf9t?activetab=pivot%3Aoverviewtab#

图片混合

Fused: https://www.microsoft.com/en-us/p/fused-double-exposure-video-and-photo-blender/9nblggh1jj6d?activetab=pivot%3Aoverviewtab

语言学习

Duolingo: https://www.microsoft.com/en-us/p/duolingo-learn-languages-for-free/9wzdncrcv5xn?activetab=pivot%3Aoverviewtab

音乐

Spotify: https://www.microsoft.com/en-us/p/spotify-music/9ncbcszsjrsb?activetab=pivot%3Aoverviewtab

录屏

ShareX: https://www.microsoft.com/en-us/p/sharex/9nblggh4z1sp?activetab=pivot%3Aoverviewtab
Screenrec: https://screenrec.com
Shadowplay: https://www.nvidia.com/en-us/geforce/geforce-experience/shadowplay/
AMD ReLive: https://www.amd.com/zh-hans/technologies/radeon-software-gaming-media
Captura: https://mathewsachin.github.io/Captura/
OBS Studio: https://obsproject.com/
oCam:https://ohsoft.net/eng/ocam/intro.php?cate=1002

录音

录音精灵:https://www.apowersoft.cn/streaming-audio-recorder

磁盘监测

CrystalDiskMark: https://www.microsoft.com/en-us/p/crystaldiskmark/9nblggh4z6f2?activetab=pivot%3Aoverviewtab

播放器

Movies & TV: https://www.microsoft.com/zh-cn/p/movies-tv/9wzdncrfj3p2?activetab=pivot%3Aoverviewtab
VLC: https://www.videolan.org/vlc/

三维动画设计

Blender:https://www.blender.org/download/releases/

杀毒

Bitdefender: https://www.bitdefender.com/solutions/free.html

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

小红伞(Avast: https://www.avira.com/zh-cn

Avg: https://www.avg.com/free-antivirus-download

Avira: https://www.avira.com/zh-cn/free-antivirus-windows

邮件

Thunderbird: https://www.thunderbird.net/

即时通讯

Viber

App Store: https://apps.apple.com/app/id382617920?mt=8)
Google Play: https://play.google.com/store/apps/details?id=com.viber.voip&referrer=adjust_reftag%3DcTPTLBpxqNtYT%26utm_source%3DWebsite%26utm_campaign%3Ddownload%26utm_content%3Den%26utm_term%3D1

Silence

App Store: https://apps.apple.com/cn/app/silent-phone/id554269204
Google Play: https://play.google.com/store/apps/details?id=org.smssecure.smssecure

Element

App Store: https://apps.apple.com/app/vector/id1083446067
Google Play: https://play.google.com/store/apps/details?id=im.vector.app

Telegram

App Store: https://apps.apple.com/cn/app/telegram-messenger/id686449807
Google Play: https://play.google.com/store/apps/details?id=org.telegram.messenger

Signal

App Store: https://apps.apple.com/cn/app/signal-隐私通信工具/id874139669
Google Play: https://play.google.com/store/apps/detailsid=org.thoughtcrime.securesms&hl
PC版下载: https://signal.org/download/

会议

Google meet: https://meet.google.com
Discord: https://discord.com
Microsoft Teams: https://www.microsoft.com/en-us/microsoft-365/microsoft-teams/group-chat-software

windows资源搜索

Everything
https://www.voidtools.com/zh-cn/​

音频编辑

Audicity
https://www.audacityteam.org/​

绘画

Autodesk SketchBook
https://sketchbook.com/​

电脑硬件信息

HWiNFO
https://www.hwinfo.com​

图像编辑

XnView MP
https://www.xnview.com​

gimp:https://www.gimp.org

屏幕录制

Captura
https://mathewsachin.github.io/Captura/​

视频播放器

KMPlayer
http://kmplayer.com/​

PotPlayer:https://potplayer.daum.net/

谷歌地球

https://www.google.com/intl/zh-CN/earth/​

文本编辑

Notepad++
https://notepad-plus-plus.org/downloads/​

Sublime Text3:https://www.sublimetext.com/3

浏览器

brave
https://brave.com/zh/

文件去重

DoubleKiller

https://www.bigbangenterprises.de/en/doublekiller/

快速预览

Quicklook

https://www.microsoft.com/en-us/p/quicklook/9nv4bs3l1h4s?activetab=pivot:overviewtab

压缩

7-Zip:https://www.7-zip.org

视频压缩

handbrake:https://handbrake.fr/

翻译

DeepL

https://www.deepl.com/translator

下载

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

IDM官方正版: https://bit.ly/3nj8baB

IDM开心版: https://www.lanzous.com/i91wjub

IDM谷歌浏览器扩展程序:https://chrome.google.com/webstore/detail/idm-integration-module/ngpampappnmepgilojfohadhhmbhlaek

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

安卓模拟器

GameLoop :https://gameloop.fun
LDplayer:https://www.ldplayer.net
Android Studio’s :https://developer.android.com/studio
NOX 夜神:https://www.yeshen.com/
BlueStacks:https://www.bluestacks.com/
MSI appplayer :https://www.msi.com/landing/appplayer

Android in docker : https://github.com/budtmo/docker-android

种子下载

PC

qbittorrent: https://www.qbittorrent.org
qbittorrent增强版: https://github.com/c0re100/qBittorrent-Enhanced-Edition/releases
trackers地址:https://raw.githubusercontent.com/ngosang/trackerslist/master/trackers_all.txt
比特精灵: http://www.bitspirit.cc
Motrix: https://motrix.app
Tixati: https://www.tixati.com
Transmissionbt: https://transmissionbt.com

手机

tTorrent: https://play.google.com/store/search?q=tTorrent+Lite

μTorrent: https://play.google.com/store/apps/details?id=com.utorrent.client

TorrDroid: https://play.google.com/store/apps/details?id=intelligems.torrdroid

WeTorrent: https://play.google.com/store/apps/details?id=co.we.torrent

Transmission: https://play.google.com/store/apps/details?id=com.ap.transmission.btc

资源站

LimeTorrents: https://www.limetorrents.info
TorrentDownloads:https://torrentdownloads.mrunblock.pro
Zooqle:https://zooqle.com
EZTV:https://eztv.io
YTS :https://yts.mx
Torrentz2:https://torrentz2eu.in
Torlock:https://www.torlock.com
1337x:https://1337x.to
RARBG:https://rarbg.to
海盗湾:https://thepiratebay10.org

阅读全文
实用chrome插件

实用chrome插件

油猴

Tampermonkey
https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo

插件管理

SimpleExtManager
https://chrome.google.com/webstore/detail/simpleextmanager/kniehgiejgnnpgojkdhhjbgbllnfkfdk

谷歌历史记录优化

Chrome Better History
https://chrome.google.com/webstore/detail/view-chrome-history/oiginoblioefjckppeefcofmkkhgbdfc/related?hl=zh-CN

听歌识曲

AHA MUSIC
https://chrome.google.com/webstore/detail/aha-music-song-finder-for/dpacanjfikmhoddligfbehkpomnbgblf?utm_source=chrome-ntp-icon

网页截图

Awesome screenshot
https://chrome.google.com/webstore/detail/screenshot-screen-video-r/jgmmgiojkjopgnanopiamhbhnpaednfg?utm_source=chrome-ntp-icon

标签冻结

the-great-suspender
https://chrome.google.com/webstore/detail/the-great-suspender-origi/ahmkjjgdligadogjedmnogbpbcpofeeo?utm_source=chrome-ntp-icon

图片反向搜索

Tineye
https://chrome.google.com/webstore/detail/tineye-reverse-image-sear/haebnnbpedcbhciplfhjjkbafijpncjl?utm_source=chrome-ntp-icon

图片助手

ImageAssistant

https://chrome.google.com/webstore/detail/imageassistant-batch-imag/dbjbempljhcmhlfpfacalomonjpalpko

网站可信度评级

Web of Trust
https://chrome.google.com/webstore/detail/wot-web-of-trust-website/bhmmomiinigofkjcapegjjndpbikblnp?utm_source=chrome-ntp-icon

护眼插件

Dark-reader
https://chrome.google.com/webstore/detail/dark-reader/eimadpbcbfnmbkopoojfekhnkhdbieeh?utm_source=chrome-ntp-icon

颜色提取

ColorPick Eyedropper
https://chrome.google.com/webstore/detail/colorpick-eyedropper/ohcpnigalekghcmgcdcenkpelffpdolg?utm_source=chrome-ntp-icon

清爽阅读

Just read
https://chrome.google.com/webstore/detail/just-read/dgmanlpmmkibanfdgjocnabmcaclkmod?utm_source=chrome-ntp-icon

邮件加密

Flowcrypt
https://chrome.google.com/webstore/detail/flowcrypt-encrypt-gmail-w/bnjglocicdkmhmoohhfkfkbbkejdhdgc?utm_source=chrome-ntp-icon

二维码生成

QUICK QR
https://chrome.google.com/webstore/detail/qr-code-generator/afpbjjgbdimpioenaedcjgkaigggcdpp?utm_source=chrome-ntp-icon

ie浏览器支持

IE Tab
https://chrome.google.com/webstore/detail/ie-tab/hehijbfgiekmjfkfjpbkbammjbdenadd?utm_source=chrome-ntp-icon

网络测速

Speedtest
https://chrome.google.com/webstore/detail/speedtest-by-ookla/pgjjikdiikihdfpoppgaidccahalehjh?hl=zh-CN

VPN

Astar VPN
https://chrome.google.com/webstore/detail/astar-vpn-free-and-fast-v/jajilbjjinjmgcibalaakngmkilboobh?hl=zh-CN

图片悬浮

Imagus
https://chrome.google.com/webstore/detail/imagus/immpkjjlgappgfkkfieppnmlhakdmaab?hl=zh-CN

截幕 & 屏幕录像机

Nimbus
https://chrome.google.com/webstore/detail/nimbus-screenshot-screen/bpconcjcammlapcogcnnelfmaeghhagj?hl=zh-CN

右键锁

SuperCopy
https://chrome.google.com/webstore/detail/supercopy-allow-right-cli/onepmapfbjohnegdmfhndpefjkppbjkm?hl=zh-CN

Google翻译

https://chrome.google.com/webstore/detail/google-translate/aapbdbdomjkkjkaonfhkkikfgjllcleb?hl=zh-CN

Office编辑

Google文档、表格及幻灯片的Office编辑扩展程序
https://chrome.google.com/webstore/detail/office-editing-for-docs-s/gbkeegbaiigmenfmjfclcdgdpimamgkj?hl=zh-CN

亚马逊商品历史价格

Chrome Amazon Assistant
https://chrome.google.com/webstore/detail/amazon-assistant-for-chro/pbjikboenpfhbbejgkoklgkhjpfogcam?hl=zh-CN

间隔弹出式通知

PostureMinder
https://chrome.google.com/webstore/detail/postureminder/dkmkfopiihabelocpelofchappjjnpkm?hl=en

PDF与网站通用萤光标示工具

Weava highlighter
https://chrome.google.com/webstore/detail/weava-highlighter-pdf-web/cbnaodkpfinfiipjblikofhlhlcickei?utm_source=chrome-ntp-icon

pdf在线编辑

pdf2go
https://chrome.google.com/webstore/detail/online-pdf-editor-pdf2goc/dfnhijmficoiilogkjlnkionfjlgecdi?utm_source=chrome-ntp-icon

事项标签页

momentum
https://chrome.google.com/webstore/detail/momentum/laookkfknpbbblfpciffpaejjkokdgca?hl=en

Serach by image

https://chrome.google.com/webstore/detail/search-by-image/cnojnbdhbhnkbcieeekonklommdnndci?hl=en

阅读全文
python airtest

python airtest

安装

1
pip install -U airtest

问题

1
2
3
4
5
6
7
Collecting opencv-contrib-python
Downloading opencv_contrib_python-4.5.1.48-cp37-cp37m-win_amd64.whl (41.2 MB)
| | 40 kB 2.4 kB/s eta 4:45:17ERROR: Exception:
Traceback (most recent call last):
File "c:\python37\lib\site-packages\pip\_vendor\resolvelib\resolvers.py", line 171, in _merge_into_criterion
crit = self.state.criteria[name]
KeyError: 'opencv-contrib-python'

解决

1
2
# Consider using the --user option or check the permissions.
pip install --user -i https://pypi.tuna.tsinghua.edu.cn/simple opencv-contrib-python
阅读全文
docker NFS共享目录实现

docker NFS共享目录实现

服务端配置

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
#安装 rpcbind 和 nfs-utils
yum install nfs-utils rpcbind
#Ubuntu中
# 服务端
apt install nfs-kernel-server
# 客户端
apt install nfs-common
#在服务端创建一个共享目录 /home/shared ,作为客户端挂载的远端入口,然后设置权限。
mkdir -p /home/shared
chmod 777 /home/shared
#修改 NFS 配置文件
vi /etc/exports
/home/shared *(rw,sync,insecure,no_subtree_check,no_root_squash)
# 启动rpc服务
service rpcbind start
# 启动 NFS 服务
service nfs-server start
#查看是否正确加载了设置的 /etc/exports 配置
showmount -e localhost
# 端口配置或关闭防火墙systemctl stop firewalld
# nfs启动时会随机启动多个端口并向RPC注册,配置NFS固定端口
vi /etc/sysconfig/nfs
RQUOTAD_PORT=30001
LOCKD_TCPPORT=30002
LOCKD_UDPPORT=30002
MOUNTD_PORT=30003
STATD_PORT=30004
# 端口开放
TCP&UDP 111,2049,30001-30004

/home/shared 文件目录设置为 * 即允许所有客户端挂载,可以设置 IP 区间,例如:/home 10.222.77.0/24(ro,sync,insecure,no_root_squash) 设置该ip区间的客户端挂载只读挂载。

NFS 配置文件参数参考

参数 说明
ro 只读访问
rw 读写访问
sync 所有数据在请求时写入共享
async nfs 在写入数据前可以响应请求
secure nfs 通过 1024 以下的安全 TCP/IP 端口发送
insecure nfs 通过 1024 以上的端口发送
wdelay 如果多个用户要写入 nfs 目录,则归组写入(默认)
no_wdelay 如果多个用户要写入 nfs 目录,则立即写入,当使用 async 时,无需此设置
hide 在 nfs 共享目录中不共享其子目录
no_hide 共享 nfs 目录的子目录
subtree_check 如果共享 /usr/bin 之类的子目录时,强制 nfs 检查父目录的权限(默认)
no_subtree_check 不检查父目录权限
all_squash 共享文件的 UID 和 GID 映射匿名用户 anonymous,适合公用目录
no_all_squash 保留共享文件的 UID 和 GID(默认)
root_squash root 用户的所有请求映射成如 anonymous 用户一样的权限(默认)
no_root_squash root 用户具有根目录的完全管理访问权限
anonuid=xxx 指定 nfs 服务器 /etc/passwd 文件中匿名用户的 UID
anongid=xxx 指定 nfs 服务器 /etc/passwd 文件中匿名用户的 GID

客户端配置

1
2
3
4
5
6
7
8
9
10
# 客户端
# 客户端查看共享目录
showmount -e ip
# 客户端挂载点
mkdir -p /home/shared
chmod 777 /home/shared
# 挂载
sudo mount -t nfs 192.168.13.129:/home/shared /home/shared
# 卸载
umount /home/shared

挂载到docker

1
docker run -d --privileged=true --name jenkins -p 8080:8080 -p 50000:50000 -v /home/shared:/home/shared -v ~/docker/jenkins:/var/jenkins_home jenkins/jenkins
阅读全文
Algolia