Posts

How I Track 7 Income Streams in One Notion Dashboard

When you're juggling multiple income sources—YouTube ad revenue, book sales, Etsy orders, stock trades, blog work, affiliate commissions, and API subscriptions—it's easy to lose track of what's working. I needed one place to see everything at a glance, so I built a simple Notion dashboard that logs all seven streams and calculates monthly totals automatically. Here's exactly how I set it up, step by step, so you can do the same. Why Separate Spreadsheets Don't Work I used to keep a Google Sheet for each income source. YouTube had its own tab, KDP had another, and my trading journal lived in a different file entirely. Every month I'd open five or six documents, copy numbers into a master sheet, and try to remember which cell formulas I'd broken last time. The problem wasn't the spreadsheets themselves—it was the friction. When it takes ten minutes to log a $40 affiliate sale, you stop logging. When you can't see your progress toward a monthly ...

Scope Creep Is a Paperwork Problem (Fix It With a Real SOW)

You land the project, shake hands (virtually), and start building. Two weeks later, the client asks for "just one more feature" that wasn't in the original email. Then another. By month three, you're working twice the hours for the same flat fee, resenting every Slack notification. This isn't a client problem—it's a documentation problem. You never defined the edges of the work, so there are no edges to defend. A proper Statement of Work (SOW) is your boundary. It's the document both parties sign before any code gets written or any design file opens. It lists exactly what you'll deliver, what you won't, when payment happens, and how changes get handled. It sounds boring because it is. It's also the difference between a profitable project and a three-month unpaid overtime shift. What Belongs in a Real SOW Start with the project summary: two or three sentences that describe the goal in plain language. This isn't marketing copy—it's ...

How to Get Your Resume Past ATS (and In Front of Humans)

Most resumes never reach a recruiter. They're filtered out by Applicant Tracking Systems—software that scans, parses, and ranks applications before any human sees them. If you've been sending out resumes into the void, this is probably why. The good news: ATS systems are predictable. Once you understand how they work, you can structure your application to pass the filters and land in front of the people who actually make hiring decisions. What ATS Actually Does (and Why Your Resume Gets Rejected) An ATS doesn't read your resume the way a person does. It parses the document into fields—name, contact info, work history, skills—and scores it based on keyword matches, formatting compatibility, and completeness. Most rejections happen because: The ATS can't parse your fancy formatting (tables, text boxes, headers, images) Your resume lacks keywords from the job description Your job titles or skills don't align with what the system is searching for You used ...

A Realistic Faceless YouTube Shorts Workflow for Busy Makers

You're building a product, writing docs, answering support tickets. You know YouTube Shorts could be a solid content channel, but recording yourself on camera every day isn't realistic. Here's how to build a faceless Shorts workflow that runs on autopilot once you set it up. Why Faceless Shorts Make Sense for Makers Faceless content works when you're teaching concepts, sharing tips, or breaking down processes. Think text overlays on stock footage, voiceover tutorials, or animated explainers. No lighting setup, no makeup, no camera anxiety. The format suits educational content especially well. If you're in dev tools, productivity, design, or any niche where the idea matters more than your face, this approach lets you publish regularly without the friction of traditional video production. The Manual Workflow (Do This First) Before automating anything, run through the process manually a few times. You'll learn what works and what doesn't, and you'...

How to Auto-Publish to Blogger with AI and API

Many creators overlook Blogger in favor of modern headless CMS options or self-hosted WordPress sites, but it remains a highly stable, completely free hosting option backed by Google. If you want to manage content pipelines without running into server fees or complex database maintenance, Blogger is a surprisingly powerful choice when paired with its official API. By combining automated AI content drafting, structural ad code injection, and a cron scheduler, you can build a highly resilient automated publishing system. The Core Technical Hurdles Building an automation pipeline like this yourself requires solving three specific technical challenges. First, standard LLM outputs are typically formatted in Markdown, but Blogger requires clean, nested HTML to render correctly within its templates. Second, you cannot simply paste ad unit scripts at the absolute top or bottom of an article; they must be programmatically injected into natural breaks within the text. Finally, you must manage Go...

How to Turn One Podcast Episode into 5 Content Assets

Recording a great conversation or a solo audio episode is highly satisfying, but the post-production distribution loop is where most solo founders and creators quietly give up. Spending three to four hours transcribing, formatting show notes, extracting timestamps, and drafting social posts is exhausting when you are also trying to run a business. Here is a realistic, step-by-step workflow to repurpose your audio efficiently without losing your sanity. The Core Assets You Actually Need Before looking at the process, it helps to simplify the deliverables. You do not need twenty different vertical video clips and a dozen blog post variants to make your episode useful outside of the audio player. For a clean, professional distribution loop, focus on these four core assets: Structured show notes: A brief summary and 3-5 key bulleted takeaways. Chapter timestamps: Essential for player navigation, accessibility, and quick skimming. Text-based social snippets: Two or three sho...

A Realistic Faceless YouTube Shorts Workflow for Solo Founders

We have all seen the social media threads claiming you can build a faceless YouTube empire in three clicks using AI. The reality of building a content pipeline as a busy solo founder is much more mundane. It requires reliable code, strict file formatting, and consistent execution. If you want to build a sustainable pipeline that you can actually maintain alongside your day job or main SaaS project, you need a workflow built on robust engineering, not hype. The Core Architecture of a Faceless Short To make video creation repeatable, you must treat your videos like software components. Instead of opening a heavy video editing GUI every time you want to post, break a short down into its raw programmatic assets: a plain text script, an MP3 voiceover, a vertical background video loop, background music, and a SRT or JSON subtitle file. By separating these layers, you can automate the rendering and uploading stages entirely. Step 1: Scripting and Natural TTS Generation A good short is...