Skip to content

Instantly share code, notes, and snippets.

View codingthefuturewithai's full-sized avatar

Coding the Future With AI codingthefuturewithai

  • 09:33 (UTC -12:00)
View GitHub Profile
@codingthefuturewithai
codingthefuturewithai / yt-aider-cursor-windsurf-tutorial-prompts.md
Created November 19, 2024 02:02
Prompts from YouTube tutorial: Aider, Cursor, Windsurf: Build Apps with a SINGLE prompt, NO coding!

Sequential Prompts from Original RAG with aider and Claude 3.5 Sonnet Tutorial

LangChain RAG App Prompts

Initial RAG App Setup

Prompt: Use the LangChain RAG tutorial documentation, which I provided to you previously, to generate a simple RAG app in Python that uses the LangChain v0.2 framework. The app will allow the user to provide the URL for a web page and ask questions related to the contents of the page. The user interface will be the command line for now. The app should use OpenAI models and APIs. Generate all the required files, functions, methods, imports, etc. but don't implement any functions yet. Instead, just insert comments. Also, generate the Python requirements.txt file. Only implement the features I've requested.


Cody AI Prompts

Generate Requirements for an Idea: I have an idea for a new software project. If I haven't already given my idea to you, ask me to provide it before proceeding.

Using my project idea, generate a set of core requirements. Keep the requirements simple and focused on the aspects that are most likely to impact the architecture.

Present the list of requirements in an organized manner. Categorize as appropriate. Give each core feature a unique number I can use later to refer back to that feature.

Give me this in markdown format and offer to let me insert your generated content into a new file.

@codingthefuturewithai
codingthefuturewithai / yt-continue-mobile-app-chat-prompts.md
Created August 20, 2024 11:15
Continue prompts used for YouTube video: "Continue and Claude 3.5: Develop a Mobile App Without Writing ANY Code!"
### Select image from device

"Update the app to allow the user to select an image from their device. Display the selected image on the screen."

### Add create funny story button

"Add a button below the image that says ‘Make up a funny story!’"

### Generate code to send image to AI vision model to create the story
@codingthefuturewithai
codingthefuturewithai / yt-continue-mobile-app-dev-env-setup-all-OS.md
Last active January 7, 2025 12:04
Dev Env Setup for YouTube video: "Continue and Claude 3.5: Develop a Mobile App Without Writing ANY Code!"

Dev Setup

NOTE: If you ever run into development setup issues, I recommend using your AI chatbots to help you out. Once you explain what you’re trying to do and what OS you’re on, they’re usually very good at providing very detailed step-by-step guidance.

API Keys (needed regardless of your OS)

You will need accounts and API keys for both of the below:

@codingthefuturewithai
codingthefuturewithai / yt-continue-mobile-app-tutorial-commands.md
Created August 19, 2024 22:36
Command line commands for YouTube video: "Continue and Claude 3.5: Develop a Mobile App Without Writing ANY Code!"

Create a new Expo project from a based template

npx create-expo-app testme -t expo-template-blank-typescript

Build and run the app

npx expo

Install a new dependency

npm install <react_package>

expo install

@codingthefuturewithai
codingthefuturewithai / yt-continue-mobile-app-tutorial-custom-prompts.md
Created August 19, 2024 22:26
Continue custom prompts for YouTube video: "Continue and Claude 3.5: Develop a Mobile App Without Writing ANY Code!"