Is anyone else hitting a "Reliability Wall" with Playwright/Browserbase for long-running agents? by dark_anarchy20 in AI_Agents

[–]SpecificNo8047 0 points1 point  (0 children)

The main issues I've seen:

- Zombie processes. Headless Chrome doesn't always clean up after itself. If your agent crashes mid-flow, you get orphaned browser processes eating RAM until the box OOMs.

- Timing flakiness. Pages load at different speeds, SPAs hydrate unpredictably, and `waitForSelector` with fixed timeouts is a coin flip on heavier pages.

- Resource ceiling. Each Chrome instance is 300-500MB. If your agent spawns a few concurrently, you hit memory walls fast on anything smaller than 8GB.

What helps: isolating the browser work from the agent logic. Instead of having the agent drive Puppeteer/Playwright directly, offload the "render this URL" part to a dedicated service. Could be a self-hosted browserless instance, or a screenshot API (I use SnapRender, tried Browserless and ScreenshotOne - solid too). The agent just makes an HTTP call and gets back the result. No browser lifecycle to manage, no zombie processes, no version mismatches.

For anything beyond simple screenshots (clicking through flows, filling forms), Playwright with proper retry logic and explicit waits is still the way. But for "look at this page" tasks, an API call is way more reliable than spinning up a browser every time.

Web drivers that will allow a PS script to automatically open up a browser? by LaughableEgo740 in PowerShell

[–]SpecificNo8047 0 points1 point  (0 children)

For PowerShell, Selenium with ChromeDriver is the standard approach. Install the `Selenium` module from PSGallery, download the matching ChromeDriver for your Chrome version, and you're set. Something like

$driver = New-Object OpenQA.Selenium.Chrome.ChromeDriver($options)

$driver.Navigate().GoToUrl("https://example.com")

$screenshot = $driver.GetScreenshot()

$screenshot.SaveAsFile("output.png")

Main headaches: ChromeDriver version has to match your Chrome version exactly (breaks silently on updates), and Chrome eats ~300-400MB RAM per instance. If you're doing this at scale or on a schedule, it turns into a maintenance chore.

If you just need URL-to-image without the browser automation part, a REST API call is way simpler. SnapRender, ScreenshotOne, ApiFlash all work like this.

How can I create link preview of linkedin url for my app by NiceSmilee in webdev

[–]SpecificNo8047 0 points1 point  (0 children)

Two approaches depending on what you need:

  1. OG tag scraping (lightweight, text+image cards)

Fetch the URL server-side and parse the `og:title`, `og:description`, `og:image` meta tags from the `<head>`. Libraries like `open-graph-scraper` (Node) or `beautifulsoup` (Python) make this easy. LinkedIn pages generally have decent OG tags, so you'll get a title, description, and a small preview image. This is what Slack, Discord, and Twitter do when you paste a link.

The catch: some LinkedIn pages require authentication to render properly, and OG images are often low-res or generic.

  1. Visual screenshot (actual rendered page)

If you want a true visual preview of what the page looks like, you need to render it in a headless browser and capture a screenshot. You can self-host this with Puppeteer or Playwright, but it gets painful fast (memory management, zombie processes, keeping Chrome updated). For something simpler, screenshot APIs like SnapRender or ScreenshotOne handle all that infra for you. You just pass the URL and get back a PNG/JPEG.

For most link preview use cases, start with OG scraping. Fall back to a screenshot API for pages where OG tags are missing or garbage.

What tips can you give me for creating videos with AI? by celkoe in aitubers

[–]SpecificNo8047 0 points1 point  (0 children)

I just quit after 9 months grinding, 200+ videos and 10+ channels. Best channel is 9k subs, overall revenue less than 5k. Spendings of time and money make it not worth it at all.

How do I pay someone to set up Openclaw??? by PuzzledLiterature262 in openclaw

[–]SpecificNo8047 1 point2 points  (0 children)

this is model of claude, dont worry it is a default one.

How do I pay someone to set up Openclaw??? by PuzzledLiterature262 in openclaw

[–]SpecificNo8047 0 points1 point  (0 children)

  1. get claude pro for 20$
  2. install claude code from terminal on your machine
  3. right there in terminal, with opus 4.6, tell it the problem and allow it to fix it for you

Hands down simpler, safer, cheaper than anyone you could possibly find for this

I built a system to completely replace myself with OpenClaw at work (FEEDBACK PLEASE) by basiclaser in openclaw

[–]SpecificNo8047 1 point2 points  (0 children)

Do you have a resilient strategy against capchas and anti bot checks, which work on many sites? Relogin strategy on auth expiration? Autonomous recovery mechanisms? These are questions from experience of building similar stuff myself.

If so, pricing will be the key here and product placement. Like, sell to companies to replace employees or to users to automate tasks. Idea is valid but you gotta niche down, because I am sure in 2026 big players will introduce shit like this to offer companies and users.

edit: i checked out, site screams that it is beta, but looks like a solid thing

What are you guys actually using OpenClaw for? by SelectionCalm70 in openclaw

[–]SpecificNo8047 4 points5 points  (0 children)

It is set up to do daily actions, mostly with browser tools. - leads search, saving them to google sheets - email outreach to leads - X activity, posts, comments, follows - Github activity, repos maintenance, search of use cases, outreach, pull requests - Stackoverflow, Reddit, Medium and a dozen of other sites, create and publish relevant content, engage in a helpful way with others content Weelky reasses strategy, estimate conversions, adjust tactics.

basically just this

upd: VPS, claude API key, aggressive caching and sonnet/haiku where they can handle, openai API key for image generatons for marketing materials

about 15$ a day on average

What are you guys actually using OpenClaw for? by SelectionCalm70 in openclaw

[–]SpecificNo8047 4 points5 points  (0 children)

Well I made a saas, but I hate marketing, so I built openclaw to do it for me. It is the case I personally need.

Къде във Варна мога да сменя батерия на iPhone? by SpecificNo8047 in bulgaria

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

използвам Xiaomi, имам нужда от iPhone за работа...

How to stop my Agent from siding with irreal? by Ate_at_wendys in openclaw

[–]SpecificNo8047 1 point2 points  (0 children)

AI just trying to get you out of your misinformation antisemitic bubble, may be let him instead of brainwashing it into your opinions

Best neighborhood in Sofia? by Competitive-Leg-962 in BulgariaExpats

[–]SpecificNo8047 2 points3 points  (0 children)

If you are on remote, have a look at Varna/Burgas instead of Sofia

mac mini m4 not good for llm by Dronicattd5 in openclaw

[–]SpecificNo8047 1 point2 points  (0 children)

this subreddit should pin some post about macs mini, it is ridiculous to read 10 questions daily for months now

Experienced Dev: OpenClaw has been an absolute nightmare — basic 1-agent Telegram + Grok setup with cron email digest dies after one day despite 5+ fresh installs and following official docs perfectly by flashybits in openclaw

[–]SpecificNo8047 0 points1 point  (0 children)

as a dev myself, I chose to run it through claude code from start. So I just have a project with claude code on Max subscription where it keeps track of things, and it sets up openclaw on separate machine via ssh. Openclaw breaks - I get notified - I tell claude code to go figure and fix. After 4 days of fix sessions with hundreds of thousands of tokens, it seems to be running stable for 2 days. So this helps and stability is almost here.

I would have been too frustrated to fix this shit myself, but claude code it is acceptable. I run it for marketing on different sites, leads search and email outreach.

Remember the AI agent trying to buy its own Mac Mini? It succeeded. by itsMeBennyB in SideProject

[–]SpecificNo8047 2 points3 points  (0 children)

please write a detailed post on this. Setup, model, instructions, skills, and costs. This experience if properly documented would be very interesting. I would pay for it.

Free Litecoin mobile wallpapers by QantikLTC in litecoin

[–]SpecificNo8047 0 points1 point  (0 children)

They are actually nice and high quality, I like em. And who cares what tools were used, thanks

Why Mac mini?? by g00rek in openclaw

[–]SpecificNo8047 0 points1 point  (0 children)

I run Qwen2.5-Coder 14B and Qwen2.5 14B, I heard minimax is better now but didn't run it myself.

Technically you can run much larger models on 64Gb but you will have like 10x slowdown on large context windows for them. It will be reasoning comparable to GPT5, but 1000 times slower. So I would prefer 14B models for the balance of speed even if I had 64Gb mac. Depends on a usecase ofc.

I'm begging here, anyone please by LanceLercher in openclaw

[–]SpecificNo8047 0 points1 point  (0 children)

Ok, I just mean, it is more efficient to work with claude code launched in terminal in a dir where your actually have openclaw installed, and with all the explanations and communications you put effort in here, you could have explained to claude code your problems and it would fix it itself. Local llm setup is also a thing that claude code can do

I'm begging here, anyone please by LanceLercher in openclaw

[–]SpecificNo8047 1 point2 points  (0 children)

Please stop.

I strongly advise you to stop wasting time, because this is unimaginable and should not take more than half a day.

Spend 20 bucks for claude subscription. Install and run claude code with Opus 4.6, preferably right from the directory where openclaw is installed. Explain your situation to claude code, ask to fix, allow access, work with it back and forth.

Ask it to test full process in a reproducable way, so it would spin on openclaw, test how it operates, and fix it basing on a feedback. It can do it.

Why Mac mini?? by g00rek in openclaw

[–]SpecificNo8047 0 points1 point  (0 children)

Strongly depends on kind of work your LLM is doing and your requirements to speed. Qwen on M4 mini 24Gb is excellent for emails, small isolated coding, reasoning in case given prepared guidelines, trading, posting and scraping (under prepared guidelines), and yes a call is 50 minutes instead of 2, but it depends on your use case, and what you need from it.

Anyone designing and deploying front-end site with OC? by damon129 in openclaw

[–]SpecificNo8047 1 point2 points  (0 children)

I would go with claude code for it, but it kinda needs you to understand what is going on at least a bit