8 comments

  • lihaoyi 3 hours ago
    I've had a pretty good experience offering bounties on my own projects:

    - https://github.com/orgs/com-lihaoyi/discussions/6

    If you look at that thread, you'll see I've paid out quite a lot in bounties, somewhere around 50-60kUSD (the amount is not quite precise, because some bounties I completed myself without paying, and others I paid extra when the work turned out to be more than expected). In exchange, I did manage to get quite a lot of work done for that cost

    You do get some trash, it does take significant work to review, and not everything is amenable to bounties. But for projects that already have interested users and potential collaborators, sometimes 500-1000USD in cash is enough motivation for someone to go from curious to engaged. And if I can pay someone 500-1000USD to save me a week of work (and associated context switching) it can definitely be worth the cost.

    The bounties are certainly not a living wage for people, especially compared to my peers making 1mUSD/yr at some big tech FAANG. It's just a token of appreciation that somehow feels qualitatively different from the money that comes in your twice-monthly paycheck

  • jumploops 4 hours ago
    Everyone is looking down on LLM-assisted dev here, but I think it's a great fit.

    I also don't believe it can be one-shotted (there's too many deltas between Notion's API and Obsidian).

    With that said, LLMs are great for enumerating edge-cases, and this feels like the perfect task for Codex/Claude Code.

    I'd implore the obsidian team/maintainers to take a stab at building this with LLMs. Based on personal experience, the cost is likely within the same magnitude ($100-$1k in API cost + dev time), but the additional context (tests, docs, etc.) will be invaluable to future changes to either API surface.

    • slightwinder 56 minutes ago
      > Everyone is looking down on LLM-assisted dev here, but I think it's a great fit.

      From my own experience, I don't think that's the case. I've wrote a similar sync-script obsidian<->notion-databases myself some months ago, and I also used AI in the beginning; but I learned really fast what an annoying mess Notions API is, and how fast LLMs are hanging up on edge-cases. AI is good to get a start into the API, but at the end you still have to fix it up yourself.

    • stared 3 hours ago
      LLMs are wonderful for migration. Also, are good at exploring APIs.

      A month ago I migrated company's website and blog from Framer to Astro (https://quesma.com/blog/ is you would like to see the end result).

      This weekend I created a summary of Grafana dashboard data. LLMs are tireless at checking hypothesis, running grunt code, seeing results, and iterating on that.

      What takes more than a single is to check if the result is correct (nothing missed, nothing confabulated, no default fallbacks) and to maintain code quality (I refactor early and often, here is a place in Claude Code that there is no other way than using Opus 4.1). Most of my time spend talking with Claude Code ais in refactoring - and it requires most knowledge of tooling, abstraction, etc.

    • danielscrubs 1 hour ago
      I don’t get the llm shilling. If you think you can earn 50k with some prompts, then earn it. Why _instead_ shill for llms? Feels like stock traders having courses for how YOU could earn big bucks. They themselves have photos taken with one day rented Ferraris…

      We all lean on LLMs in one way or another, but HN is becoming infested with wishful prompt engineers. Show, dont tell. Compete on the market instead of yet another PoC.

      • NewsaHackO 17 minutes ago
        >Feels like stock traders having courses for how YOU could earn big bucks. They themselves have photos taken with one day rented Ferraris…

        Do you think the person you are replying to is Sam Altman?

    • Banditoz 4 hours ago
      • sarreph 3 hours ago
        Can't help but think if the author of that PR had been less defeatist and snarky they would have had a chance at decent discussion about it being a viable option (with AI).
        • jychang 3 hours ago
          It's 1100 lines of code in a single file that nobody understands. That's instant spaghetti right there, not a valid PR.

          At least have it be split into some files and structured in some way.

          • artursapek 1 hour ago
            how is a single 1100 line file that handles Notion’s API format “spaghetti”?

            spaghetti code is code that snakes through the code base in a hard-to-follow way

    • ath3nd 3 hours ago
      [dead]
  • thombles 5 hours ago
    In addition to what's already in the thread, I assume by now somebody has vibecoded an agent to scan GitHub for bounties and then automatically vibe up a corresponding solution. Will be a fun source of spam for anyone who wants to do the right thing and pay people for good work.
    • BoorishBears 4 hours ago
      I recently got my first AI generated PR for a project I maintain and it was honestly a little stressful.

      My first clue was that PR description was absurdly detailed and well structured... yet the actual changes were really scattershot. A human with the experience and attention to detail to produce that detailed description would likely also have broken it down into seperate PRs.

      And the code seemed alright until I noticed a small one-line change: a UI component had been replaced with a comment that stated "Insantiating component now requires X"

      Except the new insantiation wasn't anywhere. Their coding agent had commented out insantiating the component instead of figuring out dependency injection.

      That component was the container for all of the app's settings.

      -

      It's interesting because the PR wasn't entirely useless: individual parts of it were good enough that even if I took over the PR I'd be fine keeping them.

      But whatever coded it couldn't understand architecture well enough. I suspect whoever was piloting it probably tested the core functionality and assumed their small UI changes wouldn't break anything.

      I hope we normalize just admitting when most of a piece of code is AI generated. I'm not a luddite about these tools, but it also changes how I'll approach a piece of code.

      Things that are easy for humans get very hard for AI, and vice versa.

      • jillesvangurp 1 hour ago
        > I hope we normalize just admitting when most of a piece of code is AI generated.

        People using AI tools in their work is becoming normal. In the end, it doesn't matter how the code is created if the code works and is otherwise high quality. The person contributing is responsible for checking the quality of their contributions. Generally, a pull request that changes half the system for no good reason without good motivation is clearly not acceptable in most OSS systems. Likewise, a pull request that ignores existing design and conventions is also not acceptable. If you do such a pull request manually, it will probably also get rejected and get told off by repository maintainers.

        The beauty of the pull request system is that it puts the responsibility on the PR creator to make sure their pull request is good enough. Creating huge pull requests is generally not appreciated and creates a lot of review overhead. It's also good practice to work via the issue tracker and discuss your plans before you start the work. Especially with bigger changes. The problem here is not necessary AI but but people using AI to create low quality pull requests and people not communicating properly.

        I've not yet received any obvious AI generated pull requests on any of my projects. But I've used codex on my own projects for a few pull requests. I'd probably disclose that fact if I was going to contribute something to somebody else's code base and would also take the time to properly clean up the pull request and make sure it delivers as promised.

      • artursapek 1 hour ago
        I can’t stand people who open a pull request and ask for review without first reviewing their own diff. They should have caught that themselves.
      • zwnow 4 hours ago
        Not only admitting, it should be law to mark anything AI generated as AI generated. Even if AI contributed just a tiny bit. I dont want to use AI slop, and I should be allowed to make informed decisions based on that preference.
        • scrollaway 3 hours ago
          Did you by any chance type this comment on a device that has autocorrect enabled?
          • jangxx 3 hours ago
            Autocorrect is not generative AI in the way that anyone is using that word. Also autocorrect doesn't even need to use any sort of ML model.
            • scrollaway 3 hours ago
              Ah yes the duality of anti-AI crowds on HN. “GenAI is just fancy autocorrect”, and “autocorrect isn’t actually GenAI”.

              The thing is, if you’re talking about making laws (as GP is), your “surely people understand this difference” strategy doesn’t matter squat and the impact will be larger than you think.

              • jangxx 2 hours ago
                You don't seem to understand what people mean when they say "AI is just fancy autocorrect". People talk about the little word suggestions over the keyboard, not about correcting spelling. And yes, of course those suggestions are going to be provided by some sort of ML model, and yes if you actually write a whole article just using them, it should be marked as AI generated, but literally no one is doing that. Maybe because it's not fancy enough autocorrect. Either way, this is not the gotcha you think.
                • NewsaHackO 12 minutes ago
                  But the original poster said:

                  >Even if AI contributed just a tiny bit.

                  Which would imply autocorrect should be reported as AI use.

          • zwnow 3 hours ago
            [flagged]
  • hazzamanic 5 hours ago
    Having once used the Notion API to build an OPEN API doc generator, I pity whoever takes this on. The API was painful to integrate with, full of limitations and nowhere near feature parity with the Notion UI itself
  • wraptile 1 hour ago
    As someone who wrote a fair share of notion API code - the 5,000$ bounty is not enough and I'm only half-joking here.

    That being said, yay open source bounties! People should do more of those.

  • eamag 1 hour ago
    There are also open bounties by comma.ai, is it becoming more common? https://github.com/orgs/commaai/projects/26/views/1
  • nivertech 2 hours ago
    What’s the easiest way to convert all dataviews in an existing Obsidian vault to Bases?
  • zwnow 5 hours ago
    > Please only apply if you have taken time to explore the Importer codebase, as well as the Notion API.

    Suddenly 5k$ does not sound as good

    • cybrox 5 hours ago
      Why? It doesn't say you need to have extensive experience with them. I would assume this is mostly to dissuade applicants that are not aware of the potential challenges ahead.
      • zwnow 4 hours ago
        This "exploring" can take tremendous amounts of time, depending on the complexity of these APIs. My time is worth a lot to myself. I am not going to spend many hours for a chance of winning 5k$. If this takes a week off of my free time its not worth 5k to me.
        • theshrike79 1 hour ago
          If you get paid more than $5k a week, this isn't for you clearly.
    • Kichererbsen 3 hours ago
      Unless you've already done projects in both. Then, it might seem trivial? Idk. I haven't looked at either. But if there is such a person out there, with the spare time to look into it, they might be ideally suited!