frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Compile and flash an STM32 in 8s from a single prompt using function calling

https://github.com/PrettyMyGirlZyy4Embedded/garycli/tree/main
1•gary_cli•1m ago•0 comments

Lunches.fyi

https://walzr.com/lunches-fyi/
1•coyney•3m ago•0 comments

LMF – LLM Markup Format

https://github.com/sarfraznawaz2005/lmf
1•sarfraz_nawaz•4m ago•0 comments

What nearly broke you in your first year as CTO?

1•Cannonball2134•4m ago•0 comments

Zipp 2001 Restoration

https://robot-daycare.com/posts/zipp-2001-restoration-part-1/
1•o4c•6m ago•0 comments

Black Hat USA 2025 – Breaking Control Flow Integrity by Abusing Modern C++ [video]

https://www.youtube.com/watch?v=hxIPoi4ONNA
1•pjmlp•8m ago•0 comments

As US missiles leave South Korea, the Philippines asks: are we next?

https://www.scmp.com/week-asia/politics/article/3346226/us-missiles-leave-south-korea-philippines...
1•etiam•11m ago•0 comments

Show HN: AIWatermarkDetector: Detect AI Watermarks in text or code

https://github.com/ulrischa/AIWatermarkDetector
1•ulrischa•15m ago•1 comments

Whitehall can't cost digital ID until it decides how to build it

https://www.theregister.com/2026/03/11/digital_id_cost/
1•jjgreen•15m ago•0 comments

Meta Acquires Moltbook

https://arstechnica.com/ai/2026/03/meta-acquires-moltbook-the-ai-agent-social-network/
1•lnrd•15m ago•0 comments

The Anthropic Institute

https://www.anthropic.com/institute
1•pretext•16m ago•0 comments

The return-to-the-office trend backfires

https://thehill.com/opinion/technology/5775420-remote-first-productivity-growth/
2•PretzelFisch•18m ago•0 comments

Tensorlake

https://tensorlake.ai/
1•handfuloflight•19m ago•0 comments

Now I have a clear picture. Let me understand the issue

1•noduerme•20m ago•0 comments

I Need a Partner

2•justYooz•21m ago•1 comments

Ask HN: Which EU country would you recommend for setting up a startup?

1•stein1946•21m ago•0 comments

NextCell – a portable spreadsheet editor inspired by Excel 97

https://redata.dev/nextcell/
3•Suliman123•22m ago•1 comments

Show HN: TUI for SVN

https://lazysvn.sawirstudio.com/
1•sawirricardo•25m ago•0 comments

Agentic Risks

https://cloudberry.engineering/article/agentic-risks/
1•gbrindisi•27m ago•0 comments

Ask HN: Why does a black line appear on HN sometimes?

2•bheadmaster•32m ago•2 comments

Ask HN: How do you find joy in a world full of depressing news?

2•Razengan•35m ago•1 comments

Gpsjam GPS/GNSS Interference Map

https://gpsjam.org/
2•jonbaer•39m ago•0 comments

The Quantum Curtain

https://www.defenseone.com/ideas/2026/03/quantum-curtain/411967/
3•jonbaer•42m ago•0 comments

Stacksort

https://gkoberger.github.io/stacksort/
1•mihau•43m ago•0 comments

Mesh – remote mobile forensics and network monitoring

https://github.com/BARGHEST-ngo/MESH
1•0x0v1•43m ago•1 comments

MacBook Neo Review: Better Than You Think

https://www.youtube.com/watch?v=iGeXGdYE7UE
1•keepamovin•43m ago•0 comments

Encode/httpx: Closing off access

https://github.com/encode/httpx/discussions/3784
2•luismedel•44m ago•1 comments

A Kubernetes operator that orchestrates AI coding agents

https://medium.com/@bobbydeveaux/we-built-an-ai-that-plans-codes-reviews-and-ships-and-then-we-us...
2•bobbydeveaux•45m ago•1 comments

AI Agent Hacks McKinsey

https://codewall.ai/blog/how-we-hacked-mckinseys-ai-platform
3•mycroft_4221•46m ago•0 comments

Movies I Highly Recommend

https://github.com/ojhaugen15/12_movies
1•programmexxx•48m 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