frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: Robotics engineers – how painful was setting up GPU SIM infra?

1•nikhilol•58s ago•0 comments

Ask HN: As an Australian, is it possible to get a remote US role?

1•apatheticonion•2m ago•0 comments

The only technology that died more times than VR is AI

https://www.theregister.com/2026/04/15/hardware_metaverse_will_happen/
1•beardyw•2m ago•0 comments

My AI-Assisted Workflow

https://www.maiobarbero.dev/articles/ai-assisted-workflow/
2•maiobarbero•7m ago•0 comments

Claude may require identity verification in some cases

https://support.claude.com/en/articles/14328960-identity-verification-on-claude
2•zxilly•11m ago•0 comments

Peter Steinberger – WhatsApp CLI: sync, search, send

https://github.com/steipete/wacli
2•dinakars777•11m ago•0 comments

Software Testing at the Network Layer

https://arxiv.org/abs/2602.08242
1•alihassaan•11m ago•1 comments

VoxBee – Offline Dictation, Meetings, Transcriptions

https://www.voxbee.app/
2•shrimalmadhur•12m ago•0 comments

Building trust in the AI era with privacy-led UX

https://www.technologyreview.com/2026/04/15/1135530/building-trust-in-the-ai-era-with-privacy-led...
1•joozio•13m ago•0 comments

Ketska – local walkie talkie over internet

https://ketska.com
2•tomaskafka•14m ago•0 comments

Field notes on GenAI from someone who can't stop playing with it

https://catchingup.now/about.html
2•mefengl•19m ago•0 comments

Scientists discover why bread can cause weight gain without extra calories

https://www.sciencedaily.com/releases/2026/04/260414075637.htm
1•XzetaU8•19m ago•1 comments

The Death of an AI Whistleblower

https://www.thenation.com/article/society/open-ai-suchir-balaji-whistleblowers/
2•SLHamlet•19m ago•0 comments

The Simple Geometry Behind Any Road

https://sandboxspirit.com/blog/simple-geometry-of-roads/
2•coinfused•27m ago•0 comments

CEO used ChatGPT to plan takeover, avoid $250M payout

https://www.google.com/url?q=https://m.economictimes.com/news/new-updates/pubg-battlegrounds-make...
3•Michelangelo11•28m ago•1 comments

I Will Never Respect a Website

https://www.wheresyoured.at/i-will-never-respect-a-website/
2•HotGarbage•29m ago•0 comments

Sovereign Engineering Philosophy

https://sovereignengineering.io/philosophy
1•janandonly•32m ago•0 comments

Show HN: DubVox – Translate audio to any lang while keeping the speaker's voice

https://dubvox.coderluii.dev/
1•CoderLuii•36m ago•0 comments

Cloudflare Threat Report

https://blog.cloudflare.com/2026-threat-report/
3•rupayanc•38m ago•1 comments

April: Faster APL with Lazy Extensions (2023) [video]

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

I track GitHub engineering acceleration to help investors spot breakout startups

https://signals.gitdealflow.com/trending
1•the_data_nerd•45m ago•0 comments

Snap to announce mass layoffs, Perplexity integration called off

https://sources.news/p/snap-crucible-moment
1•matthieu_bl•45m ago•1 comments

Google launches Personal Intelligence for all US users

https://www.heygotrade.com/en/news/google-ai-expansion-challenges-microsoft-apple/
2•demiurges•47m ago•0 comments

The state of agent traffic in documentation (March 2026)

https://www.mintlify.com/blog/state-of-ai
2•Lilian_Lee•49m ago•1 comments

Hampshire College Will Close Amid Student Enrollment Declines

https://www.nytimes.com/2026/04/14/us/hampshire-college-closing-amherst-massachusetts-enrollment....
2•yowhatup•50m ago•0 comments

Tell HN: Anthropic no longer allows you to fix to specific model version

5•baobabKoodaa•52m ago•0 comments

WordPress Manifesto – 15 Years In, Here's What's Broken

https://marcindudek.dev/blog/wordpress-manifesto/
2•ValentineC•55m ago•0 comments

A Sociologist's Take on the Artemis Moon Round-Trip

https://discursiveanomalies.com/2026/04/15/a-sociologists-take-on-the-artemis-moon-round-trip/
1•panic•58m ago•0 comments

KeePassChi

https://codeberg.org/keepasschi
3•LeoPanthera•58m ago•0 comments

Viral victory: Iran is beating the land of tech bros in the social media wars

https://www.theguardian.com/world/2026/apr/15/iran-beating-us-social-media-wars
14•hebelehubele•59m ago•1 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