6 comments

  • lbrito23 minutes ago
    This is a great idea and something I&#x27;ve faced and had to implement manually in the past.<p>The most common scenario for me was: I implement backup, done by a daily cron calling pg_dump. It worked and I moved on, until one day I needed to restore and the backups did not work. Typically at some point the VM failed to run the commands to clear temporary backup files, the disk would fill up and the new backups would be truncated mid way.<p>psql is pretty awful at identifying this which must be a very common scenario. Instead of a header check leading to &quot;Corrupted backup, aborting&quot; or something, it simply executes the SQL commands until it reaches the very last line, which will be truncated midway and thus invalid SQL.<p>Anyway, it took some time to figure out, but later I did basically what your tool does, probably simpler: another daily cron job that downloads the file and checks if it ends with the correct pg_dump success signature. It has worked so far.
  • sebmellen1 hour ago
    &gt; <i>There are other tools in this space. Worth naming plainly instead of pretending they don&#x27;t exist.</i><p>Why do LLMs like this kind of writing? Why did you need to “plainly” name the competition as opposed to “flamboyantly” naming them?<p>This is a cool idea but the README is absurdly not-to-the-point.
    • arjie2 minutes ago
      It seems to be a self-instruction. Leak from reasoning token into output token or using output token for reasoning. Perhaps something accidental like constraining number of reasoning tokens leads to model using output tokens for reasoning or perhaps ensuring some minimum user-visible reasoning. Seems like an accidentally introduced artifact.<p>“I should not pretend other implementations don’t exist. I should name them plainly.” Unable to tell itself that it puts this in output so that it can tell itself there.<p>Same with the “not X but Y” style. It is self-steering introspection leaking into output for one reason or the other. Recent poor language use by model is probably an attempt to minimize this by being concise. But it really needs more thinking to solve problem and so it does some of it in output.
    • ahmadpiran1 hour ago
      Fair, you&#x27;re right. Thanks for the point. I used ai for a chunk of the build and writing. However, the actual work behind it wasn&#x27;t AI-generated. I spent a few weeks interviewing people in r&#x2F;devops and some compliance subs about how they actually test backup restores, and the report schema especially came out directly out of those conversations. You are also right about the REAME. I&#x27;ll tighten it up right now, and enhance it. Thank you for the feedback.
      • progbits50 minutes ago
        What bothers me personally the most is trying to hide it. Why did you remove Claude&#x27;s (or whatever you used, but looks like opus to me from the style) co-author info?<p>I&#x27;m willing to use (semi-)vibecoded projects under certain circumstances, but I like to know up front what I&#x27;m getting. The github contributors list makes that easy to see as long as people don&#x27;t try to hide it.
        • ahmadpiran23 minutes ago
          I don&#x27;t have a good defense here, it&#x27;s fair. But part of that was because of messy commit history and I wanted to have a clean commit history. Maybe it&#x27;s not a good reason as well, but it was my real intention and my desire of perfectionism :) reason is that I wanted to take the full control, when ai do the commits you normally don&#x27;t check the code and you loose the control, well I think it&#x27;s the most important thing. But Going forward, for building trust, definitely take your recommendation. The actual design, the report schema especially, came out of around 30 interviews with people who handle backup testing as part of their job. Thank you for the feedback.
  • davedx1 hour ago
    This is a great idea. Anything that makes this easier is a win for ops teams.
  • ahmadpiran1 hour ago
    [flagged]