Swizec Teller - a geek with a hatswizec.com

Senior Mindset Book

Get promoted, earn a bigger salary, work for top companies

Senior Engineer Mindset cover
Learn more

    The programming tutorial SEO industry is dead

    You may have noticed it's getting hard to find good programming help online. I've had several engineers say "After 2 hours of Googling I finally looked at the docs and solved my problem in 5 minutes"

    Another option is to ask the nearest expert on your team.

    Experts solve the problem faster than Google or know the exact phrases to search that you didn't think of. Happens to me all the time in new fields 😇

    But not everyone has access to an expert. Until now

    Yes it's not perfect, keep reading :)

    Why Googling for code sucks

    I think Google is struggling because of competing priorities. They try to cater to both the novice and the expert thus failing at both. Search results that are too complex for the novice, yet too naive for the expert.

    Add the flood of non-expert content, the SEO wars, the community sites that block scraping, Gen Z putting lots of technical content in video, casual content going into podcasts ... Google is doing their best. I'm sure it could be worse.

    But!

    The rise of the professional devrel means official docs are fantastic these days. Well written, carefully thought out, easy enough to navigate, and with a good split between tutorials, high-level overviews, and API specs.

    Unfortunately 20 years of Googling has trained programmers not to look at docs. We expect them to suck and they look long and difficult. Maybe there's a random blogpost that answers our question exactly 🤞

    Narrator: there isn't.

    A few weeks ago in a chatroom I frequent someone asked: "Hey what's a good way to learn OpenAI?"

    Swiz: Have you tried the docs?

    Them: Oh yeah good idea!

    2 hours pass

    Wow the docs are wonderful! I learned all the details I needed and gained an understanding of what's going on.

    How the SEO tutorial game works

    This is the SEO game bloggers (yes like I once did) play:

    Maybe there's a random blogpost that answers our question exactly 🤞

    Narrator: there isn't.

    Figure out what people are searching for. Answer those questions exactly. Write the best resource online for that specific question. Make a video, if you can.

    Do this a few hundred times and poppa Google will shower you in sweet sweet organic traffic.

    You write hundreds of almost-the-same articles answering slight variations of similar questions, programmers come to your site, get the answer, and never look back. Few of these will convert to a mailing list or buy a product. They just want to solve $CurrentProblem and don't really want to become experts.

    Like when I search how to do something with the terminal. Yeah I could become an expert in Bash and piping commands together. But I don't wanna 😇

    How ChatGPT beats the SEO tutorial

    After 20 years of the SEO game, the internet is flooded with those low effort formulaic SEO tutorials. They're like recipe sites but less professional.

    Enter ChatGPT – an affordable "expert" that can answer your question on-demand. Create a custom tutorial just for you.

    This weekend I had to copy a bunch of articles from my website repository to a new experiment I'm building with the ChatGPT API. Trying to build a Swiz QnA bot, stay tuned.

    I didn't feel like figuring out the details so I asked ChatGPT on a whim. "how do I find a list of all files that contain a string and copy them to a new location"

    🤯

    ChatGPT not only gave me working code – cp $(grep -rl "string" .) new_folder/ – it wrote an entire tutorial for me! Explained how it works, taught me something new.

    I tried the code and realized that all my files are named index.mdx. When copied to a new folder they become 1 file. Oops.

    So I asked "how do I also rename each file based on the folder it was in" and got an updated tutorial. Again with working code and useful explanations 🤩

    for file in $(grep -rl "string" .);
    do
    	cp "$file" "new_folder/$(dirname "$file" | tr / _)_$(basename "$file")";
    done
    

    Could I cobble that together? Yes, eventually. Do I understand how it works? Yes and that's important.

    The beauty of this interaction is that followup question. Good luck doing that with a random tutorial.

    ChatGPT doesn't always work and that's okay

    High on my success, I then asked ChatGPT how to parse an .mdx file into sections based on subheadings using TypeScript.

    It hallucinated a bunch of APIs that don't exist, wrote code that won't compile, and invented 2 imaginary libraries. 🤣

    And you know what? That reminds me of what user generated content was like 20 years ago when I started programming for the web.

    Who cares if the tutorial is wrong, find another one that covers that hole! There's plenty out there.

    Who cares if ChatGPT gets it wrong, ask a followup question!

    20 years ago greybeards complained about kids these days and how we rely too much on unverified online content instead of listening to experts. Wikipedia was ruining schools and getting banned, senior software engineers scoffed at us for Googling our questions, and we didn't care.

    Okay grandpa, you go back to your dusty books and memorizing whole API specs, just get out of my way as I leverage this internet thing to race past you at breakneck speed.

    Leverage the new tools

    ChatGPT (and friends) is doing the same today.

    Yes it's often wrong. Yes you need to understand what you're doing. Yes you have to ask the right questions. Yes you should verify the output for yourself.

    And you know what? That's good. It helps you learn.

    Understanding beats knowledge as I like to say. 20 years ago we outsourced knowledge to the internet. Now we're outsourcing the research and synthesis part 😍

    This will change things.

    Cheers,
    ~Swizec

    PS: in college we "joked" that the internet is part of our noosphere because unlike our elders, we stopped knowing things and instead learned how to find the right details online when needed. New LLM-based assistants are making that even easier.

    Published on March 28th, 2023 in AI, Opinions, ChatGPT, Mindset

    Did you enjoy this article?

    Continue reading about The programming tutorial SEO industry is dead

    Semantically similar articles hand-picked by GPT-4

    Senior Mindset Book

    Get promoted, earn a bigger salary, work for top companies

    Learn more

    Have a burning question that you think I can answer? Hit me up on twitter and I'll do my best.

    Who am I and who do I help? I'm Swizec Teller and I turn coders into engineers with "Raw and honest from the heart!" writing. No bullshit. Real insights into the career and skills of a modern software engineer.

    Want to become a true senior engineer? Take ownership, have autonomy, and be a force multiplier on your team. The Senior Engineer Mindset ebook can help 👉 swizec.com/senior-mindset. These are the shifts in mindset that unlocked my career.

    Curious about Serverless and the modern backend? Check out Serverless Handbook, for frontend engineers 👉 ServerlessHandbook.dev

    Want to Stop copy pasting D3 examples and create data visualizations of your own? Learn how to build scalable dataviz React components your whole team can understand with React for Data Visualization

    Want to get my best emails on JavaScript, React, Serverless, Fullstack Web, or Indie Hacking? Check out swizec.com/collections

    Did someone amazing share this letter with you? Wonderful! You can sign up for my weekly letters for software engineers on their path to greatness, here: swizec.com/blog

    Want to brush up on your modern JavaScript syntax? Check out my interactive cheatsheet: es6cheatsheet.com

    By the way, just in case no one has told you it yet today: I love and appreciate you for who you are ❤️

    Created by Swizec with ❤️