frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Next Step for Alternet: Mock Chain Implementation

https://raventechnologiesgroup.com/newsroom/the-next-step-fo/
1•DropDead•4m ago•0 comments

The Physics of GPS

https://perthirtysix.com/how-does-gps-work
3•maouida•4m ago•0 comments

WhatsApp Is Hollowed Out

https://twitter.com/BowesChay/status/2042399259316588793
1•sva_•5m ago•0 comments

Nb – Notebook CLI designed for both humans and AI agents

https://github.com/jupyter-ai-contrib/nb-cli
1•apwheele•5m ago•0 comments

4Gb image archive for Artemis II

https://images.nasa.gov/details/KSC-20260401-MH-SFL01-0001-Artemis_II_UCS15_D1_QUICKLOOK_STABILIZ...
1•Eridanus2•5m ago•0 comments

The Abstraction Fallacy: Why AI Can Simulate but Not Instantiate Consciousness

https://philpapers.org/rec/LERTAF
1•bazzmt•6m ago•0 comments

Decision Passport verifiable AI decision records

https://github.com/brigalss-a/decision-passport-core
1•Brigalss•6m ago•0 comments

Buttercut: Edit Videos with Claude Code

https://github.com/barefootford/buttercut
2•earcar•12m ago•0 comments

Anthropic's Mythos Will Force a Cybersecurity Reckoning–Just Not the One You Th

https://www.wired.com/story/anthropics-mythos-will-force-a-cybersecurity-reckoning-just-not-the-o...
2•joozio•13m ago•0 comments

Category Theory Illustrated – Logic

https://abuseofnotation.github.io/category-theory-illustrated/05_logic/
1•boris_m•17m ago•0 comments

Codebases – Million Lines of Code

https://informationisbeautiful.net/visualizations/million-lines-of-code/
1•IndySun•17m ago•1 comments

How Poor Am I? – See Where You Stand in Global Wealth

https://howpoorami.org
1•thunderbong•17m ago•0 comments

Trump administration proposes budget cuts to science

https://www.scientificamerican.com/article/trump-administration-proposes-massive-budget-cuts-to-s...
1•ZunarJ5•18m ago•0 comments

New Chromium-based web browser for SEO

https://serplens.com
1•brodieclark•27m ago•1 comments

What have been the greatest intellectual achievements?

https://www.thinkingcomplete.com/2017/09/what-have-been-greatest-intellectual.html
2•o4c•28m ago•0 comments

Show HN: Contrails – App to watch coding agents chats and save them to your repo

https://github.com/ThreePalmTrees/Contrails
1•Contrails•28m ago•0 comments

Gnome OS revealed what Linux is becoming

https://www.makeuseof.com/i-tried-gnome-os-and-it-showed-me-where-linux-is-actually-heading/
3•ForHackernews•32m ago•0 comments

I built an LLM Wiki and RAG solution: here's a demo for a security KB

https://99helpers.com/wiki/security-kb
1•nickk81•34m ago•1 comments

Mutually Automated Destruction: The Escalating Global A.I. Arms Race

https://www.nytimes.com/2026/04/12/technology/china-russia-us-ai-weapons.html
2•Leomuck•39m ago•1 comments

Strong Model First or Weak Model First? A Cost Study for Multi-Step LLM Agents

https://llm-spec.pages.dev/
1•vsekar•40m ago•0 comments

Why "Travel Inspiration" is the biggest UX gap in TravelTech

https://www.lupath.ai/
1•LUpath•44m ago•0 comments

Brocards for Vulnerability Triage

https://blog.yossarian.net/2026/04/11/Brocards-for-vulnerability-triage
1•ramimac•44m ago•0 comments

JVM Options Explorer

https://chriswhocodes.com/vm-options-explorer.html
3•0x54MUR41•45m ago•0 comments

Fix monitor that goes black, off or blinks due to static electricity in chair

https://aalonso.dev/blog/2023/how-to-fix-monitor-that-goes-black-off-due-to-static-electricity-in...
1•cyclopeanutopia•48m ago•1 comments

Running AI Agents in a Sandbox

https://oligot.be/posts/ai-sandbox/
1•oligot•50m ago•0 comments

Left-Wing Social Darwinism

https://www.rechristianize.com/blog/social-darwinism/left-wing-social-darwinism.html
1•Egret•57m ago•0 comments

Show HN: 3D Tik Tak Toe (Hard)

https://arthur-ficial.github.io/tictactoe-3d/
1•franze•57m ago•1 comments

MiniMax M2.7 Is Now Open Source

https://firethering.com/minimax-m2-7-agentic-model/
33•steveharing1•1h ago•10 comments

Artemis III Proposed Landing Sites

https://artemis-iii.technex.us
1•hparadiz•1h ago•0 comments

Linux kernel doesn't care about your disk health

https://simpleobservability.com/blog/linux-kernel-doesnt-care-disk-health
2•khazit•1h ago•0 comments
Open in hackernews

Show HN: SDK for AI Coding with Long Running Tasks

https://cloudcoding.ai/
2•sean_•11mo 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