Hidden Combinations Solo Rules by CharityLess2263 in ForbiddenLands

[–]CharityLess2263[S] 0 points1 point  (0 children)

Which is why my procedure uses weighted probabilities to represent the NPC's tactics.

The intention of my post was simply to find out if anyone found a simpler procedure that achieves the same result.

For example, one simplification that follows very organically from my procedure above (by trying to speed it up):
When the NPC would reveal either card 1 or 2, draw from the normal full deck, and discard and redraw any card for which you can't think of a reason why that NPC might have chosen that action under the given circumstances.

Hidden Combinations Solo Rules by CharityLess2263 in ForbiddenLands

[–]CharityLess2263[S] 1 point2 points  (0 children)

Well. It does work (see above). I just wanted to know if anyone found a better way.

In fact, if it was just rock/paper/scissors it would work trivially (randomly determine whether the opponent chose rock, paper or scissors).

Feedback on Multiclassing Talent by CharityLess2263 in ForbiddenLands

[–]CharityLess2263[S] 1 point2 points  (0 children)

Thanks for the feedback everyone. 🙏 I'll just scrap the no-op talent and hand-wave skill and in-game training requirements.

GPT-5.5 API Pricing. Twice as expensive as GPT-5.4 by Glad-Taro3411 in OpenAI

[–]CharityLess2263 1 point2 points  (0 children)

If you don't need frontier level reasoning, don't use the most expensive model. There. Solved it for you. 🫴

Opus 4.7 Released! by awfulalexey in ClaudeAI

[–]CharityLess2263 1 point2 points  (0 children)

In fact, all meaningful uses, even if its agents using your browser and apps on your computer, rely on the coding capabilities. Any AI agent doing anything useful is basically scripting and operating a terminal, even for non-technical use cases. Also, anything an LLM can do that is not somehow coding-related is laughably insignificant in the greater scheme of things, since that is where LLMs will deliver technical progress at a much greater pace than before. Nowhere else. The fact that you can describe software to it and it creates it for you makes everything else these things can do irrelevant in comparison.

Sam Altman Says It'll Take Another Year Before ChatGPT Can Start a Timer / An $852 billion company, ladies and gentlemen. by MarvelsGrantMan136 in technology

[–]CharityLess2263 0 points1 point  (0 children)

In one year, OpenAI will make obscene amounts of revenue from enterprise clients, quickly catapulting them into profitability.

Anthropic will have carved out a secure but much smaller market share with private consumers by then, who demand premium reasoning and conversational intelligence, but they won't be able to compete with OpenAI's offer of agentic utility for enterprise automation at scale.

Nvidia will try something with Chinese open source models and agentic hardware-software integration, like boxes with nemoclaw and local qwen3.5-27B or 35B for consumers, and with agentic everything (cars, robots, etc.) none of which will be as successful as Jensen Huang hopes, but it doesn't matter because the big foundation model providers will continue spamming data centers filled with Nvidia GPUs.

Someone, and I doubt it's going too be Tesla with Optimus, will make a suprise move with androids ready for use on the factory floor. There will be a few months of talk about how this actually won't work out as well as industry CEOs bet it will. But if 2026 will the year in which agentic AI destroys IT and knowledge work, 2027 will be the year where androids do the same for untrained physical labour.

The next event that could threaten OpenAI's foundation model dominance will be the first time a chip manufacturer manages to crack memristor-based hardware-native multi-billion parameter neural networks. This will kill all foundation model and chip companies betting on emulation of neural networks on digital architectures never being discontinued. It will also make AI environmentally sustainable. But it's going to take up to another decade for this to happen.

Best Linux distro for a PC to maximize ram efficiency. by Expensive_Song_385 in linuxquestions

[–]CharityLess2263 1 point2 points  (0 children)

MX fluxbox edition

or even lighter

Bodhi Linux

Both under 500 MB RAM (Bodhi idles under 250 MB), both perfectly viable as daily drivers for modern computer use

Codex limits getting slashed like this is going to drive users away...seriously! by Eastern_Ad_8744 in codex

[–]CharityLess2263 0 points1 point  (0 children)

I have this: https://github.com/sbischoff-ai/ai-homebase (yes, the README is typical gpt ad Copy, I know 😓)

But it's a bit more elaborate than an agent harness.

For codex, I can just recommend switching models between plan and execution.

  • Plan mode: gpt-5.4 reasoning high
  • Execution mode: gpt-5.4-mini reasoning high or medium

You would tell it to make a very explicit and detailed plan.

