frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Indonesia urges social media platforms to disclose number of U16 accounts closed

https://apnews.com/article/indonesia-social-media-children-under-16-39630c776f947652cde619ad4ae56627
1•1vuio0pswjnm7•1m ago•0 comments

Samsung Electronics Earnings Presentation Q12026 [pdf]

https://images.samsung.com/is/content/samsung/assets/global/ir/docs/2026_1Q_conference_eng.pdf
1•TechTechTech•2m ago•0 comments

NSA networking tool poses threat to national security

https://www.sdxcentral.com/news/nsa-networking-tool-poses-threat-to-national-security/
1•giuliomagnifico•2m ago•0 comments

The 2026 AI Index Report

https://hai.stanford.edu/ai-index/2026-ai-index-report
1•mooreds•3m ago•0 comments

Lens Agents: Governing AI Agents Across Desktop, Cloud, and On-Prem

https://lenshq.io/blog/introducing-lens-agents
1•flaviuscdinu•3m ago•0 comments

Merchantoria.com – Payment and Merchant providers comparison aggregator

https://merchantoria.com
1•jangozo•6m ago•1 comments

Is tech's AI spending working?

https://www.latimes.com/business/story/2026-04-29/trillion-dollar-question-is-techs-massive-ai-sp...
1•1vuio0pswjnm7•9m ago•0 comments

Fido Alliance to Develop Standards for Trusted AI Agent Interactions

https://fidoalliance.org/fido-alliance-to-develop-standards-for-trusted-ai-agent-interactions/
1•bpierre•10m ago•0 comments

Show HN: NVIM config that I use with my agents

https://github.com/NishantJoshi00/nvim-config
2•cat-whisperer•10m ago•0 comments

Tar files made in macOS generate "xattr" errors when expanded in Linux

https://aruljohn.com/blog/macos-created-tar-files-linux-errors/
1•heresie-dabord•11m ago•0 comments

The quiet layoffs China's tech giants

https://restofworld.org/2026/china-tech-layoffs-alibaba-baidu-ai-pivot/
1•giuliomagnifico•11m ago•0 comments

Show HN: Run Claude Code sessions on Linear issues via two MCP servers

https://lanes.sh/blog/linear-to-lanes
2•s-xyz•11m ago•0 comments

Americans lost $2.1B to social media scams in 2025, 8x more than in 2020

https://fortune.com/2026/04/28/ftc-social-media-scams-americans-lose-billions-meta-facebook-whats...
1•1vuio0pswjnm7•13m ago•0 comments

Tap Jewels is a classic match-3 gem game for the Amiga computer

https://www.amiga-shop.net/en/Amiga-Software/Amiga-Games/Tap-Jewels-classic-Amiga-download-versio...
1•doener•15m ago•0 comments

Do the geniuses in the datacenter get lunch breaks?

https://blog.dnmfarrell.com/post/do-the-geniuses-in-the-datacenter-get-lunch-breaks/
1•davidfarrell•15m ago•0 comments

Thales – TypeScript compiler and JavaScript engine in Lean

https://github.com/jessealama/thales
2•michaelkrem•16m ago•0 comments

Content Engineering with Claude Code

https://ahrefs.com/blog/how-i-do-content-engineering-with-claude-code/
1•eigenBasis•18m ago•0 comments

Get Your Website/API Ready for Agentic Commerce in 1 Minute

https://www.startuphub.ai/agent-readiness
1•compulsivebuild•21m ago•1 comments

Bitmap and tilemap generation from a single example

https://github.com/mxgmn/WaveFunctionCollapse
1•futurecat•24m ago•0 comments

Redshift – Rehearsing for humanity's future on Mars

https://harpers.org/archive/2026/05/redshift-elena-saavedra-buckley-mars/
1•pseudolus•26m ago•0 comments

CPanel and WHM Authentication Bypass

https://labs.watchtowr.com/the-internet-is-falling-down-falling-down-falling-down-cpanel-whm-auth...
1•teapowered•26m ago•0 comments

TIL – OS Login Guest Environment for Google Compute Engine

https://github.com/GoogleCloudPlatform/guest-oslogin
1•ankitg12•28m ago•0 comments

Oracle plans to power its New Mexico mega datacenter with 2.45GW fuel cell farm

https://www.theregister.com/2026/04/28/oracle_new_mexico_power_fuel_cell_farm/
2•pseudolus•28m ago•1 comments

Oops, I invented REST APIs

https://clemorl.fr/Articles/Oops,-I-invented-REST-APIs
1•Topy•31m ago•0 comments

Crow-CLI/crow-CLI: Minimal MCP based ACP agent

https://github.com/crow-cli/crow-cli
1•themaxdavitt•32m ago•0 comments

LocalPilot with Ollama as a Replacement for CoPilot in VS2026

https://github.com/FutureStackSolution/LocalPilot
1•voidmain0001•32m ago•0 comments

The Hanging God (Odin) [video]

https://www.youtube.com/watch?v=yizsAZ4z8xA
1•Imustaskforhelp•33m ago•0 comments

GCC 16 has been released

https://gcc.gnu.org/gcc-16/changes.html
19•HeliumHydride•34m ago•0 comments

Donating to Open Source

https://entropicthoughts.com/open-source-donation
2•birdculture•37m ago•1 comments

The Bombadil Terminal Experiment

https://wickstrom.tech/2026-04-30-bombadil-terminal-experiment.html
2•simonklee•37m 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