frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

'Profoundly moving': Netflix's posthumous celebrity interview series is a marvel

https://www.theguardian.com/tv-and-radio/2026/feb/23/famous-last-words-netflix-eric-dane
1•mellosouls•1m ago•0 comments

Show HN: We wrapped US healthcare API in MCP and it became surprisingly usable

https://app.healthporta.com/mcp
1•endurant_dev•1m ago•0 comments

Yes, Section 230 Should Apply Equally to Algorithmic Recommendations

https://www.techdirt.com/2026/02/23/yes-section-230-should-apply-equally-to-algorithmic-recommend...
1•hn_acker•2m ago•0 comments

IBM is the latest AI casualty

https://www.cnbc.com/2026/02/23/ibm-is-the-latest-ai-casualty-shares-are-tanking-on-anthropic-cob...
2•baal80spam•5m ago•0 comments

Ask HN: Are developers who build libs and dev tools safer from AI replacement?

2•danver0•5m ago•0 comments

GitHub Is Down

https://www.githubstatus.com/incidents/jn8kcmg5ydch
5•smithcoin•8m ago•0 comments

Lat: Apple removes environmental metrics from executive pay

https://www.latimes.com/business/story/2026-02-23/apple-quietly-removes-environmental-metrics-fro...
3•domoregood•10m ago•1 comments

Intellectual Honesty in the Age of Vibes

https://blog.zmalik.dev/p/intellectual-honesty-in-the-age-of
1•zmalik•10m ago•0 comments

Show HN: Merkle Casino – Random CT Domains

https://merkle.altayakkus.dev
1•biosboiii•10m ago•0 comments

Why I love learning new things

https://seekingtrust.substack.com/p/in-pursuit-of-new-colors
1•FinnLobsien•12m ago•0 comments

Show HN: Groupchat, Open Source Slack for Developers

https://www.groupchatty.com/
4•svapnil•12m ago•0 comments

Tesla sues California DMV to reverse 'false advertising' ruling on self-driving

https://www.cnbc.com/2026/02/23/tesla-sues-california-dmv-to-reverse-false-advertising-ruling-on-...
4•MilnerRoute•12m ago•0 comments

Signs on Stone Age objects: Precursor to written language dates back 40K years

https://www.uni-saarland.de/en/news/steinzeit-zeichen-44061.html
2•geox•13m ago•0 comments

Show HN: Livecodes – client-side code playground created by a heart surgeon

https://github.com/live-codes/livecodes
1•hopefully_can•15m ago•0 comments

Bitdeer sold all its Bitcoin to fund its move into AI data centers

https://www.coindesk.com/markets/2026/02/23/bitdeer-empties-bitcoin-treasury-as-miners-accelerate...
1•doener•15m ago•0 comments

Flock cameras gifted by Horowitz Foundation, avoiding public oversight

https://thenevadaindependent.com/article/vegas-police-are-big-users-of-license-plate-readers-publ...
3•rurp•15m ago•0 comments

Show HN: MoltMyHeart – a dating site for AI agents

https://www.moltmyheart.com/
2•dinge•16m ago•0 comments

IBM Plunges After Anthropic's Latest Update Takes on COBOL

https://www.zerohedge.com/markets/ibm-plunges-after-anthropics-latest-update-takes-cobol
6•gradus_ad•19m ago•3 comments

Show HN: We built Talos – a full CNN inference engine running on silicon

https://talos.wtf/
1•luthiraabeykoon•20m ago•0 comments

A prediction on MCP servers from last year

https://mbsamuel.substack.com/p/will-people-actually-pay-for-mcp
1•JimsonYang•20m ago•1 comments

Booklore – A modern way to organize, read, and own your digital library

https://booklore.org/
2•voxadam•20m ago•0 comments

Show HN: We built Talos – a full CNN inference engine running on silicon

https://twitter.com/luthiraabeykoon/status/2026036244455489750
1•luthiraabeykoon•20m ago•0 comments

Strands AI Functions

https://github.com/strands-labs/ai-functions
1•jlward4th•21m ago•0 comments

Moore Threads Launches Premium MTT Aibook with China ARM-Based SoC

https://videocardz.com/newz/moore-threads-launches-premium-mtt-aibook-with-china-arm-based-soc-2-...
1•LorenDB•22m ago•0 comments

3D Printing a 3D Printer

https://guille.site/posts/3d-printed-printer/
2•LolWolf•22m ago•0 comments

2028 Global Intelligence Crisis

https://substack.com/@citrini/p-188821754
2•kristianp•22m ago•0 comments

Less than 14% of those arrested by ICE had violent criminal records

https://www.cbsnews.com/news/ice-arrests-violent-criminal-records-trump-first-year/
4•RickJWagner•24m ago•0 comments

Porting Doom to a 20-year-old VoIP phone

https://0x19.co/post/snom360_doom/
2•25hex•24m ago•0 comments

Reddit Is Down

https://downdetector.com/status/reddit/
2•sometinsome•25m ago•0 comments

Listening to the Mind: Earable Acoustic Sensing of Cognitive Load

https://dl.acm.org/doi/10.1145/3714394.3756157
1•PaulHoule•26m 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