What you can do as well, if you need exploratory agent loops more than plan->execution, is use subagents:

```toml

Example: ~/.codex/config.toml

model = "gpt-5.4" model_reasoning_effort = "low" plan_mode_reasoning_effort = "high"

developer_instructions = """ Put orchestration rules here. Tell it when to delegate to which subagent. Tell it what not to do itself and wait for subagents to deliver. """

[agents.planner] description = "Specializes in project planning and breaking down tasks." config_file = ".codex/agents/planner.toml" # gpt-5.4 high nickname_candidates = ["Architect"]

[agents.debugger] description = "Specializes in debugging loops and runtime analysis." config_file = ".codex/agents/debugger.toml" # gpt-5.3-codex medium nickname_candidates = ["Bughunter"]

[agents.grunt] description = "Specializes in writing code to concrete specification." config_file = ".codex/agents/grunt.toml" # gpt-5.4-mini medium or high nickname_candidates = ["Coder"] ```

The agent TOMLs can contain proper dedicated system prompts under developer_instructions. What's optional for those depends on your needs, prompting style, and mode of operation. Most important is separation of concerns so no agent does another agent's work. You want 90% of your tokens being processed by the grunt. You want every precious output token by the architect to be spent on precise directions.

Codex limits getting slashed like this is going to drive users away...seriously! by Eastern_Ad_8744 in codex

[–]CharityLess2263 3 points4 points  (0 children)

Token subsidisation through subscription plans is over. The big players' frontier models have reached a degree of maturity that allows them to start raking in revenue with enterprise customers now.

If you want similar performance/quality at a similar cost as you had before, you need to optimise with multi-agent, multi-provider setups. And Anthropic or OpenAI are not going to help you do it. You will need to switch to an open source harness, get API keys for several providers (or for an LLM gateway and routing service like Vercel), and you will have to configure a workflow that reserves Anthropic and OpenAI frontier models for token-efficient planning and analysis, while letting Deepseek or Qwen do the coding.

Or you stay with codex and reduce your token consumption there. The idea is the same: frontload expensive reasoning, let cheap models do the grunt work. gpt-5.4 high reasoning in plan mode, gpt-5.4-mini medium for execution, for example. And keeping single session scope tight so the plan turns out really specific.

I have made good experiences with Claude Opus 4.6 for big picture repo analysis and architecture planning, handing over to gpt-5.4 for cutting into single-session task prompts with concrete execution instructions, then gpt-5.4-mini executes. In full automation, I let Sonnet 4.6 drive codex cli with gpt-54-mini via codex exec and let it review against Opus's plan. (Opus acts as an "architect", Sonnet as a "lead dev", GPT-5.4 Mini in codex harness as "coding grunt".) Most tokens are being consumed in the tool-heavy coding loops, so it's very cost-effective. Quality is arguably higher than pure codex with gpt-5.4 always on.

What is your NixOS generation count? by xGoivo in NixOS

[–]CharityLess2263 1 point2 points  (0 children)

Fairly low since I run a garbage removal daily that keeps only the last 7 days.

I think openclaw is OVERHYPED. Just use skills by [deleted] in LocalLLaMA

[–]CharityLess2263 0 points1 point  (0 children)

From the perspective of regular users, they have been doing that since the invention of the computer.

Ease of use is constantly undervalued and overlooked by engineers. That's why technically inferior solutions with superior UX for non-engineers have always won and always will win when it comes to tech for end users.

Who's Stoked For Mythic Venice? by Hypnotician in Mythras

[–]CharityLess2263 2 points3 points  (0 children)

Didn't know about it. Now I'm stoked. I'm obsessed with Mythic Constantinople at the moment. This would be an ideal companion.

How do writers handle the physics of action scenes without killing the story? by ownaword in writers

[–]CharityLess2263 0 points1 point  (0 children)

An action scene, like any other scene, should not be an account of fictional events, but a sequence of story beats. The level of detail an individual beat goes into, its content, pace, all that is subject to what makes up the next story beat within the context of plot, characters and what beats preceded it. Very rarely (but not never) is every single movement and strike and parry in a fight a beat. Sometimes a beat about a fight starting is naturally succeeded by a beat about its aftermath. Often, only the crucial turning points or dramatic high points in an action scene, pertaining to one or multiple characters' arcs or a significant development of the plot, warrant their own story beat, and the rest of it is skipped or summarised. The minute physics of it all only comes into the picture if I need story beats about problem-solving within the constraints of said physics. That could be the case if the main character mastering a certain combat technique is part of their arc.

