Skip to content
View ARMeeru's full-sized avatar
🤖
🤖

Block or report ARMeeru

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ARMeeru/README.md

AI collapsed "when?" to "now." Quality still hangs on "why?" and "how?"

QA automation engineer. Most of my work is test automation; lately it's tooling for AI coding agents. They turn out to be the same problem: neither gives you a deterministic system to assert against.


🐛 Bug Hunt: Round 1

Python · one line below contains a real defect · +10 points for a confirmed report

 1 | def dedupe_keep_newest(events):
 2 |     """Keep only the newest event per id."""
 3 |     if not events:
 4 |         return []
 5 |     seen = {}
 6 |     for e in events:
 7 |         prev = seen.get(e["id"])
 8 |         if prev is None or e["ts"] > prev["ts"]:
 9 |             seen[e["id"]] = e
10 |     ordered = sorted(seen.values(), key=lambda x: x["ts"])
11 |     return ordered[: len(seen) - 1]

File a bug report against the line you suspect:

L1 · L2 · L3 · L4 · L5 · L6 · L7 · L8 · L9 · L10 · L11

Each link opens a pre-filled GitHub issue. The triage bot judges it, comments, and deploys the next round. Struck-out lines were already reported and closed works-as-designed.

🏆 Bug hunters

No confirmed reports yet. The board is yours to open.

Powered by GitHub Issues: every guess is a bug report and every verdict is a bot comment. Answers are encrypted in the repo, so reading the source won't help you. The maintainer plays for free and scores nothing.

Popular repositories Loading

  1. kronos kronos Public

    Kronos is a command-line tool for testing the response time of HTTP APIs. It allows you to send HTTP requests with custom headers and request body to a specified URL, and checks if the response tim…

    Go 3

  2. agentitest agentitest Public

    Originated from https://github.com/kweinmeister/agentitest

    Python 1

  3. ARMeeru ARMeeru Public

    Python

  4. API-Holmes API-Holmes Public

    A tool trying to be cool!

    Go

  5. CBT3000 CBT3000 Public

    TypeScript

  6. gofr gofr Public

    Forked from gofr-dev/gofr

    An opinionated GoLang framework for accelerated microservice development. Built in support for databases and observability.

    Go