惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
小众软件
小众软件
爱范儿
爱范儿
Y
Y Combinator Blog
博客园 - Franky
美团技术团队
博客园 - 【当耐特】
The Cloudflare Blog
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
IT之家
IT之家
人人都是产品经理
人人都是产品经理
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
大猫的无限游戏
大猫的无限游戏
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 聂微东
WordPress大学
WordPress大学
V
Visual Studio Blog
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
有赞技术团队
有赞技术团队

埃氮幂の命名空间

埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间
埃氮幂の命名空间
2025-04-05 · via 埃氮幂の命名空间

先放一张效果图

教程

其实就是利用这个lowlighter/metrics的gh-actions来每天定时生成一张svg。 详细教程见lowlighter/metrics: 📊 An infographics generator with 30+ plugins and 300+ options to display stats about your GitHub account and render them as SVG, Markdown, PDF or JSON!

metrics.yml

以下就是我的同款workflow配置 ```yml name: Metrics on: schedule: [{cron: "0 0 *"}] workflow_dispatch: push: {branches: ["main"]} jobs: github-metrics: runs-on: ubuntu-latest environment: name: production permissions: contents: write steps:

TEXT
  - uses: lowlighter/metrics@latest
    with:
      filename: metrics.svg
      token: ${{ secrets.METRICS_TOKEN }}
      config_timezone: Asia/Shanghai
      base: header, activity, community, repositories, metadata
      
      plugin_isocalendar: yes
      plugin_isocalendar_duration: full-year
      
      plugin_lines: yes
      plugin_lines_history_limit: 1
      plugin_lines_sections: base
      plugin_lines_delay: 30
      
      plugin_languages: yes
      plugin_languages_skipped: dotfiles
      plugin_languages_details: percentage, bytes-size
      
      plugin_followup: yes
      plugin_followup_sections: user
      
      plugin_code: yes
      plugin_code_languages: javascript, typescript, python, cpp
      plugin_code_load: 400

      plugin_wakatime: yes
      plugin_wakatime_sections: time, projects, projects-graphs, languages, languages-graphs, editors, os
      plugin_wakatime_token: ${{ secrets.WAKATIME_TOKEN }}
      
      plugin_rss: yes
      plugin_rss_source: https://blog.qyadbr.top/atom.xml
      plugin_rss_limit: 10

      plugin_gists: yes

      plugin_achievements: yes

      plugin_activity: yes

```

使用Github Actions定制Github个人主页