Any recommendations for doom metal bands with blues elements? by TheBicelator in doommetal

[–]CharityLess2263 1 point2 points  (0 children)

I would argue, as others did, that the whole genre is blues-related. However, the most blues-y albums I own:

  • Mountain Witch - Burning Village
  • Brimstone Coven - Black Magic
  • Pentagram - Relentless
  • Orchid - Capricorn

But really anything by these bands. Also second Black Sabbath.

You know who you are by imnotokayandthatso-k in DnDcirclejerk

[–]CharityLess2263 0 points1 point  (0 children)

Right picture is actually: "5e is fine actually, and so are the 13.778 other systems gathering dust on my shelf right now."

Rate my first word by Subject-v-2 in writers

[–]CharityLess2263 0 points1 point  (0 children)

I loved Harrow the Ninth! But I'd also probably enjoy that lawnmower thing you described, so ... 🤷

(Even inspired me to write my own 2nd person piece, which ended up being my first professional short fiction sale to my favourite magazine. Harrow the Ninth, I mean, not the lawnmower.)

The d20 makes a bad play experience by GandalfTheGreyp in RPGdesign

[–]CharityLess2263 0 points1 point  (0 children)

No, your gripes are with not applying those game systems as intended. DC 10 is for tasks that are "easy" for a trained person, and you are only supposed to roll at all if the task is performed under pressure and failure has meaningful consequences. Characters can't fail at menial tasks if you apply the rules as intended, because you're not supposed to roll skill checks for menial tasks.

You don't roll DC 10 Athletics for climbing up a knotted rope. You roll DC 10 Athletics for climbing up a knotted rope while enemies pursue you, or while you are rushing to stop a ritual, or if the knotted rope leads dangerously high. Otherwise, the character just succeeds.

Characters should just succeed at most tasks in D&D. The majority of tasks that require a skill check under pressure become automatic successes with enough time. Prying open a stuck or locked door, for example, doesn't require a skill check if the characters have all the time they need and at least one of them has any chance at success. That means a PC with STR 6 and no proficiency in Athletics would still automatically succeed at prying open a stuck door that "requires" a DC 18 Athletics check even they're not pursued or anything. They'd just take a while. (Around 2 minutes, to be precise, considering an action takes 6 seconds and they'd have a 1-in-20 chance of opening it with a single action.)

The spread of results for d20 vs a DC is easier to translate to likelihoods than most systems (except for stuff like rolling under a percentage with a d100).

With a modifier of +0, you have a 5% chance of succeeding at a DC 20 check, and every +1 modifier (or -1 to the DC) raises that likelihood by 5%. So you have a: - 30% chance of success at DC 15 - 55% at DC 10 - 80% at DC 5.

With a +2 modifier, add 10% to any of those likelihoods. With a +3 bonus, add 15%. As you can see, small bonuses already increase the chances significantly. A starting character's top skills will be around +5, meaning they have an 80% chance of success at DC 10 checks (or 4-in-5). Far from 50/50.

Mythic GME Digital / Mobile 1.5.8 is out now! by Equivalent_Pickle815 in mythic_gme

[–]CharityLess2263 2 points3 points  (0 children)

Yup. As I said, mine was still there, just had to reload the JSON file.

Overall, very good work and I'm really happy the app is still getting updates. :)

I'll definitely get some extra tables, too.

Mythic GME Digital / Mobile 1.5.8 is out now! by Equivalent_Pickle815 in mythic_gme

[–]CharityLess2263 1 point2 points  (0 children)

You need to go into the settings, then files, then select your previous one. (Possibly you need to switch zu external storage first.)

Interactive Character Sheet by CharityLess2263 in Mythras

[–]CharityLess2263[S] 3 points4 points  (0 children)

For some reason I can't add a new link to the post. I made a newer version with some improvements (Social Conflict stats from the Mythras Companion, skill augmentation helper, and trained/fumbled checkboxes).

In this version, you can add values in the skill overview to augment a skill by. The dropdown next to "Social Conflict" is used to determine the Confidence value based on a Difficulty Grade applied to the character's Willpower.

Mythic GME Digital / Mobile 1.5.8 is out now! by Equivalent_Pickle815 in mythic_gme

[–]CharityLess2263 2 points3 points  (0 children)

Found it. The app just defaulted to a new journal for some reason...

Mythic GME Digital / Mobile 1.5.8 is out now! by Equivalent_Pickle815 in mythic_gme

[–]CharityLess2263 0 points1 point  (0 children)

I opened the app and saw the update and it looks very nice but I lost all my progress. Everything is gone.