frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

HiddenLayer 2026: Autonomous Agents Now Account for 1 in 8 AI Breaches

https://finance.yahoo.com/news/hiddenlayer-releases-2026-ai-threat-140000928.html
1•thomaslwang•3m ago•1 comments

First Public Windows 7 Demo

https://hardcoresoftware.learningbyshipping.com/p/094-first-public-windows-7-demo
1•tosh•4m ago•0 comments

Israeli spy firm crashes Slovenia's election

https://www.politico.eu/article/black-cube-leak-tape-corruption-israel-spy-firm-slovenia-election/
1•throw310822•7m ago•0 comments

Turn AWS CloudShell into a distributed file store for fun

https://github.com/dan-v/cloudshell-store
1•tietjens•9m ago•0 comments

macOS: What is a Background Security Improvement, and how does it work?

https://eclecticlight.co/2026/03/19/what-is-a-background-security-improvement-and-how-does-it-work/
1•ingve•10m ago•0 comments

OpenCode drops Claude Pro/Max subscription support per Anthropic's legal request

https://github.com/anomalyco/opencode/pull/18186
3•kretaceous•12m ago•0 comments

Stitch – Design with AI

https://stitch.withgoogle.com/
2•Anon84•13m ago•0 comments

Verification costs shape the jagged frontier

https://langkilde.se/blog/living-with-asi/
1•langkilde•15m ago•0 comments

Observability for your LLM-powered apps: OTel Instrumentation for RubyLLM

https://thoughtbot.com/blog/observability-for-your-llm-powered-apps-otel-instrumentation-for-rubyllm
1•earcar•16m ago•0 comments

Show HN: Try out my pixel platformer demo with an RL agent you can play against

https://rlplays.com/game
1•textlapse•20m ago•0 comments

Show HN: GitComet fastest open source Git GUI launched

https://gitcomet.dev/
3•Havunen•20m ago•0 comments

Heisuke Hironaka Has Died

https://japannews.yomiuri.co.jp/society/general-news/20260319-317449/
1•pfortuny•23m ago•1 comments

Commission presents proposal for EU Inc. – a single legal entity for Europe

https://ec.europa.eu/commission/presscorner/detail/en/ip_26_614
2•earcar•24m ago•1 comments

Securing digital assets against future threats

https://www.technologyreview.com/2026/03/16/1134287/securing-digital-assets-against-future-threats/
1•joozio•25m ago•0 comments

Prevalence of Alpha-Synuclein Seeding in Olfactory Mucosa Following SARS-CoV-2

https://www.researchsquare.com/article/rs-8855629/v1
1•luu•27m ago•0 comments

Store birth date in systemd for age verification

https://github.com/systemd/systemd/pull/40954
1•sadeshmukh•30m ago•0 comments

Speeding at higher speeds does not save time by a lot

https://old.reddit.com/r/SipsTea/comments/1rwbzoe/speeding_at_higher_speeds_does_not_save_time_by_a/
1•taubek•36m ago•0 comments

Nvidia's AI-Powered Photorealistic Gaming Technology Roasted as 'AI Slop'

https://www.forbes.com/sites/conormurray/2026/03/17/nvidias-ai-powered-photorealistic-gaming-tech...
1•helsinkiandrew•38m ago•0 comments

Infinitely many primes end in a 7

https://hidden-phenomena.com/articles/dirichlet
2•vismit2000•44m ago•0 comments

Does anyone know which company has the best tool battery technology?

1•Lohin•46m ago•0 comments

Reducing features to increase privacy, is this is good move?

1•eddiejaoude•47m ago•1 comments

The Riemann hypothesis (or, how to earn $1M)

https://hidden-phenomena.com/articles/rh
1•vismit2000•48m ago•0 comments

Cities: Skylines 2 boss says they overestimated Unity's capabilities

https://www.pcgamer.com/games/sim/cities-skylines-2-boss-says-they-completely-overestimated-the-u...
2•tietjens•50m ago•0 comments

DOGE staffer who flagged grants for 'DEI' struggles to define the term [video]

https://www.youtube.com/watch?v=WpbGF7l-t2w
1•thelastgallon•50m ago•0 comments

Is Math Art? Werner Herzog Says Yes

https://news.artnet.com/art-world/werner-herzog-brooklyn-public-library-pi-day-2754957
1•cafebeen•50m ago•0 comments

Why Tech Bros Are Now Obsessed with Taste

https://www.newyorker.com/culture/infinite-scroll/why-tech-bros-are-now-obsessed-with-taste
1•achow•51m ago•1 comments

Tools Written on the Uxn VM

https://100r.ca/site/projects.html
2•anonzzzies•52m ago•0 comments

Is Hacker News losing interest in startups?

https://hntrends.net/words/startup
2•kleiba•54m ago•1 comments

EpsteinBench: We Brought Epstein's Voice Back but Got More Than We Wanted

https://morgin.ai/articles/epsteinbench-we-brought-epsteins-voice-back.html
2•dilutedh2o•58m ago•3 comments

ahsohtoa: Structure-of-Array Synthesis in C++20

https://github.com/celtera/ahsohtoa
1•tosh•59m 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