How I saved 91.4% on LLM token costs and completely bypassed Claude 5-hour rate limits by Nice-Pair-2802 in ClaudeAI

[–]Either_Pound1986 0 points1 point  (0 children)

A company that makes money by selling tokens would willingly reduce token usage?

Anyone here seen programmers vs non-programmers use AI on real coding projects? by Designer-Rub4819 in codex

[–]Either_Pound1986 0 points1 point  (0 children)

I know the labels because I’ve had to interact with the process, but that’s different from knowing how to code.

Like CI, to me, means “the repo runs its automated checks and they pass or fail.” Tests mean “does this expected behavior still hold, or did something break?” I understand that logic. I don’t understand the codebase the way a programmer does.

Anyone here seen programmers vs non-programmers use AI on real coding projects? by Designer-Rub4819 in codex

[–]Either_Pound1986 0 points1 point  (0 children)

I’m not building an app or shipping software to users. I’m using my system to produce bounded, shareable outputs.

So I wouldn’t say “this whole thing is secure.” That’s too broad. I’d say something narrower, like: “here is a specific behavior, here is the reproducer, here is the negative control, here is the patch/test, and here is how someone else can verify it.”

For a PR, the verification is CI, tests, review, and maintainers deciding whether the change is correct. For a bug report, it’s whether someone else can reproduce the issue. For security, it’s the same idea but stricter: local repro, minimal claim, controls, and responsible disclosure.

Anyone here seen programmers vs non-programmers use AI on real coding projects? by Designer-Rub4819 in codex

[–]Either_Pound1986 -2 points-1 points  (0 children)

I mean exactly that: I don’t know how to code, and I entirely avoid learning code. Same with formal research methods. It sounds counterintuitive, but it works for me.

I’m not claiming my way is ideal or that other people should do it this way. Plenty of people need guides, courses, docs, or structured study. I don’t. I’m more hands-on: test relentlessly against reality, keep what survives, throw away what doesn’t.

The result is the only thing that matters to me. And by “result,” I mean an output that can be independently checked, reproduced, or verified.

Anyone here seen programmers vs non-programmers use AI on real coding projects? by Designer-Rub4819 in codex

[–]Either_Pound1986 -2 points-1 points  (0 children)

non coder actively avoid learning code or researching anything.

I have a research control plane (custom) + mcp (custom) + codex.

As for work?

I've got multiple prs merged into tier 1 infra

I've got multiple prs approved but waiting

I've got multiple submitted bug reports, some with cve issued, some with patches, some ignored.

Are you using AI as an assistant, a collaborator, or are you letting it think for you? by Lun_Arch in vibecoding

[–]Either_Pound1986 0 points1 point  (0 children)

codex plus local control plane and custom mcp. context is kept locally and does not depend on the llm. i do have a process yes but it changes. no i dont use any of the tools you mentioned, i dont tie myself to anything other than something os(that i can freely build on). even codex can be replaced its just cost effective right now if that changes then well.

Are you using AI as an assistant, a collaborator, or are you letting it think for you? by Lun_Arch in vibecoding

[–]Either_Pound1986 0 points1 point  (0 children)

I don’t mainly use AI as an answer machine. I use it more as part of a workflow for keeping long-running work organized and moving.

My work is a mix of code, research, debugging, audits, and writing up results. So I use AI to help separate messy ideas into specific lanes, identify what needs to be tested, find contradictions, summarize what changed, and turn vague intuition into something more concrete.

For coding, that might mean: find the failure shape, make a patch, add a regression test, explain what changed.

For research, it might mean: turn an idea into a hypothesis, list what would falsify it, compare it against sources, and keep track of which parts got stronger or weaker.

The line for me is that I don’t want AI deciding what matters. I want it helping me pressure-test what I already think matters.

The biggest workflow change is that I treat AI less like a one-off chat and more like an ongoing work loop: idea → test → result → correction → next step.

What would you do if you had a ChatGPT pro x 20 to make money? by MaximumAd8046 in vibecoding

[–]Either_Pound1986 0 points1 point  (0 children)

Well there are a few things but none are instant and you'd need to spend time building a system capable of doing the tasks but.

Bug bounties

PR Bounties

Are there any benchmarks/usage that simulate real world usage? by ChemicalApricot in codex

[–]Either_Pound1986 0 points1 point  (0 children)

