10cks/RemoteLoader — reverse-engineered prompt
Reverse engineered prompt
Build me a small Windows C++ project called RemoteLoader. The README only gives the name, so keep the scope simple and useful.
I want it to be a command line tool where I can give it a web address, have it make an HTTP request, show whether the request worked, print a little bit of the response, and let me save the downloaded content to a local file if I pass an output name. Please make the errors understandable for a normal user, like bad URL, no connection, server error, or file save failed.
Keep the code clean and split the HTTP request logic into its own reusable helper, with main focused on reading arguments and showing results. Make sure it builds easily in Visual Studio using the existing project files. Also update the README with basic usage examples and a short explanation of what the tool does. Look up current docs online if you need to.
Want more depth? Deep Reverse