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

推荐订阅源

B
Blog RSS Feed
Spread Privacy
Spread Privacy
T
Threatpost
C
Cisco Blogs
P
Palo Alto Networks Blog
AI
AI
Cyberwarzone
Cyberwarzone
NISL@THU
NISL@THU
P
Privacy & Cybersecurity Law Blog
G
GRAHAM CLULEY
Simon Willison's Weblog
Simon Willison's Weblog
T
Tor Project blog
Latest news
Latest news
AWS News Blog
AWS News Blog
D
Docker
S
SegmentFault 最新的问题
博客园 - 聂微东
WordPress大学
WordPress大学
Vercel News
Vercel News
S
Securelist
爱范儿
爱范儿
J
Java Code Geeks
Know Your Adversary
Know Your Adversary
S
Schneier on Security
Hugging Face - Blog
Hugging Face - Blog
F
Fortinet All Blogs
Last Week in AI
Last Week in AI
D
DataBreaches.Net
宝玉的分享
宝玉的分享
D
Darknet – Hacking Tools, Hacker News & Cyber Security
MongoDB | Blog
MongoDB | Blog
Engineering at Meta
Engineering at Meta
K
Kaspersky official blog
美团技术团队
博客园 - 叶小钗
阮一峰的网络日志
阮一峰的网络日志
量子位
博客园_首页
Attack and Defense Labs
Attack and Defense Labs
S
Secure Thoughts
Google Online Security Blog
Google Online Security Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
腾讯CDC
T
Threat Research - Cisco Blogs
雷峰网
雷峰网
有赞技术团队
有赞技术团队
www.infosecurity-magazine.com
www.infosecurity-magazine.com
P
Privacy International News Feed
S
Security Affairs

埃氮幂の命名空间

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