├── items ├── web │ ├── xirang.yaml │ └── xirang-ui.yaml └── openLDAP │ ├── go-ldap-admin.yaml │ ├── go-ldap-admin-ui.yaml │ └── go-ldap-admin-doc.yaml ├── .github └── workflows │ ├── debug.yaml │ └── readme.yaml ├── README.tpl └── README.md /items/web/xirang.yaml: -------------------------------------------------------------------------------- 1 | kind: web 2 | owner: eryajf 3 | repo: 'xirang' 4 | desc: '简单好用,直接上手的go-web框架' -------------------------------------------------------------------------------- /items/web/xirang-ui.yaml: -------------------------------------------------------------------------------- 1 | kind: web 2 | owner: eryajf 3 | repo: 'xirang-ui' 4 | desc: '简单好用,直接上手的go-web框架-前端' -------------------------------------------------------------------------------- /items/openLDAP/go-ldap-admin.yaml: -------------------------------------------------------------------------------- 1 | kind: openLDAP 2 | owner: eryajf 3 | repo: 'go-ldap-admin' 4 | desc: '🌉 基于Go+Vue实现的openLDAP后台管理项目' -------------------------------------------------------------------------------- /items/openLDAP/go-ldap-admin-ui.yaml: -------------------------------------------------------------------------------- 1 | kind: openLDAP 2 | owner: eryajf 3 | repo: 'go-ldap-admin-ui' 4 | desc: '🌉 基于Go+Vue实现的openLDAP后台管理项目前端' -------------------------------------------------------------------------------- /items/openLDAP/go-ldap-admin-doc.yaml: -------------------------------------------------------------------------------- 1 | kind: openLDAP 2 | owner: eryajf 3 | repo: 'go-ldap-admin-doc' 4 | desc: '🌉 基于Go+Vue实现的openLDAP后台管理项目的官方文档' -------------------------------------------------------------------------------- /.github/workflows/debug.yaml: -------------------------------------------------------------------------------- 1 | name: debug 2 | 3 | on: 4 | workflow_dispatch: 5 | push: 6 | branches: 7 | - main 8 | 9 | jobs: 10 | example-job: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - name: Print all environment variables 14 | run: env -------------------------------------------------------------------------------- /README.tpl: -------------------------------------------------------------------------------- 1 | ## 这是一个优秀的仓库 2 | 3 | {{- range $key, $val := .}} 4 | 5 | ## {{$key}} 6 | 7 | | Repository | License | Star |CreatedAt | UpdatedAt | Description | 8 | |:-:|:-:|:-:|:-:|:-:|:-:| 9 | {{- range $item := $val}} 10 | | [{{$item.owner}}/{{$item.repo}}](https://github.com/{{$item.owner}}/{{$item.repo}}) | {{ghLicense $item.owner $item.repo}} | {{ghStar $item.owner $item.repo}} | {{ghCreate $item.owner $item.repo}} | {{ghUpdate $item.owner $item.repo}} | {{$item.desc}} | 11 | {{- end}} 12 | {{end}} 13 | 14 | ## 贡献者 15 | 16 | --- 17 | 18 | {{printContributors "eryajf" "learn-github"}} 19 | 20 | --- 21 | 22 | {{printContributors "eryajf" "awesome-ops"}} -------------------------------------------------------------------------------- /.github/workflows/readme.yaml: -------------------------------------------------------------------------------- 1 | name: GitHub README STATS 2 | 3 | on: 4 | workflow_dispatch: 5 | schedule: 6 | - cron: "0 0 * * *" 7 | push: 8 | branches: 9 | - main 10 | 11 | env: 12 | GITHUB_NAME: "github-actions[bot]" 13 | GITHUB_EMAIL: "github-actions[bot]@users.noreply.github.com" 14 | STARRED_NUM: 10 15 | 16 | jobs: 17 | build: 18 | name: Build 19 | runs-on: ubuntu-latest 20 | steps: 21 | - uses: actions/checkout@v2 22 | - name: My GitHub Status 23 | uses: yihong0618/github-readme-stats@main 24 | with: 25 | # we need set GITHUB_TOKEN 26 | GH_TOKEN: ${{ secrets.GH_TOKEN }} 27 | # if you also want to send TELE 28 | STARRED_NUM: ${{ env.STARRED_NUM }} 29 | 30 | - name: Push README 31 | run: | 32 | git config --local user.email "${{ env.GITHUB_EMAIL }}" 33 | git config --local user.name "${{ env.GITHUB_NAME }}" 34 | git commit -a -m 'docs: update readme.md' || echo "nothing to commit" 35 | git push || echo "nothing to push" 36 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 这是一个优秀的仓库 2 | 3 | 4 | ## The repos I created 5 | | ID | REPO | START | UPDATE | LANGUAGE | STARS | 6 | |-----|----------------------------------------------------------------------------------------------------------|------------|------------|------------|-------| 7 | | 1 | [chatgpt-dingtalk](https://github.com/eryajf/chatgpt-dingtalk) | 2022-12-09 | 2025-12-11 | Go | 2120 | 8 | | 2 | [HowToStartOpenSource](https://github.com/eryajf/HowToStartOpenSource) | 2022-07-02 | 2025-12-11 | md | 914 | 9 | | 3 | [awesome-navigation](https://github.com/eryajf/awesome-navigation) | 2022-10-08 | 2025-12-14 | md | 607 | 10 | | 4 | [learning-weekly](https://github.com/eryajf/learning-weekly) | 2021-05-30 | 2025-12-13 | md | 582 | 11 | | 5 | [magic-of-sysuse-scripts](https://github.com/eryajf/magic-of-sysuse-scripts) | 2019-05-17 | 2025-12-04 | Shell | 294 | 12 | | 6 | [awesome-github-profile-readme-chinese](https://github.com/eryajf/awesome-github-profile-readme-chinese) | 2022-07-25 | 2025-12-09 | md | 288 | 13 | | 7 | [vdoing-template](https://github.com/eryajf/vdoing-template) | 2022-07-21 | 2025-12-02 | JavaScript | 235 | 14 | | 8 | [read-list](https://github.com/eryajf/read-list) | 2022-06-27 | 2025-12-09 | md | 204 | 15 | | 9 | [awesome-stars-eryajf](https://github.com/eryajf/awesome-stars-eryajf) | 2022-07-29 | 2025-12-15 | md | 167 | 16 | | 10 | [chatgpt-wecom](https://github.com/eryajf/chatgpt-wecom) | 2023-07-02 | 2025-11-23 | Go | 65 | 17 | | 11 | [xirang](https://github.com/eryajf/xirang) | 2021-12-16 | 2025-12-09 | Go | 54 | 18 | | 12 | [care-screenshot](https://github.com/eryajf/care-screenshot) | 2021-09-28 | 2025-11-23 | Go | 52 | 19 | | 13 | [langchaingo-ollama-rag](https://github.com/eryajf/langchaingo-ollama-rag) | 2024-04-19 | 2025-12-08 | Go | 45 | 20 | | 14 | [go-ldap-admin-doc](https://github.com/eryajf/go-ldap-admin-doc) | 2022-06-04 | 2025-12-09 | JavaScript | 30 | 21 | | 15 | [Obsidian-Plugin-Weekly](https://github.com/eryajf/Obsidian-Plugin-Weekly) | 2021-12-25 | 2025-11-19 | Shell | 29 | 22 | | 16 | [gitlabCodeSearch](https://github.com/eryajf/gitlabCodeSearch) | 2023-09-01 | 2025-10-22 | Go | 25 | 23 | | 17 | [awesome-chatgpt-answer](https://github.com/eryajf/awesome-chatgpt-answer) | 2023-03-07 | 2025-04-28 | md | 25 | 24 | | 18 | [eryajf](https://github.com/eryajf/eryajf) | 2020-07-11 | 2025-12-14 | md | 25 | 25 | | 19 | [third-tools](https://github.com/eryajf/third-tools) | 2022-07-11 | 2025-06-12 | Go | 22 | 26 | | 20 | [eryajfctl](https://github.com/eryajf/eryajfctl) | 2023-06-04 | 2025-11-23 | Go | 19 | 27 | | 21 | [recommend-actions](https://github.com/eryajf/recommend-actions) | 2022-09-01 | 2025-06-28 | md | 19 | 28 | | 22 | [docker_learn](https://github.com/eryajf/docker_learn) | 2018-10-25 | 2025-07-18 | Dockerfile | 16 | 29 | | 23 | [magic-of-kubernetes-scripts](https://github.com/eryajf/magic-of-kubernetes-scripts) | 2018-11-29 | 2025-11-11 | Shell | 16 | 30 | | 24 | [emotion_generate](https://github.com/eryajf/emotion_generate) | 2023-02-28 | 2025-10-02 | JavaScript | 15 | 31 | | 25 | [shellabout](https://github.com/eryajf/shellabout) | 2018-06-15 | 2024-03-12 | JavaScript | 15 | 32 | | 26 | [learn-github](https://github.com/eryajf/learn-github) | 2022-05-31 | 2025-12-14 | md | 14 | 33 | | 27 | [ldapctl](https://github.com/eryajf/ldapctl) | 2022-05-01 | 2025-02-26 | Go | 13 | 34 | | 28 | [xirang-ui](https://github.com/eryajf/xirang-ui) | 2022-08-26 | 2025-08-18 | Vue | 13 | 35 | | 29 | [cloudctl](https://github.com/eryajf/cloudctl) | 2023-06-05 | 2025-04-11 | Go | 12 | 36 | | 30 | [rpmbuild](https://github.com/eryajf/rpmbuild) | 2021-10-21 | 2025-04-02 | C | 12 | 37 | | 31 | [ldapool](https://github.com/eryajf/ldapool) | 2022-10-13 | 2025-11-23 | Go | 11 | 38 | | 32 | [awesome-utools-plugins](https://github.com/eryajf/awesome-utools-plugins) | 2025-08-05 | 2025-09-20 | md | 10 | 39 | | 33 | [eryajf-dockerfile](https://github.com/eryajf/eryajf-dockerfile) | 2023-04-20 | 2025-04-11 | Dockerfile | 9 | 40 | | 34 | [GitHub-Chinese-Top-Charts](https://github.com/eryajf/GitHub-Chinese-Top-Charts) | 2021-05-29 | 2025-08-08 | Java | 9 | 41 | | 35 | [luban](https://github.com/eryajf/luban) | 2021-12-21 | 2025-05-19 | md | 9 | 42 | | 36 | [vue-learn-code](https://github.com/eryajf/vue-learn-code) | 2022-08-17 | 2025-08-20 | JavaScript | 8 | 43 | | 37 | [wechatbot](https://github.com/eryajf/wechatbot) | 2022-12-09 | 2025-04-12 | Go | 8 | 44 | | 38 | [chatgpt-vercel](https://github.com/eryajf/chatgpt-vercel) | 2023-03-04 | 2023-08-06 | TypeScript | 7 | 45 | | 39 | [go-enterprise-email-sdk](https://github.com/eryajf/go-enterprise-email-sdk) | 2024-10-06 | 2025-07-12 | Go | 6 | 46 | | 40 | [gojenkins](https://github.com/eryajf/gojenkins) | 2021-05-07 | 2025-04-11 | Go | 5 | 47 | | 41 | [share-library](https://github.com/eryajf/share-library) | 2024-01-08 | 2024-08-20 | Groovy | 5 | 48 | | 42 | [glactl](https://github.com/eryajf/glactl) | 2024-04-14 | 2025-09-03 | Go | 4 | 49 | | 43 | [t](https://github.com/eryajf/t) | 2019-05-03 | 2022-08-02 | md | 4 | 50 | | 44 | [wiki-eryajf](https://github.com/eryajf/wiki-eryajf) | 2021-05-24 | 2022-08-02 | Shell | 4 | 51 | | 45 | [Learning-Weekly-old](https://github.com/eryajf/Learning-Weekly-old) | 2021-05-30 | 2022-10-12 | Shell | 4 | 52 | | 46 | [Jenkinsfile](https://github.com/eryajf/Jenkinsfile) | 2024-01-08 | 2024-07-28 | md | 4 | 53 | | 47 | [deploy-playbook](https://github.com/eryajf/deploy-playbook) | 2024-01-08 | 2025-04-11 | Shell | 4 | 54 | | 48 | [docsify-template](https://github.com/eryajf/docsify-template) | 2021-12-25 | 2022-08-02 | md | 4 | 55 | | 49 | [tu](https://github.com/eryajf/tu) | 2022-06-07 | 2025-09-28 | md | 3 | 56 | | 50 | [xirang-web](https://github.com/eryajf/xirang-web) | 2024-06-10 | 2025-07-25 | TypeScript | 2 | 57 | | 51 | [xirang-ui-pure](https://github.com/eryajf/xirang-ui-pure) | 2024-02-19 | 2025-04-11 | TypeScript | 1 | 58 | | 52 | [cdn-refresh](https://github.com/eryajf/cdn-refresh) | 2025-04-11 | 2025-07-31 | Go | 1 | 59 | | 53 | [ob-online](https://github.com/eryajf/ob-online) | 2023-04-07 | 2025-04-11 | SCSS | 1 | 60 | | 54 | [talk-opsre](https://github.com/eryajf/talk-opsre) | 2025-05-18 | 2025-05-19 | TypeScript | 0 | 61 | | 55 | [debug-action-cache](https://github.com/eryajf/debug-action-cache) | 2025-04-04 | 2025-04-12 | Go | 0 | 62 | | 56 | [cnb-readme-generate](https://github.com/eryajf/cnb-readme-generate) | 2025-04-17 | 2025-04-17 | md | 0 | 63 | | 57 | [talk](https://github.com/eryajf/talk) | 2025-05-18 | 2025-06-03 | TypeScript | 0 | 64 | | 58 | [note-gen-image-sync](https://github.com/eryajf/note-gen-image-sync) | 2025-01-15 | 2025-01-15 | md | 0 | 65 | | 59 | [awesome-ops-site](https://github.com/eryajf/awesome-ops-site) | 2025-05-18 | 2025-05-18 | md | 0 | 66 | | 60 | [qifei](https://github.com/eryajf/qifei) | 2025-03-27 | 2025-03-27 | md | 0 | 67 | | 61 | [.github](https://github.com/eryajf/.github) | 2022-12-05 | 2025-02-24 | md | 0 | 68 | | sum | | | | | 6070 | 69 | 70 | ## The repos I contributed to 71 | | ID | REPO | FIRSTDATE | LASTDATE | LANGUAGE | PRCOUNT | 72 | |-----|-----------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|------------|----------------------------------------------------------------------------------------------------------| 73 | | 1 | [go-ldap-admin](https://github.com/opsre/go-ldap-admin) | [2022-06-01](https://github.com/opsre/go-ldap-admin/pull/6) | [2025-09-02](https://github.com/opsre/go-ldap-admin/pull/403) | Go | [107](https://github.com/opsre/go-ldap-admin/pulls?q=is%3Apr+author%3Aeryajf) | 74 | | 2 | [go-ldap-admin-ui](https://github.com/opsre/go-ldap-admin-ui) | [2022-06-14](https://github.com/opsre/go-ldap-admin-ui/pull/6) | [2024-04-04](https://github.com/opsre/go-ldap-admin-ui/pull/54) | Vue | [36](https://github.com/opsre/go-ldap-admin-ui/pulls?q=is%3Apr+author%3Aeryajf) | 75 | | 3 | [awesome-ops](https://github.com/opsre/awesome-ops) | [2024-01-19](https://github.com/opsre/awesome-ops/pull/7) | [2025-05-14](https://github.com/opsre/awesome-ops/pull/70) | Smarty | [28](https://github.com/opsre/awesome-ops/pulls?q=is%3Apr+author%3Aeryajf) | 76 | | 4 | [cloud_dns_exporter](https://github.com/opsre/cloud_dns_exporter) | [2024-09-01](https://github.com/opsre/cloud_dns_exporter/pull/3) | [2025-06-18](https://github.com/opsre/cloud_dns_exporter/pull/30) | Go | [11](https://github.com/opsre/cloud_dns_exporter/pulls?q=is%3Apr+author%3Aeryajf) | 77 | | 5 | [wechat](https://github.com/jenkins-infra/wechat) | [2019-05-16](https://github.com/jenkins-infra/wechat/pull/124) | [2019-09-16](https://github.com/jenkins-infra/wechat/pull/229) | Groovy | [6](https://github.com/jenkins-infra/wechat/pulls?q=is%3Apr+author%3Aeryajf) | 78 | | 6 | [Thanks-Mirror](https://github.com/opsre/Thanks-Mirror) | [2022-06-01](https://github.com/opsre/Thanks-Mirror/pull/11) | [2023-03-19](https://github.com/opsre/Thanks-Mirror/pull/216) | md | [4](https://github.com/opsre/Thanks-Mirror/pulls?q=is%3Apr+author%3Aeryajf) | 79 | | 7 | [reference](https://github.com/jaywcjlove/reference) | [2022-12-06](https://github.com/jaywcjlove/reference/pull/208) | [2023-04-04](https://github.com/jaywcjlove/reference/pull/340) | Dockerfile | [4](https://github.com/jaywcjlove/reference/pulls?q=is%3Apr+author%3Aeryajf) | 80 | | 8 | [awesome-chatgpt](https://github.com/humanloop/awesome-chatgpt) | [2022-12-10](https://github.com/humanloop/awesome-chatgpt/pull/12) | [2023-03-04](https://github.com/humanloop/awesome-chatgpt/pull/79) | md | [4](https://github.com/humanloop/awesome-chatgpt/pulls?q=is%3Apr+author%3Aeryajf) | 81 | | 9 | [alist](https://github.com/AlistGo/alist) | [2024-03-11](https://github.com/AlistGo/alist/pull/6201) | [2024-04-04](https://github.com/AlistGo/alist/pull/6305) | Go | [4](https://github.com/AlistGo/alist/pulls?q=is%3Apr+author%3Aeryajf) | 82 | | 10 | [k8m](https://github.com/weibaohui/k8m) | [2025-04-05](https://github.com/weibaohui/k8m/pull/35) | [2025-09-24](https://github.com/weibaohui/k8m/pull/315) | Go | [4](https://github.com/weibaohui/k8m/pulls?q=is%3Apr+author%3Aeryajf) | 83 | | 11 | [categraf](https://github.com/flashcatcloud/categraf) | [2024-08-08](https://github.com/flashcatcloud/categraf/pull/1023) | [2024-08-11](https://github.com/flashcatcloud/categraf/pull/1028) | Go | [3](https://github.com/flashcatcloud/categraf/pulls?q=is%3Apr+author%3Aeryajf) | 84 | | 12 | [vitepress-theme-teek](https://github.com/Kele-Bingtang/vitepress-theme-teek) | [2025-05-13](https://github.com/Kele-Bingtang/vitepress-theme-teek/pull/62) | [2025-09-06](https://github.com/Kele-Bingtang/vitepress-theme-teek/pull/144) | TypeScript | [3](https://github.com/Kele-Bingtang/vitepress-theme-teek/pulls?q=is%3Apr+author%3Aeryajf) | 85 | | 13 | [chatgpt-web](https://github.com/869413421/chatgpt-web) | [2023-02-27](https://github.com/Chanzhaoyu/chatgpt-web/pull/144) | [2023-03-07](https://github.com/869413421/chatgpt-web/pull/51) | Go | [3](https://github.com/869413421/chatgpt-web/pulls?q=is%3Apr+author%3Aeryajf) | 86 | | 14 | [WatchAlert](https://github.com/opsre/WatchAlert) | [2024-11-25](https://github.com/opsre/WatchAlert/pull/102) | [2024-11-26](https://github.com/opsre/WatchAlert/pull/103) | Go | [3](https://github.com/opsre/WatchAlert/pulls?q=is%3Apr+author%3Aeryajf) | 87 | | 15 | [chinese-independent-blogs](https://github.com/timqian/chinese-independent-blogs) | [2020-03-27](https://github.com/timqian/chinese-independent-blogs/pull/320) | [2021-09-27](https://github.com/timqian/chinese-independent-blogs/pull/768) | Python | [2](https://github.com/timqian/chinese-independent-blogs/pulls?q=is%3Apr+author%3Aeryajf) | 88 | | 16 | [lychee-action](https://github.com/lycheeverse/lychee-action) | [2022-08-07](https://github.com/lycheeverse/lychee-action/pull/154) | [2022-08-11](https://github.com/lycheeverse/lychee-action/pull/158) | Shell | [2](https://github.com/lycheeverse/lychee-action/pulls?q=is%3Apr+author%3Aeryajf) | 89 | | 17 | [version-manager](https://github.com/gvcgo/version-manager) | [2024-03-23](https://github.com/gvcgo/version-manager/pull/1) | [2024-03-24](https://github.com/gvcgo/version-manager/pull/2) | Go | [2](https://github.com/gvcgo/version-manager/pulls?q=is%3Apr+author%3Aeryajf) | 90 | | 18 | [awesome-github-profile-readme](https://github.com/abhisheknaiidu/awesome-github-profile-readme) | [2022-07-22](https://github.com/abhisheknaiidu/awesome-github-profile-readme/pull/862) | [2022-10-10](https://github.com/abhisheknaiidu/awesome-github-profile-readme/pull/908) | md | [2](https://github.com/abhisheknaiidu/awesome-github-profile-readme/pulls?q=is%3Apr+author%3Aeryajf) | 91 | | 19 | [hubproxy](https://github.com/sky22333/hubproxy) | [2025-09-29](https://github.com/sky22333/hubproxy/pull/75) | [2025-09-29](https://github.com/sky22333/hubproxy/pull/75) | Go | [2](https://github.com/sky22333/hubproxy/pulls?q=is%3Apr+author%3Aeryajf) | 92 | | 20 | [package-manager-proxy-settings](https://github.com/comwrg/package-manager-proxy-settings) | [2022-05-07](https://github.com/comwrg/package-manager-proxy-settings/pull/31) | [2022-05-09](https://github.com/comwrg/package-manager-proxy-settings/pull/34) | md | [2](https://github.com/comwrg/package-manager-proxy-settings/pulls?q=is%3Apr+author%3Aeryajf) | 93 | | 21 | [OpenList](https://github.com/OpenListTeam/OpenList) | [2025-06-26](https://github.com/OpenListTeam/OpenList/pull/396) | [2025-06-26](https://github.com/OpenListTeam/OpenList/pull/396) | Go | [2](https://github.com/OpenListTeam/OpenList/pulls?q=is%3Apr+author%3Aeryajf) | 94 | | 22 | [alibabacloud-esa-cli](https://github.com/aliyun/alibabacloud-esa-cli) | [2025-05-27](https://github.com/aliyun/alibabacloud-esa-cli/pull/13) | [2025-05-27](https://github.com/aliyun/alibabacloud-esa-cli/pull/13) | TypeScript | [1](https://github.com/aliyun/alibabacloud-esa-cli/pulls?q=is%3Apr+author%3Aeryajf) | 95 | | 23 | [weekly](https://github.com/ruanyf/weekly) | [2022-06-15](https://github.com/ruanyf/weekly/pull/2451) | [2022-06-15](https://github.com/ruanyf/weekly/pull/2451) | md | [1](https://github.com/ruanyf/weekly/pulls?q=is%3Apr+author%3Aeryajf) | 96 | | 24 | [carrot](https://github.com/xx025/carrot) | [2023-03-16](https://github.com/xx025/carrot/pull/27) | [2023-03-16](https://github.com/xx025/carrot/pull/27) | md | [1](https://github.com/xx025/carrot/pulls?q=is%3Apr+author%3Aeryajf) | 97 | | 25 | [awesome-chatgpt-api](https://github.com/reorx/awesome-chatgpt-api) | [2023-03-08](https://github.com/reorx/awesome-chatgpt-api/pull/24) | [2023-03-08](https://github.com/reorx/awesome-chatgpt-api/pull/24) | Python | [1](https://github.com/reorx/awesome-chatgpt-api/pulls?q=is%3Apr+author%3Aeryajf) | 98 | | 26 | [github-slug-action](https://github.com/rlespinasse/github-slug-action) | [2023-02-28](https://github.com/rlespinasse/github-slug-action/pull/127) | [2023-02-28](https://github.com/rlespinasse/github-slug-action/pull/127) | Shell | [1](https://github.com/rlespinasse/github-slug-action/pulls?q=is%3Apr+author%3Aeryajf) | 99 | | 27 | [go-workwx](https://github.com/xen0n/go-workwx) | [2023-09-28](https://github.com/xen0n/go-workwx/pull/177) | [2023-09-28](https://github.com/xen0n/go-workwx/pull/177) | Go | [1](https://github.com/xen0n/go-workwx/pulls?q=is%3Apr+author%3Aeryajf) | 100 | | 28 | [docs](https://github.com/AlistGo/docs) | [2024-04-07](https://github.com/AlistGo/docs/pull/337) | [2024-04-07](https://github.com/AlistGo/docs/pull/337) | TypeScript | [1](https://github.com/AlistGo/docs/pulls?q=is%3Apr+author%3Aeryajf) | 101 | | 29 | [wecom-bot-api](https://github.com/electricbubble/wecom-bot-api) | [2023-04-23](https://github.com/electricbubble/wecom-bot-api/pull/1) | [2023-04-23](https://github.com/electricbubble/wecom-bot-api/pull/1) | Go | [1](https://github.com/electricbubble/wecom-bot-api/pulls?q=is%3Apr+author%3Aeryajf) | 102 | | 30 | [dingtalk](https://github.com/zhaoyunxing92/dingtalk) | [2022-06-22](https://github.com/zhaoyunxing92/dingtalk/pull/90) | [2022-06-22](https://github.com/zhaoyunxing92/dingtalk/pull/90) | Go | [1](https://github.com/zhaoyunxing92/dingtalk/pulls?q=is%3Apr+author%3Aeryajf) | 103 | | 31 | [README](https://github.com/guodongxiaren/README) | [2022-07-28](https://github.com/guodongxiaren/README/pull/110) | [2022-07-28](https://github.com/guodongxiaren/README/pull/110) | md | [1](https://github.com/guodongxiaren/README/pulls?q=is%3Apr+author%3Aeryajf) | 104 | | 32 | [review-2022](https://github.com/saveweb/review-2022) | [2023-01-02](https://github.com/saveweb/review-2022/pull/20) | [2023-01-02](https://github.com/saveweb/review-2022/pull/20) | Markdown | [1](https://github.com/saveweb/review-2022/pulls?q=is%3Apr+author%3Aeryajf) | 105 | | 33 | [Artalk](https://github.com/ArtalkJS/Artalk) | [2023-02-28](https://github.com/ArtalkJS/Artalk/pull/436) | [2023-02-28](https://github.com/ArtalkJS/Artalk/pull/436) | Go | [1](https://github.com/ArtalkJS/Artalk/pulls?q=is%3Apr+author%3Aeryajf) | 106 | | 34 | [domain-helper](https://github.com/imxiny/domain-helper) | [2025-02-10](https://github.com/imxiny/domain-helper/pull/2) | [2025-02-10](https://github.com/imxiny/domain-helper/pull/2) | Vue | [1](https://github.com/imxiny/domain-helper/pulls?q=is%3Apr+author%3Aeryajf) | 107 | | 35 | [awesome-meilisearch](https://github.com/meilisearch/awesome-meilisearch) | [2023-03-07](https://github.com/meilisearch/awesome-meilisearch/pull/36) | [2023-03-07](https://github.com/meilisearch/awesome-meilisearch/pull/36) | md | [1](https://github.com/meilisearch/awesome-meilisearch/pulls?q=is%3Apr+author%3Aeryajf) | 108 | | 36 | [kpexec](https://github.com/ssup2/kpexec) | [2024-04-07](https://github.com/ssup2/kpexec/pull/17) | [2024-04-07](https://github.com/ssup2/kpexec/pull/17) | Go | [1](https://github.com/ssup2/kpexec/pulls?q=is%3Apr+author%3Aeryajf) | 109 | | 37 | [huntly](https://github.com/lcomplete/huntly) | [2023-03-07](https://github.com/lcomplete/huntly/pull/7) | [2023-03-07](https://github.com/lcomplete/huntly/pull/7) | TypeScript | [1](https://github.com/lcomplete/huntly/pulls?q=is%3Apr+author%3Aeryajf) | 110 | | 38 | [go-awesome](https://github.com/shockerli/go-awesome) | [2022-06-09](https://github.com/shockerli/go-awesome/pull/13) | [2022-06-09](https://github.com/shockerli/go-awesome/pull/13) | md | [1](https://github.com/shockerli/go-awesome/pulls?q=is%3Apr+author%3Aeryajf) | 111 | | 39 | [awesome-go-China](https://github.com/hyper0x/awesome-go-China) | [2022-07-25](https://github.com/hyper0x/awesome-go-China/pull/51) | [2022-07-25](https://github.com/hyper0x/awesome-go-China/pull/51) | md | [1](https://github.com/hyper0x/awesome-go-China/pulls?q=is%3Apr+author%3Aeryajf) | 112 | | 40 | [promwrite](https://github.com/castai/promwrite) | [2024-04-02](https://github.com/castai/promwrite/pull/4) | [2024-04-02](https://github.com/castai/promwrite/pull/4) | Go | [1](https://github.com/castai/promwrite/pulls?q=is%3Apr+author%3Aeryajf) | 113 | | 41 | [dufs-material-assets](https://github.com/TransparentLC/dufs-material-assets) | [2025-10-24](https://github.com/TransparentLC/dufs-material-assets/pull/29) | [2025-10-24](https://github.com/TransparentLC/dufs-material-assets/pull/29) | JavaScript | [1](https://github.com/TransparentLC/dufs-material-assets/pulls?q=is%3Apr+author%3Aeryajf) | 114 | | 42 | [review-2024](https://github.com/saveweb/review-2024) | [2025-02-01](https://github.com/saveweb/review-2024/pull/43) | [2025-02-01](https://github.com/saveweb/review-2024/pull/43) | Python | [1](https://github.com/saveweb/review-2024/pulls?q=is%3Apr+author%3Aeryajf) | 115 | | 43 | [busuanzi](https://github.com/soxft/busuanzi) | [2024-12-07](https://github.com/soxft/busuanzi/pull/33) | [2024-12-07](https://github.com/soxft/busuanzi/pull/33) | Go | [1](https://github.com/soxft/busuanzi/pulls?q=is%3Apr+author%3Aeryajf) | 116 | | 44 | [chatgpt](https://github.com/solywsh/chatgpt) | [2023-02-10](https://github.com/solywsh/chatgpt/pull/2) | [2023-02-10](https://github.com/solywsh/chatgpt/pull/2) | Go | [1](https://github.com/solywsh/chatgpt/pulls?q=is%3Apr+author%3Aeryajf) | 117 | | 45 | [go-sms-sender](https://github.com/casdoor/go-sms-sender) | [2023-04-17](https://github.com/casdoor/go-sms-sender/pull/18) | [2023-04-17](https://github.com/casdoor/go-sms-sender/pull/18) | Go | [1](https://github.com/casdoor/go-sms-sender/pulls?q=is%3Apr+author%3Aeryajf) | 118 | | 46 | [yaml-readme](https://github.com/LinuxSuRen/yaml-readme) | [2022-06-07](https://github.com/LinuxSuRen/yaml-readme/pull/9) | [2022-06-07](https://github.com/LinuxSuRen/yaml-readme/pull/9) | Go | [1](https://github.com/LinuxSuRen/yaml-readme/pulls?q=is%3Apr+author%3Aeryajf) | 119 | | 47 | [dingtalk-OpenAI](https://github.com/ffinly/dingtalk-OpenAI) | [2023-06-22](https://github.com/ffinly/dingtalk-OpenAI/pull/10) | [2023-06-22](https://github.com/ffinly/dingtalk-OpenAI/pull/10) | Go | [1](https://github.com/ffinly/dingtalk-OpenAI/pulls?q=is%3Apr+author%3Aeryajf) | 120 | | 48 | [vitepress-theme-teek-docs-template](https://github.com/Kele-Bingtang/vitepress-theme-teek-docs-template) | [2025-06-05](https://github.com/Kele-Bingtang/vitepress-theme-teek-docs-template/pull/1) | [2025-06-05](https://github.com/Kele-Bingtang/vitepress-theme-teek-docs-template/pull/1) | md | [1](https://github.com/Kele-Bingtang/vitepress-theme-teek-docs-template/pulls?q=is%3Apr+author%3Aeryajf) | 121 | | 49 | [feishu-bot-api](https://github.com/electricbubble/feishu-bot-api) | [2023-04-21](https://github.com/electricbubble/feishu-bot-api/pull/1) | [2023-04-21](https://github.com/electricbubble/feishu-bot-api/pull/1) | Go | [1](https://github.com/electricbubble/feishu-bot-api/pulls?q=is%3Apr+author%3Aeryajf) | 122 | | 50 | [review-2023](https://github.com/saveweb/review-2023) | [2024-01-07](https://github.com/saveweb/review-2023/pull/18) | [2024-01-07](https://github.com/saveweb/review-2023/pull/18) | Python | [1](https://github.com/saveweb/review-2023/pulls?q=is%3Apr+author%3Aeryajf) | 123 | | 51 | [go-wecom](https://github.com/wenerme/go-wecom) | [2022-06-17](https://github.com/wenerme/go-wecom/pull/1) | [2022-06-17](https://github.com/wenerme/go-wecom/pull/1) | Go | [1](https://github.com/wenerme/go-wecom/pulls?q=is%3Apr+author%3Aeryajf) | 124 | | sum | | | | | 264 | 125 | 126 | ## The repos I stared (random 10) 127 | | ID | REPO | STAREDDATE | LANGUAGE | LATESTUPDATE | 128 | |----|-----------------------------------------------------------------------------------------------------------|------------|------------|--------------| 129 | | 1 | [Yuxi-Know](https://github.com/xerrors/Yuxi-Know) | 2025-03-09 | Python | 2025-12-15 | 130 | | 2 | [AingDesk](https://github.com/aingdesk/AingDesk) | 2025-03-02 | TypeScript | 2025-12-13 | 131 | | 3 | [SnowAdmin](https://github.com/WangFan-io/SnowAdmin) | 2025-09-17 | Vue | 2025-12-12 | 132 | | 4 | [vitepress-theme-teek-docs-template](https://github.com/Kele-Bingtang/vitepress-theme-teek-docs-template) | 2025-06-05 | md | 2025-12-05 | 133 | | 5 | [sqlite3-editor](https://github.com/yy0931/sqlite3-editor) | 2025-05-05 | TypeScript | 2025-12-14 | 134 | | 6 | [PandaWiki](https://github.com/chaitin/PandaWiki) | 2025-07-30 | TypeScript | 2025-12-15 | 135 | | 7 | [claude-code-statusline](https://github.com/rz1989s/claude-code-statusline) | 2025-09-08 | Shell | 2025-12-10 | 136 | | 8 | [snow-shot](https://github.com/mg-chao/snow-shot) | 2025-05-21 | TypeScript | 2025-12-15 | 137 | | 9 | [ragflow](https://github.com/infiniflow/ragflow) | 2025-02-17 | Python | 2025-12-15 | 138 | | 10 | [cdn-refresh](https://github.com/eryajf/cdn-refresh) | 2025-04-11 | Go | 2025-07-31 | 139 | 140 | 141 | --------------------------------------------------------------------------------