frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Reddit's database has two tables (2012)

https://kevin.burke.dev/kevin/reddits-database-has-two-tables/
1•tosh•38s ago•0 comments

Dario: In 12 months, nearly all code may be generated by AI

https://twitter.com/slow_developer/status/1899430284350616025
1•nipponese•47s ago•1 comments

Do current trends in drone technology favor offense or defense?

https://marginalrevolution.com/marginalrevolution/2024/03/do-current-trends-in-drone-technology-f...
1•paulpauper•1m ago•0 comments

#238 – Sam Winter-Levy and Nikita Lalwani on how AI won't end nuclear deterrence

https://80000hours.org/podcast/episodes/sam-winter-levy-nikita-lalwani-ai-nuclear-deterrence/
1•paulpauper•1m ago•0 comments

MongoDB outage – AWS UAE and Bahrain datacenters

https://status.mongodb.com/incidents/7g5qmxgkc2y4
2•peterjliu•2m ago•0 comments

Show HN: Scan your dev machine for AI agents, MCP servers, and IDE extensions

https://github.com/step-security/dev-machine-guard
2•varunsharma07•2m ago•0 comments

Show HN: Mozzie – a local desktop orchestrator for AI coding agents

https://github.com/usemozzie/mozzie
1•zacharykapank•3m ago•0 comments

API Design Principles for the Agentic Era

https://www.apideck.com/blog/api-design-principles-agentic-era
1•mooreds•4m ago•0 comments

Lloyds, Bank of Scot and Halifax apps showed customers other users' transactions

https://www.bbc.co.uk/news/articles/c4g23npxpwgo
1•ColinWright•4m ago•0 comments

IonRouter (YC W26) – High throughput, low cost inference

https://ionrouter.io
2•vshah1016•6m ago•1 comments

AI Cluster Runtime: Reproducible Configs for GPU-Accelerated Kubernetes Clusters

https://developer.nvidia.com/blog/validate-kubernetes-for-gpu-infrastructure-with-layered-reprodu...
1•mchmarny•6m ago•1 comments

NM framework on Karpathy's autoresearch factory

https://nervousmachine.substack.com/p/3000-agents-are-running-experiments
1•hb_124•6m ago•0 comments

Oops, You Wrote a Database

https://dx.tips/oops-database
2•tosh•9m ago•0 comments

Engram – A distributed memory system for AI agents, with extensible architecture

https://vincents-ai.github.io/engram/
2•section_me•10m ago•1 comments

Show HN: Mingle – find and connect with people, like LinkedIn but in your chat

https://github.com/aeoess/mingle-mcp
1•Tima_fey•11m ago•0 comments

Current and former Block workers say AI can't do their jobs

https://www.theguardian.com/technology/2026/mar/08/block-ai-layoffs-jack-dorsey
4•devonnull•12m ago•0 comments

PHP-rnet – a PHP extension that mimics real browser TLS fingerprints

1•takielias•15m ago•1 comments

A small CLI for stopping Git worktrees from fighting over ports

https://github.com/johndockery/portlock
1•ilovejazz442•15m ago•0 comments

Svelte Best Practices

https://svelte.dev/docs/svelte/best-practices
1•Erenay09•15m ago•0 comments

Lowdown can translate Markdown to an mdoc manpage

https://kristaps.bsd.lv/lowdown/mdoc.html
1•fanf2•16m ago•0 comments

FSC Age Verification Bill Tracker

https://action.freespeechcoalition.com/age-verification-bills/
1•muyuu•18m ago•0 comments

Disney+ Teases Creator-Driven Content as It Launches Vertical Video Feature

https://www.hollywoodreporter.com/business/digital/disney-creator-content-launches-vertical-video...
1•andsoitis•20m ago•1 comments

The FermAI Paradox: Agents Need Their IDE Moment

https://docs.ctx.rs/blog/the-fermai-paradox
3•ripped_britches•21m ago•1 comments

New F1 regulations take bravery out of the sport, drivers say

https://www.reuters.com/sports/formula1/new-f1-regulations-take-bravery-out-sport-drivers-say-202...
2•samizdis•24m ago•0 comments

Local Agents with Llama.cpp and Pi

https://huggingface.co/docs/hub/agents-local
2•kristianpaul•24m ago•0 comments

Show HN: Aurion OS – A 32-bit GUI operating system written from scratch in C

https://github.com/Luka12-dev/AurionOS
14•Luka12-dev•25m ago•1 comments

Ask HN: Rethinking SaaS architecture for AI-native systems

2•RobertSerber•25m ago•1 comments

Weak Cyberdefenses Threaten U.S. Tech Dominance

https://www.foreignaffairs.com/united-states/americas-endangered-ai
5•fheiding•25m ago•0 comments

Anthropic invests $100M into the Claude Partner Network

https://www.anthropic.com/news/claude-partner-network
4•surprisetalk•26m ago•0 comments

gstack – Garry Tan's Claude Code Setup

https://github.com/garrytan/gstack
3•jumploops•27m ago•0 comments
Open in hackernews

Show HN: SDK for AI Coding with Long Running Tasks

https://cloudcoding.ai/
2•sean_•10mo ago
It seems that using Cursor has become really repetitive. My workflow typically goes like this: - Get a task to accomplish on a codebase - Research the web and codebase to create a plan - Send the entire plan to cursor and sit back for it to finish

This flow works really well with a high level of accuracy for the most part and it's becoming obvious that the margin between where it is today and "perfect" is quickly closing.

Because of this flow, I feel that I can replicate it through an SDK that uses a AI cli coder tool with low level control.

In this SDK, you can also use the best coder in the world per: https://aider.chat/docs/leaderboards/

As shown here:

```python from cloudcode import Local import os

def main(): # Use the current directory cwd = os.getcwd() example_file = "example.py"

    # Initialize the Aider SDK in architect mode
    agent = Local(
        working_dir=cwd,
        model="o3",  # Main (planner) model
        editor_model="gpt-4.1",  # Editor model for implementing changes
        architect_mode=True,
        use_git=False,
        api_key=os.getenv("CLOUDCODE_API_KEY")
    )

    # Create or overwrite a simple Python file to modify using the SDK
    agent.create_file(
        example_file,
        """def add(a, b):
    return a + b
""" )

    # Run a coding task using the two-model workflow
    result = agent.code(
        prompt="make this function super cool. just make the math functions better",
        editable_files=[example_file]
    )

    # Print the results
    print("\nTask completed!")
    print(f"Success: {result['success']}")
    print("\nChanges made:")
    print(result["diff"])


    # Display cost information
    print("\nTask completed!")
if __name__ == "__main__": main()

```

Given that you can mimic your workflows from cursor and claude code into this sdk, you shouldn't have to sit around on your computer waiting for the long running task to finish.

That's why I built in a Sandbox class that mounts the ai coder into a remote sandbox directory instead of a local folder so you can deploy an ai coder to the cloud, enabling use cases such as coding from your phone and the browser.

I have already found so many low-handing fruit use cases for this sdk to automate prompting, information gathering, and auto-docs as shown in our github https://github.com/LMSystems-ai/cloud-coding

But I want to take it a step further.

You can get started for free today with this sdk and see our favorable pricing model here: https://docs.cloudcoding.ai/pricing