Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
bajins committed Oct 11, 2024
1 parent 1a5036a commit 04ae815
Show file tree
Hide file tree
Showing 19 changed files with 109 additions and 11 deletions.
1 change: 1 addition & 0 deletions Go/Go第三方库.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
* [https://github.com/chenhg5/collection](https://github.com/chenhg5/collection)
* [https://github.com/Andrew-M-C/go.jsonvalue](https://github.com/Andrew-M-C/go.jsonvalue)
* [https://github.com/tidwall/gjson](https://github.com/tidwall/gjson)
* [https://github.com/timbray/quamina](https://github.com/timbray/quamina)
* JSON转CSV [https://github.com/yukithm/json2csv](https://github.com/yukithm/json2csv)
* 线程池 [https://github.com/xxjwxc/gowp](https://github.com/xxjwxc/gowp)
* [https://github.com/panjf2000/ants](https://github.com/panjf2000/ants)
Expand Down
64 changes: 64 additions & 0 deletions IDE/Eclipse.md
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,70 @@
```


## 命令执行


**eclipsec应用程序**

- `org.eclipse.jdt.core.JavaCodeFormatter` 格式化 Java 代码
- `-config`
- `org.eclipse.jdt.core.JavaCompiler` 编译 Java 代码
- `-sourcepath`
- `-classpath`
- `org.eclipse.equinox.p2.director` 安装、更新或卸载 Eclipse 插件
- `-repository`
- `-installIU`
- `-`
- `-`
- `org.eclipse.ant.core.antRunner` 运行 Apache Ant 构建脚本
- `-buildfile`
- `org.eclipse.ui.ide.workbench` 启动 Eclipse IDE 工作台
- `org.eclipse.jdt.apt.core.aptBuild` 运行 Java 注解处理器(Annotation Processing Tool)
- `-sourcepath`
- `-classpath`
- `org.eclipse.jdt.core.JavaIndexer` 索引 Java 项目
- `-sourcepath`
- `org.eclipse.jdt.core.JavaModelManager` 管理 Java 模型
- `-sourcepath`
- `org.eclipse.update.core.standaloneUpdate` 更新 Eclipse 安装
- `-command install`
- `-featureId org.eclipse.platform`
- `org.eclipse.core.launcher.Main` 启动 Eclipse 主应用程序


**启动**

- `eclipse -consoleLog -nosplash -data <workspace>`


**格式化代码**

- ` eclipsec -data <workspace> -application org.eclipse.jdt.core.JavaCodeFormatter [ OPTIONS: -help、-quiet、-verbose ] -config <configFile> <files>`
- `Window` -> `Preferences` -> `Java` -> `Code Style` -> `Formatter` -> `Export All` 导出格式化代码的配置XML文件


**编译构建**

- `eclipsec -nosplash -data <workspace> -application org.eclipse.ant.core.antRunner -buildfile <buildFile>`

```xml
<!-- build xml 格式化代码,使用ant format命令 -->
<project name="FormatCode" default="format" basedir=".">
<property name="eclipse.home" value="eclipse文件夹" />
<property name="src.dir" value="src" />

<target name="format">
<java classname="org.eclipse.jdt.core.formatter.CodeFormatter" fork="true">
<classpath>
<pathelement location="${eclipse.home}/plugins/org.eclipse.jdt.core_*.jar"/>
</classpath>
<arg value="-process"/>
<arg value="${src.dir}"/>
</java>
</target>
</project>
```




Expand Down
2 changes: 2 additions & 0 deletions Java/JDK安装配置.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,8 @@
```bash
JAVA_OPTS="
-Dfile.encoding=UTF-8
-Dstdout.encoding=UTF-8
-Dstderr.encoding=UTF-8
-server
-Xms2688M
-Xmx2688M
Expand Down
6 changes: 4 additions & 2 deletions Java/Java第三方库.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,7 @@



* [https://github.com/HtmlUnit/htmlunit](https://github.com/HtmlUnit/htmlunit)
* [https://sourceforge.net/projects/htmlunit](https://sourceforge.net/projects/htmlunit)

* Java8以下的时间替代项目`joda-time` [https://github.com/JodaOrg](https://github.com/JodaOrg)
* [https://github.com/ocpsoft/prettytime](https://github.com/ocpsoft/prettytime)
* [https://github.com/ThreeTen/threetenbp](https://github.com/ThreeTen/threetenbp)
Expand Down Expand Up @@ -263,6 +262,7 @@
- [https://github.com/imcdonagh/image4j](https://github.com/imcdonagh/image4j)
- 图片压缩 [https://github.com/coobird/thumbnailator](https://github.com/coobird/thumbnailator)
- [http://projects.coobird.net](http://projects.coobird.net)
- SVG [https://github.com/css4j/echosvg](https://github.com/css4j/echosvg)
- 压缩文件 [https://github.com/junrar/junrar](https://github.com/junrar/junrar)
- [https://github.com/apache/commons-compress](https://github.com/apache/commons-compress)
- [https://github.com/airlift/aircompressor](https://github.com/airlift/aircompressor)
Expand Down Expand Up @@ -390,6 +390,8 @@
* [https://gitee.com/l-weiwei/Spiderman2](https://gitee.com/l-weiwei/Spiderman2)
* [https://gitee.com/flashsword20/webmagic](https://gitee.com/flashsword20/webmagic)
* [https://github.com/zhegexiaohuozi/SeimiCrawler](https://github.com/zhegexiaohuozi/SeimiCrawler)
* html [https://github.com/HtmlUnit/htmlunit](https://github.com/HtmlUnit/htmlunit)
* [https://sourceforge.net/projects/htmlunit](https://sourceforge.net/projects/htmlunit)


+ JSON-P [https://github.com/eclipse-ee4j/jsonp](https://github.com/eclipse-ee4j/jsonp)
Expand Down
1 change: 1 addition & 0 deletions PL/CPlusPlus.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@
* 范围 [https://github.com/ericniebler/range-v3](https://github.com/ericniebler/range-v3)
* 队列 [https://github.com/cameron314/concurrentqueue](https://github.com/cameron314/concurrentqueue)
* 编码检测 [https://github.com/BYVoid/uchardet](https://github.com/BYVoid/uchardet)
* 代码高亮 [https://github.com/TelegramMessenger/libprisma](https://github.com/TelegramMessenger/libprisma)



Expand Down
4 changes: 3 additions & 1 deletion PL/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
- [https://github.com/weijunext/indie-hacker-tools](https://github.com/weijunext/indie-hacker-tools)
- [https://github.com/shengxinjing/programmer-job-blacklist](https://github.com/shengxinjing/programmer-job-blacklist)
- [https://indiehackertools.net](https://indiehackertools.net)
- [https://github.com/lukasz-madon/awesome-remote-job](https://github.com/lukasz-madon/awesome-remote-job)
- 推广渠道 [https://github.com/naxiaoduo/1000UserGuide](https://github.com/naxiaoduo/1000UserGuide)
- [Sam Altman的创业手册](https://jxp73q7qjsg.feishu.cn/docx/WCNZdKDa4o2eUrxK5ElcfBXEnah)
- 硬地骇客 [https://github.com/hardhackerlabs/book](https://github.com/hardhackerlabs/book)
Expand Down Expand Up @@ -515,6 +516,7 @@
* [lib目录下包含了所有JavaScript官方DOM API](https://github.com/microsoft/TypeScript/tree/master/lib)
* [https://www.typescriptlang.org](https://www.typescriptlang.org)
* [https://www.tslang.cn](https://www.tslang.cn)
* [https://typeroom.cn/problems/all](https://typeroom.cn/problems/all)
* 深入理解TypeScript [https://jkchao.github.io/typescript-book-chinese](https://jkchao.github.io/typescript-book-chinese)
* [https://github.com/basarat/typescript-book](https://github.com/basarat/typescript-book)

Expand Down Expand Up @@ -577,7 +579,7 @@
- [走进 WebAssembly 的世界](https://juejin.cn/column/7210666370487681082)
- [https://github.com/yaozhongxiao/webassembly_tech](https://github.com/yaozhongxiao/webassembly_tech)
- [WebAssembly 模块化与动态链接](https://mp.weixin.qq.com/s/MPBwFuL2CYFVXIowoB542A)
* 微信小游戏 [https://github.com/wechat-miniprogram](https://github.com/wechat-miniprogram)
- 微信小游戏 [https://github.com/wechat-miniprogram](https://github.com/wechat-miniprogram)


* [https://github.com/ShizukuIchi/winXP](https://github.com/ShizukuIchi/winXP)
Expand Down
2 changes: 1 addition & 1 deletion PL/中间件.md
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@
- [https://sourceforge.net/projects/jasperstarter](https://sourceforge.net/projects/jasperstarter)
- [https://github.com/zhangdaiscott/JimuReport](https://github.com/zhangdaiscott/JimuReport)
- [https://gitee.com/summer-T/ureport-keep](https://gitee.com/summer-T/ureport-keep)
- [http://wiki.bsdn.org](http://wiki.bsdn.org)
- [https://www.w3cschool.cn/ureport](https://www.w3cschool.cn/ureport)
- [ureport2报表详细使用](https://www.cnblogs.com/niceyoo/p/14311257.html)
- [SpringBoot整合Ureport2 报表 及常见使用方法](https://blog.csdn.net/weixin_41451078/article/details/113123215)
- [https://sourceforge.net/projects/dynamicreports](https://sourceforge.net/projects/dynamicreports)
Expand Down
1 change: 1 addition & 0 deletions PL/人工智能.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,7 @@
* [https://github.com/open-mmlab/Amphion](https://github.com/open-mmlab/Amphion)
* [https://github.com/panyanyany/Awesome-ChatTTS](https://github.com/panyanyany/Awesome-ChatTTS)
* [https://github.com/2noise/ChatTTS](https://github.com/2noise/ChatTTS)
* [https://github.com/ElmTran/praises](https://github.com/ElmTran/praises)
* 变声 [https://github.com/w-okada/voice-changer](https://github.com/w-okada/voice-changer)
* 捕获键盘声音 [https://github.com/ggerganov/kbd-audio](https://github.com/ggerganov/kbd-audio)
* Whisper [https://github.com/chidiwilliams/buzz](https://github.com/chidiwilliams/buzz)
Expand Down
3 changes: 3 additions & 0 deletions PL/加密认证.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@
+ [https://github.com/BLAKE3-team](https://github.com/BLAKE3-team)
+ [https://github.com/BLAKE2](https://github.com/BLAKE2)
+ [https://github.com/syncsynchalt/illustrated-x25519](https://github.com/syncsynchalt/illustrated-x25519)
+ [https://github.com/OpenPGP/openpgp.org](https://github.com/OpenPGP/openpgp.org)
+ [https://www.gpg4win.org](https://www.gpg4win.org)
+ [https://github.com/open-keychain/open-keychain](https://github.com/open-keychain/open-keychain)


- 对称加密算法
Expand Down
14 changes: 14 additions & 0 deletions PL/文档处理.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
## PDF

+ [https://github.com/topics/pdf](https://github.com/topics/pdf)
+ [https://github.com/topics/pdflib](https://github.com/topics/pdflib)
+ [https://github.com/topics/pdf-viewer](https://github.com/topics/pdf-viewer)
+ [https://github.com/topics/poi](https://github.com/topics/poi)
+ [https://github.com/topics/excel](https://github.com/topics/excel)
Expand All @@ -114,10 +115,14 @@
* [https://github.com/apache/pdfbox](https://github.com/apache/pdfbox)
* [https://github.com/apache/tika](https://github.com/apache/tika)
* [https://github.com/itext](https://github.com/itext)
* [https://github.com/flyingsaucerproject/flyingsaucer](https://github.com/flyingsaucerproject/flyingsaucer)
* [https://github.com/openhtmltopdf/openhtmltopdf](https://github.com/openhtmltopdf/openhtmltopdf)
* [https://github.com/LibrePDF/OpenPDF](https://github.com/LibrePDF/OpenPDF)
* [https://github.com/Frooodle/Stirling-PDF](https://github.com/Frooodle/Stirling-PDF)
* [https://github.com/ofdrw/ofdrw](https://github.com/ofdrw/ofdrw)
* [https://github.com/MrRio/jsPDF](https://github.com/MrRio/jsPDF)
* [https://github.com/mozilla/pdf.js](https://github.com/mozilla/pdf.js)
* [https://github.com/Hopding/pdf-lib](https://github.com/Hopding/pdf-lib)
* 读取PDF [https://github.com/ledongthuc/pdf](https://github.com/ledongthuc/pdf)
* [https://github.com/google/go-tika](https://github.com/google/go-tika)
* [https://github.com/pdfcpu/pdfcpu](https://github.com/pdfcpu/pdfcpu)
Expand All @@ -129,6 +134,15 @@
* [https://github.com/apache/xmlgraphics-fop](https://github.com/apache/xmlgraphics-fop)
* [https://github.com/apache/xmlgraphics-fop-pdf-images](https://github.com/apache/xmlgraphics-fop-pdf-images)
* [https://github.com/bpampuch/pdfmake](https://github.com/bpampuch/pdfmake)
* python [https://github.com/py-pdf/pypdf](https://github.com/py-pdf/pypdf)
* [https://github.com/pymupdf/PyMuPDF](https://github.com/pymupdf/PyMuPDF)
* [https://hg.reportlab.com/hg-public](https://hg.reportlab.com/hg-public)
* [https://github.com/pdfminer/pdfminer.six](https://github.com/pdfminer/pdfminer.six)
* [https://github.com/euske/pdfminer](https://github.com/euske/pdfminer)
* [https://github.com/alephdata/pdflib](https://github.com/alephdata/pdflib)
* [https://github.com/pyx-project/pyx](https://github.com/pyx-project/pyx)
* [https://github.com/reingart/pyfpdf](https://github.com/reingart/pyfpdf)
* [https://github.com/pmaupin/pdfrw](https://github.com/pmaupin/pdfrw)



Expand Down
1 change: 1 addition & 0 deletions PL/编程规范.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
+ [https://github.com/fossas](https://github.com/fossas)
+ [https://app.fossa.com](https://app.fossa.com)
+ [https://fossa.com/learn/developers-guide-open-source-software-licenses](https://fossa.com/learn/developers-guide-open-source-software-licenses)
+ [https://open-source-license-chooser.toolsnav.top/zh](https://open-source-license-chooser.toolsnav.top/zh)
+ [如何选择开源许可证?](http://www.ruanyifeng.com/blog/2011/05/how_to_choose_free_software_licenses.html)
+ [如何选择开源许可证?](https://blog.csdn.net/wadefelix/article/details/6384317)
+ [https://spdx.org/licenses](https://spdx.org/licenses)
Expand Down
2 changes: 1 addition & 1 deletion Python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ vi /usr/libexec/urlgrabber-ext-down
* [https://github.com/python-poetry/poetry](https://github.com/python-poetry/poetry)
* [https://github.com/pyenv/pyenv](https://github.com/pyenv/pyenv)
* [https://github.com/danhper/asdf-python](https://github.com/danhper/asdf-python)
* [https://github.com/frostming/pdm](https://github.com/frostming/pdm)
* [https://github.com/pdm-project/pdm](https://github.com/pdm-project/pdm)
* [https://bitbucket.org/virtualenvwrapper/virtualenvwrapper](https://bitbucket.org/virtualenvwrapper/virtualenvwrapper)
* [https://github.com/davidmarble/virtualenvwrapper-win](https://github.com/davidmarble/virtualenvwrapper-win)
* [https://github.com/python-poetry/poetry](https://github.com/python-poetry/poetry)
Expand Down
1 change: 1 addition & 0 deletions Shell/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
- 历史导入SQLite [https://github.com/atuinsh/atuin](https://github.com/atuinsh/atuin)
- 历史查找 [https://github.com/YiNNx/cmd-wrapped](https://github.com/YiNNx/cmd-wrapped)
- 录屏 [https://github.com/gvcgo/asciinema](https://github.com/gvcgo/asciinema)
- 词典 [https://github.com/lengyijun/mdict-cli-rs](https://github.com/lengyijun/mdict-cli-rs)


* [https://github.com/google/zx](https://github.com/google/zx)
Expand Down
3 changes: 1 addition & 2 deletions Shell/ShellWindows.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@



- [https://github.com/OpenPGP/openpgp.org](https://github.com/OpenPGP/openpgp.org)
- GPG密钥 [https://www.gpg4win.org](https://www.gpg4win.org)

- 多个shell软件包镜像 [https://github.com/mirror](https://github.com/mirror)
- [https://github.com/svn2github](https://github.com/svn2github)
- [https://winlibs.com](https://winlibs.com)
Expand Down
1 change: 1 addition & 0 deletions System/Android.md
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,7 @@
* [https://www.lightricks.com](https://www.lightricks.com)
* 磁力下载 [https://github.com/proninyaroslav/libretorrent](https://github.com/proninyaroslav/libretorrent)
* 运行Windows应用 [https://github.com/brunodev85/winlator](https://github.com/brunodev85/winlator)
* 词典 [https://github.com/mumu-lhl/Ciyue](https://github.com/mumu-lhl/Ciyue)


**下载Google Play Store上的应用**
Expand Down
1 change: 1 addition & 0 deletions System/IOS.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
- [https://github.com/paulmillr/encrypted-dns](https://github.com/paulmillr/encrypted-dns)
- 应用管理器 [https://github.com/milanvarady/Applite](https://github.com/milanvarady/Applite)
- [https://devutils.com](https://devutils.com)
- 剪贴板 [https://github.com/s1ntoneli/Copi](https://github.com/s1ntoneli/Copi)


* [https://macked.app](https://macked.app)
Expand Down
10 changes: 6 additions & 4 deletions System/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,6 @@
* [https://github.com/samboy/MaraDNS](https://github.com/samboy/MaraDNS)
* [https://github.com/m13253/dns-over-https](https://github.com/m13253/dns-over-https)
* [https://github.com/DNSCrypt/dnscrypt-proxy](https://github.com/DNSCrypt/dnscrypt-proxy)
* []()
* []()
* []()
* [https://github.com/getdnsapi/stubby](https://github.com/getdnsapi/stubby)
* [https://github.com/NetworkConfiguration/openresolv](https://github.com/NetworkConfiguration/openresolv)
* [https://github.com/gdnsd/gdnsd](https://github.com/gdnsd/gdnsd)
Expand Down Expand Up @@ -370,8 +367,9 @@
- [https://github.com/ClementTsang/bottom](https://github.com/ClementTsang/bottom)
- [https://github.com/aksakalli/gtop](https://github.com/aksakalli/gtop)
- [https://github.com/xxxserxxx/gotop](https://github.com/xxxserxxx/gotop)
- [https://github.com/aristocratos/btop](https://github.com/aristocratos/btop)
- [https://github.com/htop-dev/htop](https://github.com/htop-dev/htop)
- [https://github.com/aristocratos/btop](https://github.com/aristocratos/btop)
- [还在用 top htop? 赶紧换 btop 吧,真香!](https://mp.weixin.qq.com/s/Qr-z0-zL44UjnItmDlsMzg)
- [https://github.com/nicolargo/glances](https://github.com/nicolargo/glances)
- [https://github.com/sysstat/sysstat](https://github.com/sysstat/sysstat)
- [https://github.com/context-labs/mactop](https://github.com/context-labs/mactop)
Expand Down Expand Up @@ -502,6 +500,7 @@
* [https://github.com/jellyfin/jellyfin](https://github.com/jellyfin/jellyfin)
* [https://github.com/movie-web/movie-web](https://github.com/movie-web/movie-web)
* 证件照 [https://github.com/zhbhun/idify](https://github.com/zhbhun/idify)
* [https://github.com/Zeyi-Lin/HivisionIDPhotos](https://github.com/Zeyi-Lin/HivisionIDPhotos)
* 在线PS [https://github.com/viliusle/miniPaint](https://github.com/viliusle/miniPaint)
* [https://zaixianps.net](https://zaixianps.net)
* [https://github.com/CH563/shot-easy-website](https://github.com/CH563/shot-easy-website)
Expand Down Expand Up @@ -563,6 +562,9 @@
* 汇编写的论坛 [https://asm32.info/fossil/asmbb](https://asm32.info/fossil/asmbb)
* 二维码分享文件 [https://github.com/sz3/libcimbar](https://github.com/sz3/libcimbar)
* 数字转中文 [https://github.com/Ailln/cn2an](https://github.com/Ailln/cn2an)
* 文字转图片 [https://github.com/byodian/oneimg](https://github.com/byodian/oneimg)
* 麻将游戏 [https://github.com/liumengniu/majiang](https://github.com/liumengniu/majiang)
* AI姿势 [https://github.com/AmyangXYZ/MiKaPo](https://github.com/AmyangXYZ/MiKaPo)
Expand Down
1 change: 1 addition & 0 deletions System/Windows软件.md
Original file line number Diff line number Diff line change
Expand Up @@ -1058,6 +1058,7 @@ THUV2-32HH7-6NMHN-PTX7Y-QQCTH(该序列号来自昔阳县政府)
* [https://github.com/1Password](https://github.com/1Password)
* [https://github.com/ftyszyx/lockpass](https://github.com/ftyszyx/lockpass)
* [https://authy.com](https://authy.com)
* [https://github.com/momaek/authy](https://github.com/momaek/authy)
* [https://github.com/BrandonPotter/GoogleAuthenticator](https://github.com/BrandonPotter/GoogleAuthenticator)
Expand Down
2 changes: 2 additions & 0 deletions Web/JavaScript框架.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
* [https://github.com/react-guide](https://github.com/react-guide)
* [https://github.com/camsong/redux-in-chinese](https://github.com/camsong/redux-in-chinese)
* [https://www.reduxjs.cn](https://www.reduxjs.cn)
* [https://github.com/onejs/one](https://github.com/onejs/one)
* 状态管理 [https://github.com/pmndrs/valtio](https://github.com/pmndrs/valtio)
* [https://github.com/facebookexperimental/Recoil](https://github.com/facebookexperimental/Recoil)
* [https://www.recoiljs.cn](https://www.recoiljs.cn)
Expand Down Expand Up @@ -147,6 +148,7 @@


* [https://github.com/PanJiaChen/vue-element-admin](https://github.com/PanJiaChen/vue-element-admin)
* 3D可视化 [https://github.com/hawk86104/icegl-three-vue-tres](https://github.com/hawk86104/icegl-three-vue-tres)


### VueJS框架
Expand Down

0 comments on commit 04ae815

Please sign in to comment.