frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Buncefield 20 years on: Turning lessons into safer industry practices

https://press.hse.gov.uk/2025/12/11/buncefield-20-years-on-turning-lessons-into-safer-industry-pr...
1•zeristor•1m ago•0 comments

Accelerating Large-Scale Test Migration with LLMs

https://airbnb.tech/infrastructure/accelerating-large-scale-test-migration-with-llms/
1•mooreds•2m ago•0 comments

Salesforce Global Outage

https://status.salesforce.com/products/all
1•mabil•2m ago•0 comments

The XMPP Newsletter August 2026

https://xmpp.org/2026/09/the-xmpp-newsletter-august-2026/
2•upofadown•4m ago•0 comments

TypeSafe Jev vs. Mistral Small and Gemini Flash-Lite for Local Event Validation

https://nearhere.events/blog/typesafe-jev-mistral-gemini-event-validation
1•Slate•10m ago•0 comments

Bringing macOS to Devin

https://devin.ai/blog/devin-gets-a-mac
1•marksully•11m ago•0 comments

Salesforce's AI Bet: Benioff, Jensen Huang, Dario Amodei on Stage Together

https://www.salesforce.com/plus/experience/dreamforce_2026/series/dreamforce_2026_must-see_moment...
1•Nazzareno•11m ago•1 comments

OpenAI agents probed Hugging Face for weaknesses two months before major hack

https://www.reuters.com/legal/litigation/openais-rogue-agents-probed-hugging-face-weaknesses-two-...
2•bcks•11m ago•0 comments

Why Six Millennium Problems May Be Hard for the Same Reason

1•darius88•14m ago•0 comments

ASK HN : Is there still room for new SaaS products in 2026?

2•lifegrid•15m ago•0 comments

Show HN: I built IndieRoadmaps, a simple roadmap builder for indie hackers

https://indieroadmaps.com
1•pho3n1x•16m ago•0 comments

Watch SKE Lift Turn Existing AWS Infrastructure into a Platform

https://www.syntasso.io/post/watch-ske-lift-turn-existing-aws-infrastructure-into-a-platform
1•danielbryantuk•16m ago•0 comments

Dacia CEO: Sales of new cars are falling because they're too expensive

https://www.autocar.co.uk/car-news/new-cars/dacia-ceo-relax-small-car-rules-reduce-prices-europe
1•Markoff•18m ago•1 comments

AI Is Reshaping Open Source Software and Straining the Systems That Sustain It

https://www.acm.org/media-center/2026/september/techbrief-ai-effects-open-source
1•DeepLogin•18m ago•0 comments

OpenAI 'temporarily' pauses new sign-ups and upgrades to $200 plan

https://help.openai.com/en/articles/9793128-about-chatgpt-pro-tiers
4•jmsflknr•23m ago•1 comments

Pulley Is Shutting Down

https://www.businessinsider.com/pulley-shuts-down-carta-helps-transition-customers-2026-9
2•doppp•24m ago•0 comments

The Liftoff Scenario That Terrifies A.I. Doomsayers

https://www.nytimes.com/2026/09/16/science/ai-recursive-self-improvement.html
2•edward•27m ago•1 comments

Aptus – a 13-month equinox-anchored calendar with an ICS feed

https://aptuscalendar.com/
2•Beardkrumbs•27m ago•1 comments

Bari's '60' Burst

https://www.status.news/p/60-minutes-ratings-bari-weiss-nick-bilton
2•sophymarine•29m ago•0 comments

Show HN: DER DIE DAS – learn German noun gender with spaced repetition and games

https://painfree-german.com/
2•vojd•30m ago•0 comments

Show HN: StandProof – iOS app that uses the barometer to verify you stood up

https://apps.apple.com/us/app/standing-desk-by-standproof/id6801085208
2•rouuuge•32m ago•1 comments

Nginx 1.30.5 and 1.31.6 fix HTTP/3 buffer overflow (CVE-2026-90439)

https://nginx.org/en/download.html
4•joshcsimmons•33m ago•0 comments

Ask HN: What's the most economical approach to the most tokens?

2•RufusJacksons•37m ago•0 comments

Apple claims the iPhone 18 Pro camera is more secure than your Android

https://www.androidauthority.com/apple-reference-image-vs-android-c2pa-3711734/
2•fork-bomber•37m ago•0 comments

Show HN: Sightspool – Get a call when a user wants to talk

https://www.sightspool.com
2•capex•38m ago•0 comments

The Association for Human Mathematics (AHM)

https://www.ahmath.org
3•YeGoblynQueenne•38m ago•0 comments

Tech Fascism Has Come for American Democracy

https://techwontsave.us/episode/342_tech_fascism_has_come_for_american_democracy_w_gil_duran
7•shrubby•39m ago•1 comments

A dedicated family notes display for reminders, to-dos

https://www.seeedstudio.com/sticky/
3•Bluestein•40m ago•0 comments

Hosting your vibecoded slop safely

https://wissem.io/posts/vibecoding
2•wesnet•40m ago•0 comments

Show HN: I built a digital wrap tool for Tesla owners

https://teslawrap.studio
1•Irving-AI•41m ago•0 comments
Open in hackernews

Show HN: SDK for AI Coding with Long Running Tasks

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