Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Awesome Cheatsheets | 33,706 | 6 days ago | 84 | mit | JavaScript | |||||
👩💻👨💻 Awesome cheatsheets for popular programming languages, frameworks and development tools. They include everything you should know in one single file. | ||||||||||
Gin Vue Admin | 17,335 | 8 hours ago | 36 | apache-2.0 | Go | |||||
基于vite+vue3+gin搭建的开发基础平台(支持TS,JS混用),集成jwt鉴权,权限管理,动态路由,显隐可控组件,分页封装,多点登录拦截,资源权限,上传下载,代码生成器,表单生成器,chatGPT自动查表等开发必备功能。 | ||||||||||
Chatwoot | 15,388 | 6 hours ago | 1 | January 03, 2021 | 751 | other | Ruby | |||
Open-source customer engagement suite, an alternative to Intercom, Zendesk, Salesforce Service Cloud etc. 🔥💬 | ||||||||||
Full Stack Fastapi Postgresql | 11,931 | 24 days ago | 215 | mit | Python | |||||
Full stack, modern web application generator. Using FastAPI, PostgreSQL as database, Docker, automatic HTTPS and more. | ||||||||||
Dashy | 11,799 | 6 hours ago | 77 | mit | Vue | |||||
🚀 A self-hostable personal dashboard built for you. Includes status-checking, widgets, themes, icon packs, a UI editor and tons more! | ||||||||||
Casaos | 10,651 | 3 days ago | 35 | September 09, 2022 | 168 | apache-2.0 | Go | |||
CasaOS - A simple, easy-to-use, elegant open-source Personal Cloud system. | ||||||||||
Coolify | 7,902 | a day ago | 276 | apache-2.0 | Svelte | |||||
An open-source & self-hostable Heroku / Netlify alternative. | ||||||||||
Doccano | 7,855 | 2 days ago | 28 | May 19, 2022 | 234 | mit | Python | |||
Open source annotation tool for machine learning practitioners. | ||||||||||
Pig | 4,761 | 3 days ago | 272 | apache-2.0 | Java | |||||
↥ ↥ ↥ 点击关注更新,基于 Spring Cloud 2021 、Spring Boot 2.7、 OAuth2 的 RBAC 权限管理系统 | ||||||||||
Neko | 3,759 | a month ago | 65 | apache-2.0 | Go | |||||
A self hosted virtual browser that runs in docker and uses WebRTC. |
Windows
绿色软件✨、rufus_USB启动盘(Windows,Linux,UEFI)、frp内网穿透、ZeroTier内网穿透、万彩办公大师
Portable
绿色软件、Open
共享软件、Free
软件大文件传输
Hitomi-Downloader
0000
)国外
破解联盟board4all
、国外
破解分享WebShare
、国内
吾爱破解工具
、国内
飘云阁
分享吧
优质福利资源、好例子
源码实例下载、.NET
控件库DevExpress
DownloadlyIR
、大眼仔
、亿破姐
、汉化博客网
、分享者网
、求资源网
、bit.ly短链接
插件
原型设计
、EDraw流程图/拓扑图
、Visio建模工具
、Project大型项目管理(甘特图)
iOS
助手Coolmuster
、Android
助手Coolmuster
Android
模拟器Nox
夜神
、Android
模拟器LD雷电
、BlueStacks模拟器
MetaDefender
、VirusTotal
免費的病毒、蠕虫、木马软件分析
网络安全
推荐
在线文档
知识付费
按国家、类别、语言
、IPTV·媒体工具
开放资源
收录小纸条
、开源
音乐软件
含羞草
、茶杯狐小众
#CMD命令(获取Wifi密码)
netsh wlan show profile
netsh wlan export profile folder=C:\ key=clear
批量清空代码注释
# Visual Studio Code
# 打开项目代码目录 > Ctrl+Shift+F
> 搜索:\/\*[\s\S]*\*\/|\/\/.* # 使用正则表达式(Alt+R)
> 要包含的文件:*.cs *.c *.cpp *.h *.js *.ts ...
# Visual Studio ^2019
# 打开项目解决方案 > Ctrl+Shift+F > 选择“在文件中替换”:
> 搜索:^[ \t]*//[^\n]*\n # 使用正则表达式(Alt+E) > 删除注释
> 搜索:^[ \t]*//[^\n]*Token[^\n]+\n # 使用正则表达式(Alt+E) > 删除注释(包含Token)
> 搜索:^(?([^\r\n])\s)*\r?$\r?\n # 使用正则表达式(Alt+E) > 删除空行
> 查找范围:整个解决方案
> 文件类型:默认或手动选择