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

推荐订阅源

WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 三生石上(FineUI控件)
雷峰网
雷峰网
爱范儿
爱范儿
P
Proofpoint News Feed
Security Archives - TechRepublic
Security Archives - TechRepublic
Latest news
Latest news
The Hacker News
The Hacker News
Cyberwarzone
Cyberwarzone
博客园 - 【当耐特】
Project Zero
Project Zero
小众软件
小众软件
T
Tailwind CSS Blog
量子位
博客园 - 聂微东
I
Intezer
美团技术团队
S
SegmentFault 最新的问题
T
Tor Project blog
Spread Privacy
Spread Privacy
V
Vulnerabilities – Threatpost
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Jina AI
Jina AI
罗磊的独立博客
B
Blog RSS Feed
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
T
Troy Hunt's Blog
有赞技术团队
有赞技术团队
Google DeepMind News
Google DeepMind News
宝玉的分享
宝玉的分享
C
Cisco Blogs
L
LINUX DO - 热门话题
Last Week in AI
Last Week in AI
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
AI
AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Azure Blog
Microsoft Azure Blog
L
LINUX DO - 最新话题
Know Your Adversary
Know Your Adversary
GbyAI
GbyAI
Engineering at Meta
Engineering at Meta
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Recent Commits to openclaw:main
Recent Commits to openclaw:main
L
Lohrmann on Cybersecurity
The Register - Security
The Register - Security
L
LangChain Blog
博客园 - 叶小钗
T
Tenable Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

埃氮幂の命名空间

埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间 埃氮幂の命名空间
埃氮幂の命名空间
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个人主页