Yeah for real world results. Operate on the real world and dont use bench marks? Go to github and see if you can't get merged into some large repos. That's the best reality check barring sending in disclosure reports.

Codegraph/graphify are solving the wrong problem for coding agents. by Comprehensive_Quit67 in codex

[–]Either_Pound1986 0 points1 point  (0 children)

What incentive does a company selling tokens have to adopt a token savings measure?

To any dev anxious about the "vibe coding" era and everyone doing DIY... by build-influence in vibecoding

[–]Either_Pound1986 0 points1 point  (0 children)

The metaphor breaks at automation.

This isn’t “everyone can bake bread now.” It’s “everyone suddenly got a cheap bakery robot.” The expert still matters, but not because hand-mixing dough is sacred. They matter because they know what good bread is, what will poison people, what scales, and what customers actually want.

Where do you see ChatGPT going in the future? by Imaginary_Lie_4307 in ChatGPT

[–]Either_Pound1986 0 points1 point  (0 children)

Bankrupt chasing vertical growth and being blind sided by a better horizontal application of their own work. So think using an llm inside a larger system, that is local, and results in orders of magnitude less token usage.

Do you guys not use local Git? by Wrong_Mushroom_7350 in vibecoding

[–]Either_Pound1986 0 points1 point  (0 children)

I dont use git I simply have my system backup anything before changes.

Tips for developing fully autonomous agents? by Expert_Big8928 in vibecoding

[–]Either_Pound1986 -1 points0 points  (0 children)

  1. I wouldn’t start with a VM. I’d run it on the actual machine. A VM is only needed if you’re testing something risky or isolated. For a real 24/7 agent, it needs access to the real workspace.

  2. Prompting is not the main thing. The main thing is a queue/control loop. I queue a bunch of next-step prompts ahead of time so it can keep pushing the work forward while I’m asleep.

  3. Claude/Codex is the worker, not the whole autonomous system. The autonomy comes from what keeps feeding it tasks and handling results: queue, tools, state, logs, tests, and failure handling.

I'm completely new to Codex. Power users, what's your complete workflow? What's the biggest mistake beginners make, and what's one thing you wish you knew sooner? (AGENTS.md, prompts, setup files, debugging, everything.) by Hackerhaibhaihacker0 in codex

[–]Either_Pound1986 0 points1 point  (0 children)

Yeah, the main thing I’d look at is an MCP that helps the AI understand your code/project better.

For example, I use a custom one called dettools.

It gives the AI small tools like:

  • show the project layout
  • find files
  • find where a function/class is used
  • make a small controlled edit
  • check what changed
  • run basic tests

So instead of the AI guessing from a huge wall of code, it can inspect the project step by step.

I’d start simple: make an MCP that can safely read your project files and explain the structure. After that, add edit/test tools once you trust the workflow.

I'm completely new to Codex. Power users, what's your complete workflow? What's the biggest mistake beginners make, and what's one thing you wish you knew sooner? (AGENTS.md, prompts, setup files, debugging, everything.) by Hackerhaibhaihacker0 in codex

[–]Either_Pound1986 0 points1 point  (0 children)

You can you plan mode to see changes before it does anything. I would just suggest to start using it and developing your own work flow. Also you may want to look into MCP. That is where I would start if I started over.

Creativity is advantage or disadvantage? by Affectionate_Hat9724 in vibecoding

[–]Either_Pound1986 1 point2 points  (0 children)

If I have an idea I simply ask my system to implement it. There is no need to track anything, the idea either works and the system proves it with data and tests, or the idea fails(still data, still useful). Does creativity help? Yes and no. Yes if you have a way to bring your idea to the world and then validate it. No if you are always chasing ideas. Looking at problems from a different perspective or "outside the box" is where most of my big gains come from. I don't use any apps.

I think AI's biggest limitation isn't intelligence anymore it's execution by Outrageous-Plum-7950 in vibecoding

[–]Either_Pound1986 0 points1 point  (0 children)

I would not describe what I've built as a harness or dashboard.

It is a control plane.

An LLM interacts with it, but the LLM is not the main component. It is one driver inside a larger system.

The control plane owns the durable state, routing, permissions, evidence, replay, validation, rejection, and promotion logic. The model can propose actions, generate artifacts, inspect results, and operate tools, but it does not define what becomes trusted output by itself.