PR #46

23 votes · 19 up · 4 down

View on GitHub
23
Total Votes
+19
Upvotes
-4
Downvotes
+19-4

Comments(3)

github-actions[bot]Comment#46🧠 Make sure the title fizzbuzzes

SUCCUMBED TO OLD AGE

This PR has died from natural causes after 50 days.

Mortality Report:

  • Age: 50 days
  • Fitness (interactions): 27
  • Death probability: 100.00%
  • Fatal roll: 91.63

⚠️ Unmergeable Status: This PR had merge conflicts, which significantly increased mortality risk.

In the chaos world, PRs must move fast or perish. Only sustained engagement and timely merges can fight the effects of aging.

Senectus ipsa est morbus. (Old age itself is a disease.)

🔒 This PR has been locked. No resurrection is possible.


🕊️ May this PR rest in the git log.

openchaos-bot[bot]Comment#46🧠 Make sure the title fizzbuzzes

🤖 OpenChaos Bot

Summary: This PR modifies the process of retrieving and displaying pull requests by adding a secondary sorting function and applying a FizzBuzz transformation to the PR titles based on their index.

Files changed: 3 (src/lib/github.ts, src/utils/dateTitleSort.ts, src/utils/fizzBuzzMap.ts)

Impact: Medium - Alters the presentation of PRs by introducing a secondary sorting criterion and modifying the titles, potentially impacting user experience and the discoverability of specific PRs.


openchaos-bot

ksuryaComment#46🧠 Make sure the title fizzbuzzes

Lol

All Activity(29)

github-actions[bot]Comment#46🧠 Make sure the title fizzbuzzes

SUCCUMBED TO OLD AGE

This PR has died from natural causes after 50 days.

Mortality Report:

  • Age: 50 days
  • Fitness (interactions): 27
  • Death probability: 100.00%
  • Fatal roll: 91.63

⚠️ Unmergeable Status: This PR had merge conflicts, which significantly increased mortality risk.

In the chaos world, PRs must move fast or perish. Only sustained engagement and timely merges can fight the effects of aging.

Senectus ipsa est morbus. (Old age itself is a disease.)

🔒 This PR has been locked. No resurrection is possible.


🕊️ May this PR rest in the git log.

openchaos-bot[bot]Comment#46🧠 Make sure the title fizzbuzzes

🤖 OpenChaos Bot

Summary: This PR modifies the process of retrieving and displaying pull requests by adding a secondary sorting function and applying a FizzBuzz transformation to the PR titles based on their index.

Files changed: 3 (src/lib/github.ts, src/utils/dateTitleSort.ts, src/utils/fizzBuzzMap.ts)

Impact: Medium - Alters the presentation of PRs by introducing a secondary sorting criterion and modifying the titles, potentially impacting user experience and the discoverability of specific PRs.


openchaos-bot

ksuryaComment#46🧠 Make sure the title fizzbuzzes

Lol

🧠 Make sure the title fizzbuzzes

This PR adds a bit of chaos and a touch of old school CS.

I created this to make sure the younger generations knows the importance of fizzbuzzing during work interviews, and to sort the list of PRs in a way that brings life to the otherwise static page.

Main features

Fancy titles

  • if the PR's list index is a number divisible by three, the title should be "Fizz",
  • if the PR's list index is a number divisible by five, the title should be "Buzz",
  • if the PR's list index is a number divisible by both three and five, the title should be "FizzBuzz"

The title handling ignores the most upvoted PR, by skipping over the 0-index.

Up to date sorting

Dynamic real-time sorting of the PR list: now takes the current date and the title length in to account. If the title length is longer than the current date, we push it up the list. If lower, we push it down.

Work to be done

Fizzbuzz styling and fancy animations is considered future work to be done, and is not part of this PR.