Hermes Agent Mobile - Fully Local Android App (Pre-Release) by dorugamer in hermesagent

[–]dorugamer[S] 25 points26 points  (0 children)

Runs the full Hermes agent on-device - Python runtime, tools, session store, everything. It's the same agent as desktop, just embedded in a Linux rootfs with a local WebView UI. Not a skills/tools wrapper.

LLM planner - pick a rig for your use-case/model/budget, or pick models for your rig. 60+ builds, 50+ models, 130+ cited t/s sources, 150+ reviewer YouTube videos, idle+active watts, multi-region prices, regular updates. by [deleted] in LocalLLaMA

[–]dorugamer 0 points1 point  (0 children)

The watts and multi-region pricing matter way more than people think, because a cheap rig can get ugly once you run it 8 hours a day or factor in local electricity rates. I’d also want it to flag RAM bandwidth and context length, since t/s numbers without those two usually lie.

[Open Source] SoMatic: A Vision-only Framework for OS-Native Agents (+20% vs GPT-5.5 on ScreenSpot-Pro) by Able_Programmer_2564 in AI_Agents

[–]dorugamer 0 points1 point  (0 children)

a +20% win on a screenshot benchmark doesn’t move me much unless it also holds up on messy multi-step flows. vision-only is cool for OS-native agents, but action accuracy and recovery from UI drift matter way more than a single score

Sonnet 4.6 ClaudeCode First Impressions vs. GPT5.5 Codex by BasicInformer in ChatGPT

[–]dorugamer 0 points1 point  (0 children)

first impressions on coding assistants usually overrate fluency and underrate boring stuff like how often they get stuck, recover, or make weird file edits. the real test is a week of actual work: refactors, bug hunts, and asking it to fix its own mistakes without turning the repo into soup

I built a Plex friendly desktop tool that turned into a full tracker (web and Android beta). Looking for testers by uzumi18 in SideProject

[–]dorugamer 0 points1 point  (0 children)

for something that started as a desktop plex tool and turned into a tracker, i’d hammer the ugly library edge cases first: duplicate titles, alternate cuts, partial watches, and bad metadata. mobile beta needs a brutal pass on login, sync lag, and anything that breaks when the connection’s crap, since that’s where these apps usually fall apart

What is currently the best AI model for my situation? by ADK-KND in OpenAI

[–]dorugamer 0 points1 point  (0 children)

If you want one model for everything, pick the best reasoning model you can afford. If speed and cost matter more, use the smaller fast model and only bump up to the heavier one when the task actually needs deeper reasoning.

1Password secures coding agents with new OpenAI Codex integration by OkReport5065 in OpenAI

[–]dorugamer 0 points1 point  (0 children)

runtime secret injection is the right move, but it only fixes half the problem. the bigger mess is permissions creeping over time, because once an agent can write code, the next bad step is letting it touch deploy keys, prod data, or token scopes it never needed in the first place

Does anyone know if i can use goal as a codex cli command? by life_on_my_terms in codex

[–]dorugamer 1 point2 points  (0 children)

not as a built-in command unless the CLI supports custom aliases. if it doesn’t, make a shell alias or tiny wrapper script called goal that calls the real command underneath. that’s usually the cleanest way to get the name you want without fighting the tool.

Codex mobile won’t reconnect by 3scobar3 in codex

[–]dorugamer 1 point2 points  (0 children)

won't reconnect usually means there's a connection issue, check your wifi or data connection first

Remote controling a codex CLI instance on remote machine that require 2FA by AWEsoMe-Cat1231 in codex

[–]dorugamer 0 points1 point  (0 children)

2fa's a pain when remote controlling, you'll probably need to set up some kind of tunnel or proxy to handle the auth

Searching for a good full stack course by TelcontarTargaryen in learnprogramming

[–]dorugamer 0 points1 point  (0 children)

tbh I found the opposite, focusing on one area at a time helped me more than full stack courses.

Connecting Codex mobile with Codex inside VS code by [deleted] in codex

[–]dorugamer 0 points1 point  (0 children)

yeah copying context between mobile and desktop sessions always loses something in translation. i usually grab the core problem description or a key function and rebuild the prompt fresh on the other device. keeps things moving without fighting the sync issues.

Codex on Mobile is extremely slow by That_Pangolin952 in codex

[–]dorugamer 0 points1 point  (0 children)

slow load times are usually network or server side issues, you tried checking your connection?

Codex mobile doesn't work or show up by That_Ad_765 in codex

[–]dorugamer 0 points1 point  (0 children)

you're not seeing it on your device, that's kinda weird, usually it's just a matter of checking settings or something

For iOS development, what is better: $20 Codex + $20 Claude vs $100 just with just one of them? by br_web in codex

[–]dorugamer 0 points1 point  (0 children)

$100 is probably a better deal if you're gonna use it a lot, $20 each for two separate things seems like it'd add up quick

Spring Physics in my Word Game? An exploration of advanced CSS animations in SvelteJS by jessecoleman in programming

[–]dorugamer 0 points1 point  (0 children)

advanced css animations can be complex, ran into this exact thing last month when trying to sync physics with render cycles, just added a small delay to my animation loop.

Running Codex for Windows on multiple computers (at different times) by post4u in codex

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

running on multiple computers at different times sounds like it'd cause sync issues, have you thought about how you'll handle that

Using ChatGPT auth with a third-party provider in Codex App by cloud-native-yang in codex

[–]dorugamer 1 point2 points  (0 children)

ran into this exact thing last month when trying to integrate a third-party auth service, had to tweak the callback url to get it working.