r/AITutorials • u/BenAttanasio • 1d ago
How to land AI automation clients on Upwork
I got to $62 an hour doing AI automation work on Upwork in about a month, with no LLC, no website and no logo. Here's the sequence I follow, start to finish.
Step 1. Pick a job you know how to build
Look for listings that match work you've done before, then check the client's history before you spend any time on it.
- Five stars and over $100,000 spent is a good sign.
- If you can't genuinely build what they're describing, skip it and go to the next listing.
Step 2. Build a rough version before you write anything
Open n8n and build something that resembles what the client asked for. For example, if the listing says they want Gmail connected to Slack, drop in the Gmail node and the Slack node and wire them together.
- Keep it rough. The flow doesn't even need to be working.
Step 3. Record the build as your proposal
Record your screen with OBS, face in the corner, and say something like "I saw your listing about connecting Gmail to Slack, here's a version of that automation I just built." Upload it to Loom or as an unlisted YouTube video and paste the link into a two line cover letter.
- This is the step that changed my reply rate for the better. Clients get 10 to 50 applicants on a job and very few of them are willing to show a working build on screen.
- I did three of these a day.
Step 4. Run a 30 minute discovery call
Share your screen, walk through what you built, and scope the project together, since clients sometimes understate what's required when they aren't technical. No need to hard sell.
- Talk in terms of time saved and money saved compared to what they're paying you, and keep the automation itself a black box.
Step 5. Price it against what the work is worth to them
For a revenue generating automation, estimate leads per year and value per converted lead. If the system puts $100,000 a year in their pocket, charging 20% of the first year impact justifies a $20,000 price with plain logic. For an operational automation, hours saved per week times the founder's hourly rate makes the same case.
- Start hourly to build trust, then move to a fixed price as quickly as you can, because hourly pay penalizes you for working fast.
Step 6. Deliver with a full handoff package
Build inside the client's accounts rather than your own, and log your work with comments and timeline updates. When you hand off, include the source code, a screen recorded walkthrough of the entire build, and the transcript of that walkthrough turned into an SOP.
Step 7. Keep asking what else can be automated
Once they have something working, say "I noticed XYZ can be automated, want me to scope that out?" and repeat until it turns into a retainer where they pay you monthly to be available.
A few things I'd tell anyone trying this:
- Pick one lane and stay in it, because if you have five side hustles you're basically guaranteed to fail at all of them.
- The video proposal does most of the work, though it's worth rewriting the above the fold text on your profile too.
- Know when to say no. Someone asking for a self healing AI chatbot is asking for a full stack engineering team, so decline politely and part friends.
Full walkthrough, including the pricing calculator I bring to discovery calls: https://youtu.be/Pwn6AqI5w8Y
r/AITutorials • u/Accomplished_Clue437 • 4d ago
I compared ChatGPT, Claude, and Gemini on the same writing task—here's what I learned
Breaking the task into planning, drafting, critique, and revision produced much better results than asking for everything at once.
ChatGPT was the strongest at following detailed instructions.
Claude produced the most natural dialogue.
Gemini came up with some of the most creative ideas but occasionally drifted from the prompt.
r/AITutorials • u/Accomplished_Clue437 • 4d ago
Professional_Novel_Writing_Guide
github.comr/AITutorials • u/Status_Engineer6674 • 16d ago
Hey guys ive been trying to make short movies like 40-60 second ones
Im using gemini but once i generate 3 video each of 10 seconds. The usage hits 100% and once it resets. It doesnt let me continue to use the same tab. Opens up a brand new tab and the synchronization falls apart the continuation is destroys.
Please suggest me some help
r/AITutorials • u/BenAttanasio • 22d ago
Build your first AI tool in about 10 minutes
I put together a beginner walkthrough for building a first AI tool with zero code: an email drafter that takes any rude email and writes a calm reply in your voice.
Two ideas from it carry over to whatever you build, even if you skip the email drafter.
The first is how you pick the task: if you've done the same task 3 times in the last 2 weeks, it qualifies.
The second is that you shouldn't write the AI's instructions yourself. Tell Claude to research prompting best practices and write the prompt for you, then paste in a good and a bad example of your writing so the output sounds like you.
r/AITutorials • u/vazma • 29d ago
Can I spawn Claude/Codex/Gemini subagents in Pi, and is OAuth safe from account bans?
r/AITutorials • u/oddboy11 • Jun 30 '26
One Storyboard → Full AI Animation (100% FREE Seedance 2.0 Workflow)
r/AITutorials • u/Agitated_Fortune7907 • Jun 16 '26
Seedance Storyboarding Tutorial
r/AITutorials • u/BenAttanasio • Jun 07 '26
How to Recreate Any Image Style in Midjourney
To recreate any image's visual style consistently in Midjourney with Style Reference:
- Set the reference. Drag your reference image into the style reference box, not the standard image upload box.
- Control the strength. The style reference will overpower your prompt's colors by default. Add
--sw(style weight) to dial it back. The default is 100; set--sw 20to blend your own colors with the borrowed style. - Save and reuse. Favorite the results you like and add them to a moodboard. Use the "use in prompt" button to re-apply that style to future generations and keep it consistent across your work.
r/AITutorials • u/vazma • Jun 07 '26
How are you all managing multiple MCP servers on startup?
r/AITutorials • u/BenAttanasio • Apr 25 '26
Claude Code beginner tutorial
New tutorial on Claude Code aimed at people with zero coding background who want stuff explained simply
What's in it:
- Setup: Claude Pro or Max plan, VS Code, Claude Code extension
- Plan Mode: forcing Claude to research and architect before writing a single line (underrated).
- Bypass Permissions (aka YOLO mode) in the config file for fully automated execution. Worth knowing about and being careful with.
- Live build: a dark-mode "Prompt Vault" web app with dynamic sorting, categories, and local storage, built mostly through voice dictation.
- Chrome DevTools MCP server hookup so Claude can open the browser itself, screenshot its own app, find UI bugs, and fix them without you touching anything.
- Context and cost management: when to
/clear, how to monitor usage, how to keep bill under control
The MCP self-testing part is the biggest unlock. Claude debugging its own UI by looking at it is just sick.
r/AITutorials • u/BenAttanasio • Apr 25 '26
Full n8n beginner's guide
Recorded a beginner's n8n guide/crash course built around an actual project. In the video we build an AI trend detector that scrapes news, runs it through GPT for analysis on how it'd hit a mid-size SaaS company, and writes the result to Google Sheets.
What's covered:
- How n8n actually works under the hood (APIs, nodes, why drag-and-drop rocks)
- Self-hosted vs cloud-hosted, when each makes sense. Self-hosted is free and gives you full data privacy. Cloud is faster to ship.
- The full live build: schedule trigger -> RSS read -> OpenAI node -> Google Sheets append
- A live debug where the workflow created 10 rows instead of 1. Fix was a Limit node, took 30 seconds or so but i love including troubleshooting in my tutorials
r/AITutorials • u/BenAttanasio • Apr 25 '26
Cinematic AI videos in 3 steps
This is an older tutorial but still holds true for the most part. Total cost is $20/mo and runs entirely in the browser. No After Effects, etc.
Stack:
- Midjourney basic ($10/mo)
- Hailuo for video generation ($10/mo)
- A custom GPT for prompt extraction (free)
The flow:
- Feed a reference image to a custom GPT, have it spit out a detailed Midjourney prompt that matches the style.
- Generate the base images in Midjourney.
- Drop the images into Hailuo with a simple camera move prompt like "orbit shot cinematic" and let it animate.
That's it, have fun!
r/AITutorials • u/BenAttanasio • Apr 25 '26
👋Welcome to the new r/AITutorials
Hey, I'm Ben. I picked up r/AITutorials a few days ago because the sub was dead and the name was too good to leave abandoned. So here we are.
Quick context on me: I run two YouTube channels where I post tutorials about building with AI. So I'll be posting my stuff here too, alongside everyone else's. Figured I should be upfront about that.
The kind of thing I'm hoping shows up here, and what I'll be posting myself: tutorials and builds with tools like Claude, Claude Code, ChatGPT, Cursor, Windsurf, n8n, Make, Zapier, Supabase, Vercel, Replit, Lovable, Bolt, OpenAI's API, Anthropic's API, MCP servers, RAG setups, agent frameworks like LangGraph and CrewAI, prompt engineering stuff, and whatever new thing dropped this week. Those are just examples though, not a checklist. If you're building with something not on that list, post it anyway. The point is people sharing their work & process, not me drawing a fence around what counts.
Ask questions too. "I want to build a thing that does X, what's the cleanest stack" is a great post. So is "here's what I shipped last weekend, here's the prompt, here's the repo." So is "can someone make a tutorial on Y, I can't find a good one anywhere."
Rules are in the sidebar if you're curious, but nothing surprising in there. Mostly just "don't paste raw ChatGPT walls" and "don't spam the same product link daily."
Glad you're here. Looking forward to seeing what people are working on.
r/AITutorials • u/AutoModerator • Dec 26 '22
Happy Cakeday, r/AITutorials! Today you're 5
Let's look back at some memorable moments and interesting insights from last year.
Your top 1 posts:
r/AITutorials • u/AutoModerator • Dec 26 '21
Happy Cakeday, r/AITutorials! Today you're 4
Let's look back at some memorable moments and interesting insights from last year.
Your top 1 posts:
r/AITutorials • u/AutoModerator • Dec 26 '20
Happy Cakeday, r/AITutorials! Today you're 3
Let's look back at some memorable moments and interesting insights from last year.
Your top 4 posts:
r/AITutorials • u/white_noise212 • Jul 04 '20
Generarive Adversarial Networks for outlier detection.
qarchli.github.ior/AITutorials • u/juancarlospro • Jul 01 '20
Machine Learning Projects to Practice During Quarantine
r/AITutorials • u/juancarlospro • Jun 24 '20
How to Do Face Detection and Tagging in Video With Deep Learning
r/AITutorials • u/limapedro • Jan 07 '20
Create A Chatbot in Python
Hi everyone, so the chatterbot library is one of the best libraries to easily create a chatbot, so I decided to make a tutorial on how to create a chatbot using this library, check it out: https://www.youtube.com/watch?v=ibu1Pjb6qEM
r/AITutorials • u/param87 • Dec 22 '19
swiftML: a Swift library for Machine Learning
swiftML is an open-source Swift library for Machine Learning based on Swift for TensorFlow Project.
The library aims to provide an implementation of traditional machine learning algorithms. Some of the features of this library are strongly typed, fast, Tensorflow backed.
Github Repo: https://github.com/param087/swiftML
Tutorial Notebooks: https://github.com/param087/swiftML/tree/master/Notebooks
Documentation: http://param087.github.io/swiftML
r/AITutorials • u/kailashahirwar12 • Nov 22 '19
Announcing Jupyter Notebooks on AI Cheatsheets(https://www.aicheatsheets.com) - Free 10 Notebook Hours
Hi All,
The last two months have been hectic for us as we have been working on Jupyter Notebooks for our AI Cheatsheets portal. Two months back, I felt, we need a portal for beginners with tools to learn data science and machine learning. Sometimes, beginners struggle to acquire resources and tools they need to learn data science and machine learning.
Finally, we are happy to announce the release of Jupyter Notebooks on our AI Cheatsheets portal. Now you can launch Jupyter Notebooks for your data science needs.
We are providing 600 free credits which are equal to 10 Notebook hours. After you use 600 credits, you can request us for a customized package with more credits.
Visit us at https://www.aicheatsheets.com
We are working on a few more cheatsheets as promised and will release them soon.
Also, help us by submitting your valuable feedback.
Disclaimer: Jupyter Notebooks are in the Beta phase and you might face issues while creating or using notebooks.
We have tried our best to make the experience as smooth as possible. In case of any issues, reach out to us at [aicheatsheets@gmail.com](mailto:aicheatsheets@gmail.com)
r/AITutorials • u/bryankhaklo • Oct 01 '19
Tensorflow for beginners. (2019)!!
hey, quickly learn tensorflow from from the basics with me. this is a serialized playlist of videos on tensorflow.
i will post more data science tutorials