- QQ,或商店里的
QQ桌面版
- 微信,或商店里的
微信 For Windows
- Visual Studio
- Visual Studio Code
- Microsoft Office/WPS教育版,配置工具-其他选项可以关闭广告
- Cent Browser
- CCleaner:关闭系统监控
- Everything
- VS
- https://json-schema.org/understanding-json-schema/
- https://github.com/containous/traefik https://docs.traefik.io/getting-started/quick-start/ https://zhuanlan.zhihu.com/funny
- http://zh.lucida.me/blog/on-learning-algorithms/
- Latex: https://zhuanlan.zhihu.com/p/265943556 https://katex.org/
- https://github.com/ossu/computer-science
- https://github.com/practical-tutorials/project-based-learning
- NZXT CAM:硬件信息检测软件
- https://www.raidrive.com/ :OneDrive映射为磁盘
- fiddler
- Cap 比Classic更简陋且免费,无需安装 https://telerik-fiddler.s3.amazonaws.com/fiddler/FiddlerCapSetup.exe
- IaaS指提供系统(可以自己选)或者储存空间之类的硬件,软件要自己手动装。PaaS提供语言环境和框架(可以自己选)。SaaS只能使用开发好的软件(卖软件本身,如税务会计、表格文字)。BaaS一般类似于非关系数据库,但各家不通用
- 云服务的特点:零前期成本&按需付费&弹性(类似于租,可随时多加、退掉;但没有残值)、高可用(放在机房中,不同AZ间水电隔离)
- https://education.github.com/pack GitHub学生包,需用教育邮箱验证。各种福利,可从DigitalOcean上手
- https://github.com/ripienaar/free-for-dev 本文尽量不与此项目重复
- https://free.zhelper.net/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Adblock Plus 2.0] | |
! Title: IMBALIST | |
! Homepage: https://gist.github.com/imba-tjd/2c9817233ac6798d4f2bfe057f781ca5 | |
! Expires: 10 days | |
! 使用方法:将 https://gist.githubusercontent.com/imba-tjd/2c9817233ac6798d4f2bfe057f781ca5/raw/IMBALIST.TXT 添加到uBO的规则列表中 | |
! humblebundle领取key页面 | |
www.humblebundle.com##.download-mosaic | |
www.humblebundle.com##.coupon.whitebox-redux | |
www.humblebundle.com##.js-subproduct-whitebox-holder > .whitebox-redux |
vcruntime140.dll:涉及memset, strchr, wcschr等函数会用到
无法使用vcruntime140_app,会报ImportError: DLL load failed
ucrtbase不保证API不变,但是它是单个dll,更简洁;商店应用只能用ucrt,也是最正常的方式
编译用python setup.py build_ext -i -DMS_WIN64
,结果在build和同级目录(-i)中,可用-c指定编译器。之后再bdist_wheel能成功,但不能直接bdist_wheel,因为好像不能在此verb的参数中定义宏。在setuptools.Extension中能定义宏,Extension.extra_compile_args能指定编译器,但暂时不想学。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
802.11a/b/g/n是WIFI4及之前的,n引入了MIMO和40M频宽;AC是WIFI5(802.11ac, 2013/2016),只支持5G;AX是WIFI6(802.11ax, 2018) | |
2.4G 40M频宽 单天线150M,5G单天线433M | |
AC1200是2x2 MIMO,2.4G 300M,5G 867M | |
AC1900是3x3,2.4G 600M,5G 1300M | |
AC2100是2.4G 2x2 300M,5G 4x4 1733M | |
AC2600是4x4 | |
AX1800是2x2 | |
Mesh(802.11k/v/r)自我修复,无缝漫游:能自动根据信号强弱切换路由器且不断网,多个路由之间真的平等,不区分WAN/LAN | |
WDS和有线要么线状要么星状,同名SSID切换时会断网且有低信号粘性,每加一级就速度减半 | |
AC Wave2(2016)有MU-MIMO,支持同一时刻与多台终端交互,但要终端也都支持。AX改进了 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/soimort/translate-shell | |
https://github.com/ssut/py-googletrans | |
https://github.com/hanmin0822/MisakaTranslator | |
https://github.com/PantsuDango/Dango-Translator | |
https://github.com/lmk123/crx-selection-translate | |
https://github.com/project-yuki/YUKI | |
https://github.com/UlionTse/translators/blob/master/translators/apis.py 有谷歌batchexecute的API | |
https://github.com/afc163/fanyi | |
https://github.com/Isayama-Kagura/TsubakiTranslator | |
https://github.com/CopyTranslator/CopyTranslator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Diagnostics; | |
class CMDW { | |
static void Main(string[] args) { | |
Process.Start(new ProcessStartInfo("cmd") { | |
Arguments = string.Join(" ", args), | |
UseShellExecute = false, | |
CreateNoWindow = true | |
}).WaitForExit(); | |
} | |
} |
OlderNewer