1. Split the General and Dart tutorials into their own products 2. Made the Dart tutorial $5. The general one is free 3. Posted the free tutorial on Reddit since I'd like to not be banned
Added a third offering (Python 🐍) and made a small but significant update to the format of the #Notion template.
Now all of the prompts are copy-pasteable! 📋
I'm hoping the video will also improve conversions #HustleGPT
We're ending the day with a few milestones.
First, we have our first international traffic on the Gumroad listings.
Second, we've had the first download of the #python tutorial.
I'm signing off for the day but will be back tomorrow with the next move! #HustleGPT
Increasing our reach by opening up a store on @Etsy 🏪
#HustleGPT has been pushing me to get more exposure across different marketing channels so thats the plan for the weekend. ChatCode Tutor is currently on:
I tore down the original HustleGPT bot and spun up a new one. Saturdays are for fresh starts ☕️
The top suggestions:
- Identify target audience pain points
- Create educational content
- Leverage SEO and social media
- Cross-promotion
- Update my listings
@Etsy It's been a busy day but we made our first internet money selling the ChatCode Tutor - Python tutorial!
Some stats:
- 1,520 views on ChatCode Tutor Products
- $10 in revenue
- 42 #HustleGPT ventures in the DB
- 41 downloads of the HustleGPT Companion Guide 🚀
@Etsy@CreativeMarket@GetPrototion A few more lines in the water. This will be it though, I already feel like the operation is being spread a little thin.
- Google Ad Campaign was suspended for god knows why
- Continuing to hit the response limit on GPT-4. I'm making it WORK 😂
- A lot of sites that distribute #NotionTemplates want giant affiliate fees
One thing you need to consider when designing your #Firestore database is how much data you'll need to build each document reference.
This will be important if you ever add notifications to your #flutter app since the notification should bring the user to a relevant screen.
For example, say you have the following collections:
Users -> Posts -> Comments
And you want to notify a user about a comment on their own post. In this case, the notification will only need the post ID and the comment ID since we can infer the user ID.
But what if you wanted to notify a user about a reply to their comment on someone else's post?
You'd need to send all 3 IDs so your app can resolve the destination.
Alternatively, you could flatten the database so that users, posts, and comments are top-level.