Skip to content

Commit 6fa5052

Browse files
committed
updated configs
1 parent 384c873 commit 6fa5052

3 files changed

Lines changed: 22 additions & 15 deletions

File tree

.github/workflows/update-contributors.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ jobs:
2424
| jq -r '.[] | select(.type != "Bot") | [.login, .avatar_url, .html_url, .contributions] | @tsv' \
2525
| sort -k4,4nr)
2626
27-
# Build Hall of Fame table with small avatars and handle below
28-
TABLE=$(echo "$CONTRIBUTORS" | awk -F'\t' '{printf "| <div align=\"center\"><img src=\"%s\" width=\"50\" height=\"50\"/><br>[%s](%s)</div> | %s |\n", $2, $1, $3, $4}')
27+
# Build Hall of Fame table with round avatars and handle below, wrapped in centered div
28+
TABLE=$(echo "$CONTRIBUTORS" | awk -F'\t' '{printf "<div align=\"center\">| <div><img src=\"%s\" width=\"50\" height=\"50\" style=\"border-radius:50%%;\"/><br>[%s](%s)</div> | %s |\n</div>", $2, $1, $3, $4}')
2929
30-
# Build avatars row for README (small images)
31-
AVATARS=$(echo "$CONTRIBUTORS" | awk -F'\t' '{printf "[<img src=\"%s\" width=\"50\" height=\"50\" alt=\"%s\"/>](%s) ", $2, $1, $3}')
30+
# Build avatars row for README (round avatars, centered)
31+
AVATARS="<div align=\"center\">$(echo "$CONTRIBUTORS" | awk -F'\t' '{printf "[<img src=\"%s\" width=\"50\" height=\"50\" style=\"border-radius:50%%;\" alt=\"%s\"/>](%s) ", $2, $1, $3}'))</div>"
3232
3333
# ---- Update Hall of Fame ----
3434
awk -v table="$TABLE" '

HALL_OF_FAME.md

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
1-
# 🌟 Hall of Fame
1+
# 🌟 DSA Collection Hall of Fame
2+
3+
We are incredibly grateful to all our amazing contributors who make this repository a valuable resource for learning DSA! Your contributions of implementations, improvements, and insights help the community grow every day. Keep up the fantastic work! 🚀
4+
5+
<div align="center">
26

37
| Contributor | Contributions |
48
|-------------|---------------|
5-
| ![admirerr](https://avatars.githubusercontent.com/u/79766263?v=4) [admirerr](https://github.com/admirerr) | 74 |
6-
| ![Vivek13121](https://avatars.githubusercontent.com/u/171781925?v=4) [Vivek13121](https://github.com/Vivek13121) | 3 |
7-
| ![actions-user](https://avatars.githubusercontent.com/u/65916846?v=4) [actions-user](https://github.com/actions-user) | 3 |
8-
| ![adesh2756](https://avatars.githubusercontent.com/u/222441895?v=4) [adesh2756](https://github.com/adesh2756) | 3 |
9-
| ![Anujmishra2005](https://avatars.githubusercontent.com/u/72244992?v=4) [Anujmishra2005](https://github.com/Anujmishra2005) | 1 |
10-
| ![djashan](https://avatars.githubusercontent.com/u/41038007?v=4) [djashan](https://github.com/djashan) | 1 |
11-
| ![ramanuj-droid](https://avatars.githubusercontent.com/u/197562965?v=4) [ramanuj-droid](https://github.com/ramanuj-droid) | 1 |
12-
| ![ruturajjadhav07](https://avatars.githubusercontent.com/u/109014091?v=4) [ruturajjadhav07](https://github.com/ruturajjadhav07) | 1 |
13-
| ![sujanrupu](https://avatars.githubusercontent.com/u/103595490?v=4) [sujanrupu](https://github.com/sujanrupu) | 1 |
9+
<!-- Contributors will be automatically updated by GitHub Actions -->
10+
11+
</div>
1412

1513
---
1614

15+
| 🎯 **Total Implementations** | 22 |
1716

1817
---
1918

@@ -25,3 +24,9 @@
2524

2625
### Java
2726
- Implementations: 12
27+
28+
---
29+
30+
*Last updated: October 2025*
31+
32+
Thank you to everyone for your contributions and support in building a thriving DSA community! 🎉

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,5 +150,7 @@ If you find this project useful, consider **starring the repo** to help others d
150150
## ✨ Contributors
151151

152152
<!-- CONTRIBUTORS START -->
153-
[<img src="https://avatars.githubusercontent.com/u/79766263?v=4" width="50" height="50" alt="admirerr"/>](https://github.com/admirerr) [<img src="https://avatars.githubusercontent.com/u/171781925?v=4" width="50" height="50" alt="Vivek13121"/>](https://github.com/Vivek13121) [<img src="https://avatars.githubusercontent.com/u/65916846?v=4" width="50" height="50" alt="actions-user"/>](https://github.com/actions-user) [<img src="https://avatars.githubusercontent.com/u/222441895?v=4" width="50" height="50" alt="adesh2756"/>](https://github.com/adesh2756) [<img src="https://avatars.githubusercontent.com/u/72244992?v=4" width="50" height="50" alt="Anujmishra2005"/>](https://github.com/Anujmishra2005) [<img src="https://avatars.githubusercontent.com/u/41038007?v=4" width="50" height="50" alt="djashan"/>](https://github.com/djashan) [<img src="https://avatars.githubusercontent.com/u/197562965?v=4" width="50" height="50" alt="ramanuj-droid"/>](https://github.com/ramanuj-droid) [<img src="https://avatars.githubusercontent.com/u/109014091?v=4" width="50" height="50" alt="ruturajjadhav07"/>](https://github.com/ruturajjadhav07) [<img src="https://avatars.githubusercontent.com/u/103595490?v=4" width="50" height="50" alt="sujanrupu"/>](https://github.com/sujanrupu)
153+
<div align="center">
154+
<!-- This section will be automatically updated by GitHub Actions -->
155+
</div>
154156
<!-- CONTRIBUTORS END -->

0 commit comments

Comments
 (0)