Skip to content

Update badges and add project growth diagram#22

Merged
hooyuser merged 1 commit intomasterfrom
hooyuser-patch-6
Nov 29, 2025
Merged

Update badges and add project growth diagram#22
hooyuser merged 1 commit intomasterfrom
hooyuser-patch-6

Conversation

@hooyuser
Copy link
Copy Markdown
Owner

No description provided.

@gemini-code-assist
Copy link
Copy Markdown

Summary of Changes

Hello @hooyuser, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request focuses on improving the visual presentation of the project's README. It updates existing badges to use a more integrated and consistent source, and introduces a new graphical element to showcase the project's development progress through a lines-of-code growth diagram. These changes aim to provide clearer and more dynamic insights into the project's status and evolution.

Highlights

  • Badge Updates: The 'Lines of Code' badge has been updated to use a custom endpoint from the github-badges repository, and the 'GitHub repo size' badge URL was slightly adjusted for consistency.
  • Project Growth Diagram: A new section titled 'Project Growth' has been added to the README, featuring an SVG diagram that visually tracks the lines of code over time for the project.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@hooyuser hooyuser merged commit 6c59f22 into master Nov 29, 2025
1 check passed
Copy link
Copy Markdown

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the badges in the README and adds a new project growth diagram. The changes are good, but I've suggested an improvement to the HTML used for the new diagram to align with modern web standards, addressing the use of the obsolete align attribute and the non-standard width attribute on the image.

Comment thread README.md
Comment on lines +15 to +19
<div align="center">
<h3>Project Growth</h3>
<img src="https://raw.githubusercontent.com/hooyuser/github-badges/main/diagrams/hooyuser-Solution-to-Algebra-Chapter-0.svg" width="600px" />
<p><i>Tracking Lines of Code over time</i></p>
</div>
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The HTML for the project growth section can be improved to better align with modern web standards:

  1. The align attribute on <div> elements is obsolete in HTML5. It's better to use CSS for styling, for example: style="text-align: center;".
  2. The width attribute for an <img> tag should be a unitless value representing pixels. Including 'px' is not standard HTML. It should be width="600".

Here is a suggested update incorporating these changes.

Suggested change
<div align="center">
<h3>Project Growth</h3>
<img src="https://raw.githubusercontent.com/hooyuser/github-badges/main/diagrams/hooyuser-Solution-to-Algebra-Chapter-0.svg" width="600px" />
<p><i>Tracking Lines of Code over time</i></p>
</div>
<div style="text-align: center;">
<h3>Project Growth</h3>
<img src="https://raw.githubusercontent.com/hooyuser/github-badges/main/diagrams/hooyuser-Solution-to-Algebra-Chapter-0.svg" width="600" />
<p><i>Tracking Lines of Code over time</i></p>
</div>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant