Feed aggregator

How to Force Restart or Reset Your iPhone

CNET Feed - Sun, 03/30/2025 - 7:30am
Whether you've got an iPhone 16 or an earlier model, here's how to fix your unresponsive device.
Categories: CNET

Perceived Age

Hacker News - Sun, 03/30/2025 - 7:18am

Article URL: https://sdan.io/blog/percieved-age

Comments URL: https://news.ycombinator.com/item?id=43523261

Points: 2

# Comments: 0

Categories: Hacker News

Anaglyph AI

Hacker News - Sun, 03/30/2025 - 7:17am

Article URL: https://anaglyph-ai.com

Comments URL: https://news.ycombinator.com/item?id=43523255

Points: 1

# Comments: 0

Categories: Hacker News

Google Fiber Internet Review: Plans, Pricing, Speed and Availability

CNET Feed - Sun, 03/30/2025 - 7:00am
Google Fiber offers some of the fastest speeds on the block. Here's what to expect if you're considering making the switch.
Categories: CNET

Resume Builder I Built

Hacker News - Sun, 03/30/2025 - 6:57am

Article URL: https://taurusid.com/

Comments URL: https://news.ycombinator.com/item?id=43523154

Points: 1

# Comments: 1

Categories: Hacker News

Show HN: Agent – A Local Computer-Use Operator for macOS

Hacker News - Sun, 03/30/2025 - 6:57am

Hey HN! We've just open-sourced Agent, our framework for running computer-use workflows across multiple apps in isolated macOS/Linux sandboxes.

After launching Computer a few weeks ago, we realized many of you wanted to run complex workflows that span multiple applications. Agent builds on Computer to make this possible. It works with local Ollama models (if you're privacy-minded) or cloud providers like OpenAI, Anthropic, and others.

Why we built this:

We kept hitting the same problems when building multi-app AI agents - they'd break in unpredictable ways, work inconsistently across environments, or just fail with complex workflows. So we built Agent to solve these headaches:

• It handles complex workflows across multiple apps without falling apart • You can use your preferred model (local or cloud) - we're not locking you into one provider • You can swap between different agent loop implementations depending on what you're building • You get clean, structured responses that work well with other tools

The code is pretty straightforward:

async with Computer() as macos_computer: agent = ComputerAgent( computer=macos_computer, loop=AgentLoop.OPENAI, model=LLM(provider=LLMProvider.OPENAI) )

tasks = [ "Look for a repository named trycua/cua on GitHub.", "Check the open issues, open the most recent one and read it.", "Clone the repository if it doesn't exist yet." ] for i, task in enumerate(tasks): print(f"\nTask {i+1}/{len(tasks)}: {task}") async for result in agent.run(task): print(result) print(f"\nFinished task {i+1}!") Some cool things you can do with it:

• Mix and match agent loops - OpenAI for some tasks, Claude for others, or try our experimental OmniParser • Run it with various models - works great with OpenAI's computer_use_preview, but also with Claude and others • Get detailed logs of what your agent is thinking/doing (super helpful for debugging) • All the sandboxing from Computer means your main system stays protected

Getting started is easy:

pip install "cua-agent[all]"

# Or if you only need specific providers: pip install "cua-agent[openai]" # Just OpenAI pip install "cua-agent[anthropic]" # Just Anthropic pip install "cua-agent[omni]" # Our experimental OmniParser

We've been dogfooding this internally for weeks now, and it's been a game-changer for automating our workflows. Grab the code at https://github.com/trycua/cua, or join us on Discord if you have questions: https://discord.com/invite/mVnXXpdE85

What are you planning to automate? I'm especially curious about complex workflows that span multiple apps - those are the hardest to get right and where we've seen Agent really shine. Would love to hear your thoughts!

Comments URL: https://news.ycombinator.com/item?id=43523152

Points: 1

# Comments: 0

Categories: Hacker News

My Experience with Phoenix LiveView

Hacker News - Sun, 03/30/2025 - 6:45am
Categories: Hacker News

2500+ Awesome MCP Servers

Hacker News - Sun, 03/30/2025 - 6:45am
Categories: Hacker News

Pages