<![CDATA[Smashing Things Together]]>https://smashingthingstogether.com/https://smashingthingstogether.com/favicon.pngSmashing Things Togetherhttps://smashingthingstogether.com/Ghost 5.25Thu, 15 Dec 2022 14:34:14 GMT60<![CDATA[Designing an Animated, Circular Progress Bar with SVG]]>https://smashingthingstogether.com/designing-a-circular-progress-bar/6266c4660d8106003dd8693eMon, 25 Apr 2022 17:04:32 GMTI needed a beautiful progress bar to demo my new product, a polite email signup form for writers, bloggers, and creators 💁‍♂️, but I'd never built one before.

The Final Result 🤩

Circular Progress Bar FTW! 🥳

This is the final demo of the circular SVG progress bar I made after a lot of research and trial and error!

And here's a Codepen demo with all the code.

Now, let's talk about the full story — back from the beginning when I thought a vertical progress bar might be the solution. 😒

Attempt #1 (Vertical Progress Bar)

The original idea was just to show a simple vertical progress bar inspired by a phone's battery status.

But since this demo is going to be one of the first impressions get of the product, I wanted the design to be really beautiful.

Attempt #2 (Real-world-inspired Progress Bars)

For the next iteration of the design, I went in a more creative direction that would give the user a real-world feel of what each progress bar meant.

  • The scrolling indicator would look & feel like scrolling the actual page.
  • The timing indicator would look like an actual clock.

I decided against these for one simple reason: they were unfamiliar UI elements, so the user would need (precious) time to understand them. Whereas I wanted them to intuitively understand the demo right away.

Attempt #3 (Simple Circular Progress Bars)

The next attempt was my favorite by far.

I've always liked circular progress bars: they're beautiful, they're intuitive, and they convey so much information in a very compact amount of space.

And the ones I designed (after watching a quick Figma tutorial) were simple, while also feeling unique and cool — like a futuristic smartwatch ⌚️

Okay, but how do I make this? 🧐

I always prefer to design before coding because then I find the right solution and not the easiest-to-implement solution. But that approach sometimes leaves me with difficult-to-implement designs that I love.

My first stop was CSS.

I love CSS — it's easy to work with, the animations are buttery-smooth, and you can implement a lot of complex designs with just a little extra thought.

My research started off strong. I found a tool that lets you generate circles with dashed borders by plugging in a few simple options.

And then I found a great tutorial about how to make a circular progress bar in CSS.

All I needed to do was put these two concepts together somehow and I'd be able to create my design with pure HTML & CSS.

But something felt off... there were a lot of hacks to get this working:

  • The animation was actually just two rectangles rotating around inside of a circle, so I'd have to write some code to get them to represent just on percentage number (1-100)
  • The animation was defined in CSS, so it couldn't be controlled from JS to represent an actual progress number unless I coded it in JS
  • The dashed border was defined as an SVG background image instead of being natively implemented in CSS

Despite all of this, I was prepared to go ahead with this solution.

But then I saw these comments on a Dev.to article:

And it clicked 😊👌

An SVG!

  • The whole animation is just circles
  • Hand coding circles in an SVG should be relatively simple!
  • In the second comment, "Bryndille1701" even mentioned that Twitter already does this with their character counter

Hand-coding an SVG

The first thing I did was download the code for Twitter's circular progress indicator directly off of Twitter.com:

It's pretty simple, there's only a couple parts to figure out:

  • They draw two circles and have the blue progress circle overlap the gray background circle
  • The blue progress circle's length is determined by stroke-dashoffset: 12.29014; stroke-dasharray: 56.5487;, where stroke-dashoffset is the empty space that's not filled up with blue and stroke-dasharray is the circumference of the circle
  • They rotate the entire SVG with transform: rotate(-90deg) to get the blue progress bar to star from the top

In order to get my own design working, I just needed to play around with the circles until I could draw:

  • The gray dashed circle in the background
  • The green foreground progress circle
  • The inner and outer black lines that act as their borders

It was actually pretty simple.

The gray dashed circle looks like this:

<circle cx="50%" cy="50%" fill="none" stroke-width="20" r="40" stroke="#D4D4D8" stroke-dasharray="1.4137,1.4137"></circle>

The secret here is just to have a large stroke-width and use a stroke-dasharray that's small and won't cause to dashes to overlap each other (I used a factor of the circumference to pull this off).

The green foreground circle looks like this:

<circle class="progress-bar" cx="50%" cy="50%" fill="none" stroke-width="20" r="40" stroke="#19C558" style="stroke-dashoffset: 251.3274; stroke-dasharray: 251.3274;"></circle>

This one was a little harder, but not by much. It has the same width and radius as the gray circle. But we do need to define its stroke-dashoffset and stroke-dasharray.

The stroke-dasharray needs to be the circumference of the circle, we need to do a little math:

2 * 3.14159265359 (π) * radius (40)

Which gives us: 251.3274! 🎉

The inner and outer black stroke circles were easy in comparison. I just played with their radius until they looked like the design:

<circle cx="50%" cy="50%" fill="none" stroke-width="1.5" r="27.5" stroke="#27272A"></circle>
<circle cx="50%" cy="50%" fill="none" stroke-width="1.5" r="52.5" stroke="#27272A"></circle>

Adding a Progress Percentage

In the past, I've found working with text inside of SVGs to be a pain (it renders weirdly in some browsers and on some machines).

So for the progress percentage, I decided to code that up in raw HTML and just layer it on top of the SVG.

<div class="progress-text-container">
  <div class="progress-text">
   <span class="progress-text-inner">0</span><span class="progress-text-percent">%</span>
  </div>
</div>

Drawing a Success State

The last thing to do was to show what happens when the progress percentage reaches 100%.

This was actually a lot of fun. It was hard because the checkmark would be rotated 90 degrees just like the rest of the SVG, so I needed to draw it sideways, but other than that it was just a big green circle with a simple polyline (what you use in SVG when you want a line that bends).

<circle cx="50%" cy="50%" fill="#19C558" r="50"></circle>
<polyline points="52 74, 65 60, 40 36" stroke="#fff" fill="none" stroke-width="10" />

Demo (Putting It All Together)

Then I just needed to code up the JS to animate the progress bar and change the progress text — and everything worked!

Recommended reading: "How to Code SVG Icons by Hand" (an amazingly helpful guide that clarified viewbox, polyline, and showed me how hand-coding SVGs isn't that hard!)

]]>
<![CDATA[High-Quality Audio Blog Posts With Google's Text-to-Speech]]>https://smashingthingstogether.com/how-to-generate-audio-versions-of-your-blog-posts/6217e60e90964a004d42461aTue, 01 Mar 2022 14:50:00 GMTIn this post, I'll cover how to use Google Cloud's Text-to-Voice API to generate audio (MP3) versions of your blog posts.

I like having audio versions of my posts because they're a lot easier to consume for people. Someone might be going for a walk or doing a repetitive task — but if they can listen instead of reading, they can still engage with the content.

You can use your generated audio:

  • To make a podcast.
  • To send to a friend.
  • To post to YouTube.

I'll cover the basics of generating the audio, as well as some issues and improvements you'll want to address to make your audio the best it can be.

Initial Setup

Here's the full tutorial, outlined by Google:

Quickstart: Create audio from text by using the command line.

👆 This covers the high-level steps, but doesn't go into detail about what you need to do to get started. For those early steps, you'll need to finish this guide first:

Quickstart: Before You Begin.

Check these off as you go through:

  1. Create a new Google Cloud project
  2. Enable billing for that project
  3. Enable text-to-speech for that project
  4. Create a service account (I made mine an "owner")
  5. Generate keys for that service account
  6. Download the credentials as a JSON file
  7. Store the credentials JSON file somewhere on your computer
  8. Set the GOOGLE_APPLICATION_CREDENTIALS environment variable, so the gcloud command line tool knows how to access your credentials

Last of all, install the gcloud command line tool if you haven't already and connect your google account by running the command gcloud init.

Now you're done with the initial steps! We're ready to dig in!

Generating Audio

Here's where the fun starts.

Continue following the steps from: Quickstart: Create audio from text by using the command line.

  1. Create a request.json file with the example content Google provides.
  2. Run the curl command to ping their API.

The request.json file looks something like this:

{
  "input":{
    "text":"Hello world!"
  },
  "voice":{
    "languageCode":"en-us",
    "name":"en-US-Wavenet-J",
    "ssmlGender":"MALE"
  },
  "audioConfig":{
    "audioEncoding":"MP3"
  }
}

You should get back a base64 string inside a JSON object. I usually save this to a file called audio-data.json.

You can decode the base64 string pretty easily into an MP3 — and voila! — then you'll have an MP3 you can use for your blog!

Running Into Trouble Using Custom Text

So far we can:

  1. Send some text to Google.
  2. They'll send you back a base64-encoded string.
  3. You can decode this string into an MP3.

⛔️ But when you try to use your own text, you'll run into a few issues:

  1. The text-to-speech API won't convert text longer than 5,000 characters. 😱
  2. You can't send text with double quotes in it (e.g. 👉"👈) unless you format your text correctly first.
  3. You'll probably want to use a different voice than the one they provide in the example.

Fixing Problem #1: The 5,000 Character Limit

Fixing this is relatively easy: we'll just need to split our text into parts that are shorter than 5,000 characters and then stitch them back together.

So, select the first 4,900 characters of your text and put that into your request.json file.

Then, run the API command and you can get the audio for just that part.

Continue with the next 4,900 characters of your text to generate another MP3.

You can name them like this: blog-post-1.mp3, blog-post-2.mp3, blog-post-3.mp3

Then, install the amazing ffmpeg library (get it here). This is an amazing tool that lets you convert/edit/remix all kinds of media files, including MP3s, MP4s, GIFs, and anything else you can imagine.

Run this command to stitch all your MP3s into one (make sure you replace the MP3 names with however you named your files):

ffmpeg -i "concat:blog-post-1.mp3|blog-post-2.mp3|blog-post-3.mp3" -acodec copy final-blog-post.mp3

This command will output a file called final-blog-post.mp3 that will be a combination of all the MP3s you've generated!

The final audio will be seamless — you won't even be able to notice they were separate files that were stitched together! 🤯

Fixing Problem #2: Using Text With Double Quotes

This problem is much easier to fix than problem #1:

  1. Get a text editor that can Find and Replace text
  2. Find all double quotes (i.e. 👉"👈) and replace them with a double quote preceded by a backslash (i.e. 👉\"👈)

After you do that, you'll be able to paste your text into the right field in the request.json file and it will work!

Fixing Problem #3: Using a Different Voice

You can browse all of the Text-to-Speech voices here: Supported voices.

I highly recommend choosing a voice marked as "Wavenet" because those voices tend to be richer in quality and speak with more nuance.

After you preview a few and find one you like, just replace the options in your request.json file with the voice options you chose.

I personally chose these options and put them under the "voice" option:

"languageCode":"en-us",
"name":"en-US-Wavenet-J",
"ssmlGender":"MALE"

Some final suggestions

  1. Remove the headlines from your text before you generate your MP3s — headlines work fine for written text, but they usually don't read very well.
  2. Add periods after each line of your text (even if it's a line from a list of items) — this will make the voice pause briefly before reading the next line.
  3. Listen to your generated audio all the way through before sharing it, so you can catch obvious mistakes.

Conclusion

Once you've done the initial setup steps and get Google Cloud configured, it's actually pretty easy to do the other steps for every new blog post.

  1. Splitting long blog posts into smaller ones takes 30 seconds.
  2. Replacing all the double quotes takes 5 seconds.
  3. Running the API calls and decoding the base64 strings takes 30 seconds.
  4. Combining the separate MP3s into a final MP3 takes 10 seconds.

So, for about 1 minute of work, you get an audio version of your blog post that you can upload to your podcast host of choice — and give your readers an easy way to engage with your content on the go! 🥳

]]>
<![CDATA[How to do Marketing as an Indie Hacker: Be Yourself]]>https://smashingthingstogether.com/marketing-as-an-indie-hacker-be-yourself/6217c36290964a004d4244ecThu, 24 Feb 2022 20:06:44 GMT

One of my biggest challenges with my indie business, Remake, is getting the word out. I created something I believe in, but telling people about it is more difficult.

After struggling with this for a while, I purchased Make + Shine, which came with a 1 hour strategy session with Anne-Laure Le Cunff (an entrepreneur who uses principles from neuroscience to help people lead happier lives).

In this single strategy session, Anne-Laure’s candid and compassionate advice helped me resolve a lot of my fears and confusion around marketing and put me on the path to building in public with more confidence.

In this post, I’ll talk about how to magnify your output as a solo founder, while nurturing your inner drive to create at the same time.

TLDR:

  • To scale faster and be happier, choose a single audience and focus exclusively on them.
  • Talk about what your mission is about or you'll fail to build a community around your product.
  • If you’re having trouble making a decision, talk to users.

Focus is the key ingredient to growing fast

I've always believed influencers had a secret. I thought they must post 3 times a day to every social network and have at least 10 blog posts being developed at any one time.

All while managing to stay healthy and sane outside of work.

I couldn’t have been more wrong. Anne-Laure told me:

  1. "I only work on one blog post at a time."
  2. "I only post to 2 social networks — and usually only 1."

I was blown away. Here I was, putting together a list of 30 places I wanted to post my articles and trying to develop dozens of pieces of content at the same time...

No wonder I felt overwhelmed and exhausted.

“But I won’t grow fast enough!” I said.

“If I don’t post everywhere, my content won’t do as well as it could have. Shouldn’t I be posting as often as possible to as many places as possible? Or I don't know — maybe that will come off as spammy?”

Anne-Laure’s response was simple:

“People are turned off by people who are overly-engaged, overly-networked, and overly-invested. It’s better to be genuine and nurture authentic relationships than to create thousands of articles and modify them for different audiences.”

It’s what I knew instinctively, but I was obsessed with my goal of getting more reach. I wasn’t considering how inauthentic it come off posting everywhere.

Slow down, focus, be consistent

Anne-Laure advised me to focus on just one social network and nurture genuine, caring relationships there. This made sense to me because it just felt more comfortable.

She told me: “Don’t treat it like an assembly line you’re pushing content through in exchange for likes. Instead, treat it like you’re talking to a bunch of human beings you care about, who you genuinely want to help.

“That way, you’ll create a community of friends instead of purely transactional relationships. And the content you post will be meaningful. It will address the problems you and your friends are going through together instead of addressing the hard-to-pin-down, high-level problems of some ‘market segment’.

“If you post updates regularly and they're high-quality and meant specifically for the people you’re talking to, people will be interested. And you'll ‘build a brand’ on that network. It’s all about helping people consistently.

“As a huge bonus: you’ll be less worn out because you’re focused on just one social network and just one group of friends. It’s much less overwhelming that way.

“Some people get frustrated with this advice. Why should they have to engage one-on-one with people when they could scale much faster by copying-and-pasting their content everywhere? But if you don't want to come off as spammy and get ignored, you need to address specific problems and speak to specific people.”

You don’t need big media

Now that I understood the strategy behind building a close-knit audience, I asked Anne-Laure about which news websites and high-profile publications I should reach out to. She explained that going after big publications right away wasn’t the best idea.

"You want to start off with small indie communities who want to support you and be part of your journey. Big publications are going to Google you, so you'll want to make sure you're established before they do.

“If you seem like a solo founder who's struggling, instead of someone who's established in the market, they won't pay attention to you.

“The audiences of TechCrunch and Wired are expecting a perfect product. They want something that's finished and ready to go. They won't give you second chances. Whereas, community sites like Indie Hackers, Makerlog, and Product Hunt will relish helping you find bugs and fix issues."

I really liked this advice because my product is still in the early stages and far from perfect. I knew exposure to a wider audience probably wouldn’t be the best thing for it right now. I realized my dreams of it growing fast and taking over the world could wait, while I improved it with feedback from small communities.

Creating a product that can handle widespread adoption

Anne-Laure also mentioned another really important thing:

"You want your conversion rate (i.e. the number of people that actually sign up after visiting your site) to be high before you get featured in a mainstream publication. Your sign up flow should be a well-oiled machine.

“You should know for sure: if I get a thousand new visitors tomorrow, a fair number of them will convert and find success using my product.

“Without that confidence, investing in getting featured in a major publication isn’t worth it, especially because of how risky bad press is.

“And even once you do decide to go big, it's a lot of work: you need to come up with a compelling story around yourself, find the right journalist to pitch to, hope your story resonates with them, hope they want to cover you... and, even if you have all this, it won’t matter if the final story doesn’t resonate with your audience."

You choose your audience and then they choose you

Have you ever clicked the “Send” button on an email to 440 people? It’s terrifying.

I had 440 newsletter subscribers when I talked to Anne-Laure. But I hadn't sent out a single email…

"Why not?" she asked.

The big issue that was holding me back was: “UNSUBSCRIBE.” That word stung me with a harsh truth: I could spend hours crafting the perfect email only to get a 30% unsubscribe rate. It was difficult to stomach.

Anne-Laure’s solution made so much sense: “If someone unsubscribes, that's a good thing. It means the quality of your list is going up! The people who are disengaged with what you're saying are falling off. And the people who enjoy your content and enjoy you as a person are sticking around.”

She said that she used to feel really bad about losing 200 subscribers every month — pretty much every time she sent out a newsletter — before she realized that the people who were sticking around were the people she really wanted. They were interested, engaged, supportive, and much more likely to purchase things from her when she offered them.

“That's the kind of audience you want,” she told me. “You just need to make sure you're staying aligned with what you believe in and being yourself. Everything else will work itself out.”

The more I let my personality shine through, the better! The people that leave wouldn’t have been around for long anyways!

It’s just the perspective I’d been looking for. It freed me from the weight of fear and allowed me to focus on more important things.

When you’re afraid of letting someone down, it’s time to talk!

The second thing that was holding me back from sending my newsletter was on the more technical side.

A lot of my subscribers had signed up for a 7-day tutorial series which they'd already completed. I didn’t want to send them a monthly newsletter update if that’s not what they signed up for.

Again, Anne-Laure’s response was genius: “Ask them.”

And again, I was knocked on my butt. Such a simple answer and yet I hadn’t thought of it! To me, the choice was binary:

  1. Never send the tutorial subscribers another email, or
  2. Break our implicit agreement and sign them up for my newsletter even though they didn’t ask to be on it.

By following Anne-Laure’s advice, all I needed to do was write an email like this:


Here are the options for me getting in touch with you:

  1. Only tutorials.
  2. Only major updates to Remake, about once a month.
  3. Only a quarterly newsletter.

Click the one you want! If you don't choose one, I'm going to start sending you a quarterly newsletter.

And, finally, click here if you don't want to receive any more emails from me ever.


Me and my subscribers would get the best of both worlds — I’d know exactly what they wanted and they'd only receive what they wanted.

“Are you building this for someone?”

On the last part of the call, Anne-Laure and I discussed product development. I’d been afraid to discuss this, although I didn’t realize it at the time.

I explained that sometimes I feel genuinely confused. I'll get an intuition that I should improve the core of my product to make it easier to use. And then the next day, I'll feel like the most pressing task is to make an intro video that showcases all of my product's awesome features.

“Where do I start?” I asked.

The first thing that Anne-Laure told me was that she didn't know. But then she asked me a question: "Have you been hearing from your users that they need a particular feature or tutorial?"

This question surprised me because I’m always preaching about how important it is to talk to your users and listen deeply to what they're saying. That’s the only way you can build something people want.

But not only had I not been checking in with them regularly, I hadn’t heard from them about needing a different version of my product or a new video tutorial. Back then, I was live-streaming development on my product every day, but I hadn’t even asked them about what they wanted.

This is a dire mistake for a small, one person team.

How to start a relationship

Every business starts with a single relationship — your first potential customer.

Then you move on to your second potential customer. It might not be until the hundredth potential customer that you get someone who purchases your product.

But it all starts with that first relationship. You need to start somewhere.

Anne-Laure’s advice to me was simple: Send out an email asking for help with deciding on what to work on.

She said: "You can even just ask to have a quick Zoom call with a few of them to discuss your product for an hour. Maybe only 2 of 400 people will respond. And that's great!"

She continued: "Just make sure you offer them something of value first. Include a tutorial or an article or something you know they'll like before you present your ask. Then, at the end of the email, mention you need help with something. That way your audience feels like they're getting something positive in return."

That’s all of business in a nutshell right there: Give something of value and get something of value in return.

The road is easier once you get that first customer

Best wishes to all my fellow indie makers out there. I hope this post (and Anne-Laure's fantastic advice) helps guide you in the right direction.

Just remember: it all starts with that first customer and that first relationship. A real, human relationship. There’s no way around it.

Don’t worry about scaling up your marketing or sales before they become a problem. First, understand how to connect with each customers one-on-one and provide genuine value by solving actual problems they have.

I know it seems like simple advice, but it's very easy to forget when you're building something you love. You can get so caught up in building your idea that you lose track of who it's for. Find regular intervals to connect back with your audience in human ways — and just be yourself.

]]>
<![CDATA[You Need to Share the Unstoppable Optimism of Your New Idea]]>https://smashingthingstogether.com/you-need-to-share-the-unstoppable-optimism-of-a-new-idea/61e99cd82a57c9003b5392a5Fri, 21 Jan 2022 16:33:39 GMTThere are two people in a room.

One of them has a good idea and tells the other one about it.

A conversation starts.

The idea changes and develops into something new.

It grows and expands.

The process excites both of them.

✨ This is how ideas come to life. ✨


The modern way to build a business is to bring the public into this process of building it.

Why? Because doing business is the act of exchanging value. By doing this exchange in public, you provide the opportunity for everyone to get excited by its development, support it, and benefit from it.

How? Tell people about your idea early and let them help you develop it, so everyone can learn and help each other along the way. Ask for feedback at every step and let this feedback guide you. Before long, a small community will form.

Get started → The the quickest way to get something you love out into the world is a minimum viable launch. It can be a tweet, a video, a demo — anything that captures what makes the idea exciting and lets other people share in it.


Why is the way businesses are being built changing from being behind closed doors to being in public?

Would you rather use a blog post headline that was voted as the best headline by 100 people or take a shot in the dark and guess? The internet can give you a firm and reliable foundation on which to build a business, one step at a time, if you're willing to open yourself up to feedback.

On the internet, we have the benefit of getting instant feedback on our work from every corner of the globe at any moment of the day. So it makes sense to take advantage of this new reality and use this feedback to develop our ideas and inform our business decisions.

  • Cars + the internet = Uber
  • Houses + the internet = AirBnB
  • Startups + the internet = building in public

It’s a natural evolution of business that happens when we decide to start letting people into a corner of our lives that we considered private before.

The alternative is simply worse:

  • Working with less excitement
  • Less community involvement
  • Fewer collaborators
  • Fewer perspectives
  • Fewer ideas in the mix

By pursuing an idea in private, you’re bound to work on problems that other people have solved already or ones they have simple workarounds for.


"If I launch too early, competitors will steal my idea (if it's good) or it will make me look bad (if it's bad)."

When you share what you're excited about, you have a chance to inspire the same excitement in others, which can help you build a community.

Get used to looking bad temporarily. It's a good thing. As long as you improve, people will cheer you on and help you out.

Once you have a community — or even a small group of online friends:

  • You can run ideas by them: drafts of blog posts, headlines, landing pages, prototypes. You'll get feedback early, allowing you to improve your idea in key ways before sharing it with a wider audience. This will make it much more likely to succeed.
  • When you do a minimum viable launch (e.g. a blog post, a PDF guide, a prototype), your community will stand behind you, excited by the fact that they helped you create it. They’ll comment and vote on the launch and be supportive of your successes.
  • When there’s a problem with something you publish, strangers rarely tell you about it. But, if you have some kind a community, they’ll be the first ones to tell you about a spelling mistake or your payment form being broken.

People who publish early will consistently outperform and out-scale the ones who don’t. They’ll be able to reach further into global networks, learn faster from these networks, have access to better tools crowdsourced by these networks.

They'll use all this to improve their ideas faster and get to product-market fit before anyone else has a chance to keep up.

Some people will steal your idea

Some people will see the excitement your idea generates and want some of that excitement for themselves. They might even think they can execute on the idea better than you can.

Not only will you have the early advantage by launching your idea early, but you actually don't need a huge community to build something valuable. As long as your use that head start to form a tight-knit community around your idea, you’ll be able to weather almost any storm and slowly build something of value.

The copycats might burn out from lack of feedback or lack of money (building a business is hard, after all). Or they might get shamed by the market for copying your idea.

Or, the best case in my opinion, they might end up helping you by expanding the market's awareness of your general use-case and developing ideas you never would have thought of that you can now learn from and implement better than them.

In the end, all businesses need community to survive. So putting the idea out there early is never a bad idea. The sooner you start gathering interest and inspiring other people, the faster you can make something good.

An idea kept secret will die a slow death

An idea kept secret:

  • Will be developed without sharing its ups and downs, the problems it’s faced and the solutions that helped it overcome them. These key learnings and moments of excitement will help your idea alone, when they could be helping and nurturing a wider ecosystem.
  • Will only be “good” in your own head. There’s no way of telling if it’s actually a good idea before showing it to people.
  • Will gain no following and create no excitement in the market before you start publishing your thoughts about it. You’ll be risking everything on a single launch.
  • Will have no one but you and your small team to solve problems for it and help it survive in the wider marketplace.

You need to share your idea today — while you still feel that initial, bubbling excitement around it!

Early on, you have a boundless, bubbling energy around your idea when you think about how much it could change the world.

Why keep that bubbling energy private, when by sharing it you have the chance to ignite the same energy in others and multiply its effects thousandfold.

The longer you keep your idea secret, the further away you’ll get from the bubbling excitement of the initial idea. Before long, you’ll get caught up in business documents and solving day-to-day issues. You’ll start to get tired and stressed out, and find it harder to remember why you started working on the idea in the first place.

Don’t miss the opportunity to share your idea while it still inspires boundless excitement in you!

It’s this emotional charge, endless optimism, and the feeling of untapped potential that fuels the development of every business and inspires every community. It’s your most valuable asset in the early days and you don't want it to go to waste!

You need to share it.

]]>
<![CDATA[What is a Minimum Viable Launch?]]>You have an idea for a product — an ebook, a course, a game, a SaaS app — that you're really excited about.

You're so excited, you're willing to dedicate the next few months of your life to building it.

You can't

]]>
https://smashingthingstogether.com/what-is-a-minimum-viable-launch/61e99da62a57c9003b5392bbThu, 20 Jan 2022 18:27:19 GMTYou have an idea for a product — an ebook, a course, a game, a SaaS app — that you're really excited about.

You're so excited, you're willing to dedicate the next few months of your life to building it.

You can't wait to get started! 🚀

But instead of sitting down to write/record/code right away — like you did last time — you think about what you really want out of this experience.

  • More than a few hundred people checking it out
  • More than a couple of people purchasing it
  • A lot of feedback from the community to keep you motivated and focused while you develop it

What do you do that you didn't do last time?

  • You post a tweet responding to someone else who once worked on a similar idea, asking them if they think your idea is good
  • You join a small community of like-minded creators and ask them what they think of your plans
  • You send an email to friends and family telling them what you're thinking about working on and why

These are all examples of Minimum Viable Launches.

  1. You put an idea out there
  2. You see what people think
  3. Then you get to work

If you get a good response, you know you're onto something. You can do a slightly bigger launch the next time around —

  • A Twitter poll
  • A full blog post
  • A small landing page

...maybe even a quick prototype! 👾...💎

That's the whole idea behind a Minimum Viable Launch: you don't start with the finished product. You start with the minimum amount you need to test if an idea is any good — and then build on top of that.

So, what do you need to do a minimum viable launch?

  • A headline
  • An image or video
  • A quick description of why it's exciting

That's it!

You can launch with a Twitter post or a blog post or in a quick message in a Discord community with just these three things.

What will this approach get you?

  • You'll get feedback early in a small community before launching to bigger communities, guaranteeing it'll be improved before getting wider exposure
  • You'll know if your headline is good before you build an entire homepage or article around it
  • You won't launch to no one on your big launch day! 🎉

A real-world example

3 weeks ago, I sent an email to my friends about an idea I had for simple animation app. One of them commented about how cool it was.

I used the next few days to throw together a rough prototype and posted about it on Twitter (and a small Slack community I'm a part of).

I got lots of bug reports and feature requests: it didn't work on mobile, it wasn't clear how to use it, and it would be cool if it could do more (like resetting the animation).

So, I improved it and posted about it in those communities again — again, getting positive feedback.

So I decided it was ready... I then posted it to Hacker News, where it stayed on the front page all day and a total of 12,000 tried it out! 🎉😍

Animatize's public traffic stats from Plausible

The advantages of this step-by-step approach to launching:

  • By sending the idea to friends first, I got to see the idea through their eyes and understand why they thought it was cool, which gave me more confidence while building out the prototype
  • By posting it to Twitter and other communities, among friends and fellow creatives, I got to fix a bunch of early issues before releasing it to a wider audience

I think it only did so well on Hacker News because I took small steps... I took the time to make sure it worked well and made sense to people in these smaller communities first.

And the whole process only took one week — it was a cycle of constant feedback and improvements that felt magical to be a part of.

TLDR:

Build your new product idea — building is fun!

But make sure people know about your idea ahead of its big launch by releasing smaller mini-launches, like tweets, blog posts, and prototypes.

That way, you'll have an audience who can give you feedback to make it the best product it can be — before the big launch day!

]]>
<![CDATA[Taking on Psychological Debt by Over-Promising the Future]]>We're in a debt bubble right now, led by the Federal Reserve keeping interest rates so low.

When rates are low, inflation goes up, which means the actual value of your debt will go down over time.

That's why so many people are borrowing right now

]]>
https://smashingthingstogether.com/taking-on-psychological-debt-by-over-promising-the-future/61e7088ad279d0003ba7e5d3Tue, 18 Jan 2022 18:57:00 GMTWe're in a debt bubble right now, led by the Federal Reserve keeping interest rates so low.

When rates are low, inflation goes up, which means the actual value of your debt will go down over time.

That's why so many people are borrowing right now and stuffing the money into non-cash assets with higher returns.

If the interest on your debt minus the interest of inflation is close enough to zero, you can invest in almost any money-making endeavor and be better off than keeping the money in your bank account.

And so stocks go brrrr, crypto goes brrrr, and we get a massive bubble.

But I don't want to talk only about monetary debt.

I want to talk about other types of debt too.

What about mental health debt? I believe we're in a crisis right now.

I keep telling myself: "I'll take a week off in a few months… or a few years. I just need to launch this one side project.... or maybe it's this next side project. Eventually, I'll hit it big — I'll find something the market wants and finally be free from 9-5 corporate servitude!"

And so instead of letting my mind be bored for a minute and have my body return to equilibrium, I keep pushing forward — to that next project… and then the next.

That's mental health debt right there.

But there's other types of debt.

Like over-promising.

And this is where my favorite type of company comes in: startups.

Startups are beautiful because they're like little bubbles of buzzing energy, working apart from the norm, trying to find a shortcut to compete with the big companies.

They have several ways of taking on debt in order to make their journey smoother: mental health debt, VC funding debt (otherwise known as autonomy debt), actual debt through financing, and over-promising debt.

Over-promising debt is the thing I really want to focus on because you see it everywhere if you work in startups.

“Today” does not exist in a startup: it's all about where we'll be tomorrow, the day after tomorrow, and the day after that.

And you never arrive. Have you noticed? It's an infinite treadmill of building features and bringing on customers because it's all about the speed at which you get things done — not the result. (In fact, that's how startups are valued: based on their growth rate and the likelihood they'll be able to maintain or accelerate that growth rate into the future).

You can have a very good month at a startup — big new client, record number of sales, 5 great new hires — and there'll be no celebration, no pausing to slow down, no idea you've even accomplished anything at all.

Because so much has changed already.

And tomorrow looks so much BIGGER, so much more EXCITING, and so much CLOSER than you ever imagined it could be.

Today just can't compete.

We saw this play out with the disaster that was Theranos — they over-promised and then over-promised ON TOP OF those over-promises, until one day, the whole house of cards collapsed.

So many companies do this, especially startups. It's normal.

And the executive team backs it up because it's the only way to get BOTH your customers excited and over-paying and your employees excited and over-working.

The employees don't even notice they're being drained because the excitement of tomorrow looks so glamorous.

And the customers don't notice because they assume any problems they run into are their fault and/or they're unable to admit the shame that they were scammed. They'd rather buy into the myth that the startup does what it promises (contrary to their experience) than admit that they were wrong.

So that's why over-promising works from a business standpoint.

I once worked at a startup that overworked all its employees, had an app that hardly worked (except when the CEO was giving you the initial demo), had no users that actually logged into the app, but had an excellent Sales team! We were able to bring in more customers than we lost every month... so investors valued us based on our "great growth rate".

Who can stop a business that grows by lying to prospective customers about what they’re buying into — and retains those customers by promising big changes are just around the corner?

What about regulators? What if a company isn’t just negligent, but puts a customer in danger? What if someone gets hurt?

Well, we see this with Tesla right now. They sell a product called FSD (Full Self-Driving) and people buy into the promise of it big time. They'll admit on forums that it's not 100% ready for the road and has caused a few crashes — but in the same breath say that Tesla will be a two trillion dollars by the end of next year, more than every other major car company combined.

It's absurd.

And then I realized something about why this works. And why it affects tech startups more than any other type of company.

I think when the internet came along, it split the world in half — one half of the world stayed in regular time and the other half accelerated at the speed of instant communication.

And that opened up a gap.

A gap that can be exploited to take out debt with over-promises, create massive return for investors, and be closed up again by overworking employees to achieve the vision — before regulators catch on.

And I believe everyone (especially startups) is doing this.

It's made possible because tech startups live in the world of instant communication and live-updating reality.

And regulators, law-makers, politicians, and even journalists mostly live in the world of ordinary time.

What happens is this:

  • You claim reality is one way.
  • It is obviously not the case, but perhaps a few years out will be.
  • As long as you outpace ordinary time, you win.
  • If the regulators and investigators in ordinary time ever catch up to you — by that point you've filled in the holes in your technology and actually made the reality you were promising.
  • Or, you're close enough to filling in the holes that it doesn't matter: they can see you're close enough that they only give you a slap on the wrist for lying a bit.
  • They'll go back to their jobs and by the time they realize you've pulled the wool over their eyes, they'll be on to the next big thing.

Let's talk through a simple example:

  1. A company promises a truly unbelievable technical breakthrough
  2. Investors hop on
  3. The best talent in the world is hired based on the excitement around the idea
  4. A beta of the technology is released that doesn't come close to the original promise, but shows things moving in the right direction
  5. The markets, which doesn't fully understand how bad the technology really is, rewards the company for making "huge steps" towards the original goal
  6. The team gets excited and recruits more people
  7. Customers buy the early product based on the overall atmosphere of excitement

Do you see how even at this early stage, so much over-promising debt has already been taken on?

A whole world of dreams is built on top of this one early beta product that hardly works, but because things are heading in "the right direction", the company is rewarded massively.

The next steps are even crazier:

8. The company causes some issues for customers

9. Most customers blame themselves and the company doesn't care about them

10. Some customers blame the company and the company takes care of this with "excellent customer support": full refunds, settlements, recalls, whatever it takes.

Everything is done in the service of keeping the idea of the promise alive. It's not about reality. It's not about really helping people. It’s not about actually providing value. It's about creating the illusion of MASSIVE value at some point in the future.

As long as the illusion of the promise is preserved, everything is fine.

And then this happens:

11. Company causes some real issues with real people's lives OR the company fucks up in a public way that can't be ignored

12. Regulators, lawmakers, and the media jump into the mix and start researching the company and its practices

But the company is a moving target — moving at the speed of information.

As long as they can outpace the media and the regulators by telling a different story and developing just enough technology to make it look like a plausible explanation, they'll be fine.

Tesla has mastered this: they ship same-day software updates to their cars over the internet, fixing major problems like the self-driving system, the braking system, and the heating system before regulators even hear about them.

The news cycle moves on and people don’t care anymore.

As long as reality never catches up with the lie, they're safe. One step ahead.

It's the same debt that funds Kickstarter projects and Cryptocurrencies.

Are they good right now? Even fierce adherents will tell you: No.

But the promise of what they'll become once they're ready looks amazing.

And what are we buying in the meantime?

A future that doesn't exist.

But sometimes, I guess it works out. Sometimes you need the risk of speculation and a willingness to leverage the present for the future in order to get truly fabulous returns and results.

Because really, what does this kind of debt allow us to do?

It allows founders and startups to go out on a limb and really shoot for the moon.

Not only an electric vehicle that's beautifully designed, but one that has full self-driving capabilities... really soon!

It's the same promise Elon Musk makes over and over again: We have groundbreaking tech that's perpetually just a short time away.

But when people are able to use this debt well and actually execute... well, you get something that can truly change the world.

]]>
<![CDATA[“Building in Public” as a Marketing Strategy]]>As a developer I never really thought much about marketing, but as an indie maker I learned that the "build it and they will come" myth is just that. A myth.

I learned that believing so much in something that you've poured your mind, heart and

]]>
https://smashingthingstogether.com/marketing-as-an-indie-hacker-by-building-in-public/61e1e2ee09aec8003b7a20feFri, 14 Jan 2022 21:48:40 GMTAs a developer I never really thought much about marketing, but as an indie maker I learned that the "build it and they will come" myth is just that. A myth.

I learned that believing so much in something that you've poured your mind, heart and soul into making, but that no one gets to ever see, let alone use, can become an exhausting uphill battle that no one wants to be in.

So marketing is important. Maybe just as important as building a great product. Or maybe even more so.

But where do you start?

Especially as a one person team who's in charge of everything.. and now of marketing too.

The most important thing is to not spread yourself too thin. Pick one strategy to test at a time and commit to it. Pick one platform/audience and commit to them. Have a newsletter and funnel people to it.

This is important because if you experiment with too many strategies at the same time, you'll quickly run out of time for development.

Choosing a marketing strategy

There are a lot of marketing strategies out there, but as a dev, I'd highly recommend the "build in public" strategy. It's perfect for indie makers because it means a lot of your effort doing development is duplicated as marketing.

Newsletters are the best way to grow

Building a newsletter in the process, is the most reliable way of contacting people en mass these days. Twitter/Facebook/etc. all have algorithms that can filter you out. When you really need to tell your audience something, email is a reliable way of connecting.

Start to build in public within a community

Here's how it works:

1. Sign up for Twitter/Weekend Club/MegaMaker/Pioneer/WIP.chat or another community that encourages building in public

2. Post what you're working on before, during, and after it's done, sharing your problems, learnings, and emotions along the way

3. Ask for advice and feedback when you need it

This will let people get involved in your product's development and give them a reason to cheer you on when you launch your product or get a new customer.

My most popular tweet of the past year (other than my launch post) was getting my first customer. It was also responsible for me getting my second and third customers.

When you are ready, go a bit further

It might take a while for you to find your feet on these platforms. And that's ok! But once you've gotten comfortable, you can try this more detailed process (which I outlined for myself yesterday):

1. Post a rough idea for an article/product/ebook/course to your social network of choice and get a feel for what people like or don't like about the idea. This doesn't have to be a fancy post, just a sentence or two. e.g. "I'm thinking of making a beginner JS course, what do you think?"

2. After some time, ask a for suggestions on how to proceed with your idea or if anyone has done it before. e.g. "Which course platform for releasing paid courses do you like the best?"

3. A while later, maybe a few days or so, post an outline of your approach for tackling this idea or talk about the content/features you're thinking about including in it. This will again help you measure interest and see where the real value of your idea is. e.g. "Here's what I plan on covering in my course: ___. Would this be useful for beginners to JS?"

4. Work for a few days. Then post a preview of the progress you've made so far (and maybe any blocks you came across, if any). This could be a few lines of code, a blurry screenshot of the final design, or even a picture of you working on your laptop. Just show people that you're actively working on this and give them something to be excited about. Remember one important thing: they're probably just as interested in your journey as the final product. So don't focus on the product too much — you're telling a story about what it takes to build a product.

5. Offer a taste of the final product. Make a thread or post with some of the actual content/features of the ebook/post/product. This could be a 5 minute video from the first lesson of your course. A screencast of you using your app. Or a the first page or two from your eBook.

6. Post a beta tester sign up form that gives people early (or instant) access to the MVP version of your idea. People who sign up are your true fans and will probably give you the best feedback over time. This form can be made with any email marketing software.

7. A week or two later, post a few quotes from early users showing what people said about their first experience of your product. e.g. "I wish I had this when I was first learning JS. I'm learning new things every 2 minutes!"

8. Finally, plan your launch! A few weeks or days before your big launch day, tell people you're launching. Tell them your goals, your hopes, and what your product will let people do (that they couldn't do before) once it's out in the world.

9. Post on Product Hunt, Hacker News, as well as on your social platform of choice. Make sure the product doesn't feel done yet. You want it to be a little rough around the edges. But it should solve a problem and that problem should be clearly stated on the home page alongside your proposed solution

10. After the launch, post about a piece of feedback you got from a user who signed up during the launch. It could be negative or positive piece of feedback, as long as it was useful to you.

11. Post about an update you made because of user feedback. This will show that your audience is important to you and are active participants in your journey.

12. Don't stop posting. Repeat the last two step (gathering feedback and making improvements to the product) over and over again until your product really starts to get good.

12. After you've improved the product enough that it can be considered a 2.0, launch it again.

Your work & your learnings double as marketing

The nice thing about this process is that it's symbiotic. Your audience benefits just as much as you do: for every idea of theirs you implement, they benefit by a) seeing their opinions matter and b) getting a final product that's more useful to them.

And, to top it off, you and your audience get to create a story together. It's the story of a fledgling idea coming into reality and finding its way. And they get to help it grow and help it along. It's a pretty magical process when it's done with intention and the desire to make people's lives better.

Btw, I wrote a really popular thread on Twitter about Building a Product in Public that you might also enjoy!

]]>
<![CDATA[Don't Rely on One Big Launch]]>This post is based on an email I sent to a friend just last week.

It was great talking with you at the cafe. I think your product is very promising and I wanted to share some advice I'd wished I'd received with you before you

]]>
https://smashingthingstogether.com/advice-to-founders-dont-rely-on-one-big-launch/61e1b88e09aec8003b7a205fFri, 14 Jan 2022 18:07:33 GMTThis post is based on an email I sent to a friend just last week.

It was great talking with you at the cafe. I think your product is very promising and I wanted to share some advice I'd wished I'd received with you before you launch.

In my opinion, these are the two best things you can check out before you launch:

I've been an employee at 6 early-stage startups and seen just as many failed launches as successful ones. I've also launched a ton of projects and I’m currently trying to refine my experience into a guide for others (early signup).

My core advice basically comes down to this:

  • Start building an email list ASAP by having some kind of early signup form for your product (super easy to make with ConvertKit, Mailchimp, Revue, Substack, or Ghost). This is key since it will give you a guaranteed way to communicate with your fans when it really matters. Start building this today.
  • Create a 5-step nurture email campaign on top of that email list — provide value (good content, a free guide, a blog post, a free consulting call, a free video, etc.) to keep your audience engaged throughout all 5 emails. Only ask for them to signup/pay for your product at the end of the campaign, after you've established trust and they know the value you provide is solid (you can give them a 50% off coupon or free trial link to encourage more signups)
  • Do 10-20 launches, not just one "big" one — this is important because relying on just one launch is like playing the lottery and being sad when you don't win. You need to launch often and find ways to increase your chances of "winning" before the big launch :)

Let’s talk more about these small 10-20 launches…

  1. Start with a launch among family/friends and get early feedback from them. Expect lots of "I don't get it."

A great way to do this is to write a blog post describing the idea behind your product and why you created it and 1-2 of the big issues you ran into while making it (the more emotional struggle you share, the better, so be vulnerable).

Then email the post to them, along with a link to a form to sign up for more updates.

2. Then launch an early-sign up page.

Even if you let everyone who signs up to get early access use your product right away, it's good to make it clear you're still in the early stages.

So market this signup page as an early-access/beta launch.  This easy to do with ConvertKit, Mailchimp, etc.

This "early-access" page will set expectations low, while making people feel special, and give you room to do  a "real" launch later on.

Treat everyone who signs up at this stage like special early users and check in with them at least 2-3 times after they sign up to get feedback.

Also, give them a HUGE discount when the product actually launches — these early fans pay you in feedback, not money. And their excitement & support of you will go a long way throughout your journey.

3. Improve your product until that early list of people is giving you testimonials instead of critical feedback.

It will usually take at least 20-30 bug fixes and revisions to your product before you start seeing it move from "I don't understand what this is..." to "Wow, I couldn't imagine my life without this!"

Meanwhile, continue to do smaller launches

  1. Launch to a small group on Twitter
  2. Post in comments on Reddit about your struggles with the problems your product solves
  3. Email individuals or post in Slack/Discord groups to let people know about your product

4. Join "indie hacker" and entrepreneurial communities

Even if you have to pay a small fee to get in, it's totally worth it.

Recruit some of them to use and test your product.

5. Once you have some testimonials and a solid product that you know at least 2-3 people like and actively use (it's a high bar, really!), use the feedback you get from them to build out your landing page

Take what people told you your product helped them solve and put that as your headline, your sub-headline, and your landing page content and testimonials. Use their own words.

6. Continue to build up your email list by providing free content and resources that your audience values.

It could be a blog post you found or a quick video you recorded. As long as it's free and it genuinely helps your audience get something they want, it's a good thing to send to your email list.

7. Do a real launch! (but not your final real launch)

8. Now, since your marketing funnel is tight and you know it works, you're guaranteed to get lots of signups

You have an email signup form that promises a "Free guide" or useful resource that's valuable for your community — that way you can add them to your email funnel that ends with asking for a Sign up or sale EVEN IF they don't sign up for the full product.

You have headlines that address an actual problem they have and promise a solution as if in their own words.

You've solved the early bugs reported by your early test users and created something that people really love.

9. Now, start preparing for the sequel!

You probably won't achieve product-market fit with just one launch, even if you go through all these steps. But you'll acquire a lot of happy users. Use their feedback to improve the product even more.

10. Launch again 3-6 months after the original launch with a version 2.0 that solves the 1-2 main issues that your first group of users ran into

Btw, I wrote a really popular thread on Twitter about Building a Product in Public that you might also enjoy!

Best wishes,

David

]]>
<![CDATA[Why I'm doing 31 launches]]>The desire to go viral

I want to go viral. I want to get 100 likes on everything I post. I want to get it down to a science, so I can repeatedly go viral every post.

I want to tell you a half-truth and say: there’s just

]]>
https://smashingthingstogether.com/why-im-doing-31-launches/61d5e1ae25a429003ba5d17cThu, 13 Jan 2022 21:13:48 GMTThe desire to go viral

I want to go viral. I want to get 100 likes on everything I post. I want to get it down to a science, so I can repeatedly go viral every post.

I want to tell you a half-truth and say: there’s just so many useful things I’ve created and I’m launching them all just so I can get them out there into the world.

But this statement is closer to the truth: I put so much of myself into some projects, like months or even years of effort, I feel like they deserve 100 likes the moment I hit publish. And I get angry at you, my friends and fellow indie hackers, for not giving me what I deserve.

And I recognize these feelings for what they are: shallow.

Why don’t I get what I deserve?

I recognize them from being a kid in high school when my crushes didn’t notice me. I recognize them from playing basketball when my father didn’t praise me. And I recognize them from the science fair, when I got 3rd place instead of 1st like I thought I deserved.

But here’s the thing: the world does not care about what you or I or anyone else deserves..  Frustrating, considering we were  taught our  whole lives — high school through college and beyond — that that’s just what the world rewards: the well-intentioned, the hard-working, and the well-prepared.

It makes me angry and it can make you angry too.

Looking at things differently

But, in the end, that too is an under-developed attitude. Because there’s yet another, better way to approach the world: with curiosity.

  • Why doesn’t the world reward those who deserve it?
  • Why do I get angry that the world doesn’t care about me?
  • Why does it seem like the world doesn’t care?

Deep questions, I’m sure :)

But also useful. Because it turns out the world has no concept of “deserve”. There’s no great karmic balance that I can see — on the material plane at least — that balances the amount of “good” against “evil” and spits out rewards to those with more good.

It’s simpler: if you speak up, people will hear you. If you say “hi” to your high school crush, you might get lucky and start a conversation with them. If you want praise from someone, give 110% effort and make sure they’re someone you’ve heard give praise to anyone before. And, if you want to win 1st place at the science fair, you actually need to consistently be the best — in the quality of your project idea, in the clarity of your presentation, and in public speaking.

And, most importantly, there’s some aspect of luck to all of this. You can catch someone on a good day and they’ll be effusive with warmth and praise. Or you can catch your high school crush in the middle of a stressful day and it might seem like they’re ignoring you.

So, what does this all come down to?

When you’re considering the behavior of the world in reference to yourself, resist the urge to react with the shallow feelings of anger or contempt, and notice.

Notice the people around you. What do they care about? What kind of moods do they go through? What are other people doing to get their attention? If you want attention, are you actually doing the basics, like putting yourself out there and speaking? If you want to be the best, are you just focused on yourself, or are you actually noticing your competition and how good they are?

And, most importantly: are you giving yourself a fair chance by putting yourself out there regularly, and practicing what you want to be good at? While also allowing luck to shift in your favor over time, the more consistently and boldly you approach the stage?

The stage

I am terrified of the stage. The idea of presenting in front of other people is scary. Trying to get my thoughts under control, while modulating my voice, and saying exactly the right things — the things I want to say, the things they want to hear — all at the same time.

And all the while, paying attention to the audience’s reactions. Adapting on the fly, millisecond by millisecond, to what other people want from me, so I can give them just that.

Again, an unhealthy, under-developed attitude to a situation that’s quite simple.

You can think of every moment of life, when you’re around other people, as if you’re on a stage. They’re paying attention, judging you, always wondering what you want and who you are and where you motivations come from.

But, if you did this, you’d be scared frozen all the time. You’d find it impossible to move, to be yourself.

And that’s the thing about the person who ended up taking my crush out on a date, the classmate who became really good at basketball and played in college, and the individual who won the science fair: I’m sure they moved without thinking, quite naturally, to the beat of their own drum.

Small things, big things

When you want a big thing — international fame, excellence in sports or science, or the ability to be true to yourself despite a crowd being against you — you need to be focused on a longterm goal that doesn’t waver or shift no matter how much noise or vicissitudes of life you throw at it.

“When you pass through the waters, I will be with you; And through the rivers, they shall not overflow you. When you walk through the fire, you shall not be burned, Nor shall the flame scorch you.” (Isaiah 43:2)

It’s this solidness of character that’s required to achieve almost anything. You must be willing to set aside temporary injustices against your will, your pride, or your ego. And step forward anyways.

I often find the best way to stay focused on the big things is to think of the next small step: what do I need to do next? If that’s taking a breath, I take a breath. If that’s focusing on the world around me, I do that. Often it’s something simple like this. I need to be patient, focused, slow.

So, why am I launching 31 in 31 days? Why am I putting myself through this — launching all of these projects at once?

Practice, of two types

I want to establish a practice — a habit — of putting myself out there. Of being vulnerable and exposed to criticism. Of being unappreciated and unseen. And I want to press forward despite doubts or criticism or smallness of ego. Because I want to do great things, I really do, and I can’t let the vicissitudes of life get in the way of that vision.

And to practice — doing  something repeatedly to get better at it. Practice creating, writing and publishing. Practice knowing how to make complex ideas seem simple. And knowing how to bring people into my little workshop and show them what’s what. And gaining an understanding of when people care about one thing more than another — and why.

But mostly the first type of practice. Because, if I can let go of the whole picture making sense at once and just try to create meaningful things and talk about them, I know I will accomplish my big goal (making money online) by focusing on the small things (making things people care about).

]]>
<![CDATA[Simple Blogging Platforms]]>Creating valuable blog posts for your audience is one of the best ways to build a reputation in a market and attract new customers.

But, as a fast-moving maker, you don't have time for complexity.

You want to:

  1. Open your browser
  2. Start writing

I've had enough

]]>
https://smashingthingstogether.com/simple-blogging-platforms/61dddfd6e664db003b5b72ccWed, 12 Jan 2022 17:50:00 GMTCreating valuable blog posts for your audience is one of the best ways to build a reputation in a market and attract new customers.

But, as a fast-moving maker, you don't have time for complexity.

You want to:

  1. Open your browser
  2. Start writing

I've had enough of blogging platforms that make you update or configure something every 2 minutes.

Where are all the blogging platforms that just lets you write?

I found them for you.

First, let's cover the obvious:

If you just want to share an idea quickly and get feedback from friends, a Google Doc, a GitHub Gist (with Markdown formatting), or a thread on Twitter will do just fine.

However, if you're intending to build a long-term audience using your blog and want to increase your SEO over time, you'll want a more solid foundation.

My criteria

As a writer, I value: readability, clean typography, and a newsletter sign up form.

As a coder, I love having: code that looks nice and support for custom embeddable code.

As a human, I need: my platform of choice to be around for a while (I don't want to have to switch to another platform 🤦‍♂️) and it should be updated with features and fixes at least once a year.

The Platforms ✨

Ghost

Ghost: The #1 open source headless Node.js CMS
The world’s most popular modern open source publishing platform. A headless Node.js CMS used by Apple, Sky News, Tinder and thousands more. MIT licensed, with 30k+ stars on Github.

This is my top recommendation and it's what this blog is hosted on. It takes about an hour to set up, but the default theme is good and adding a new post takes a few seconds after opening a new tab.

It supports syntax highlighting, newsletter signups, and even memberships. The typography is great, and, most importantly, the Ghost platform has consistently evolved to be better each year, unlike others out there (looking at you Medium). Also, they're profitable and will probably be around for a while. It doesn't support comments by default — I'd recommend Commento for that.

I use their hosted plan, even though it's expensive for me. I just don't want to deal with configuring self-hosting and dealing with technical problems. I just want to write.

Bloggi

Bloggi
A simple blogging platform

I really love the completely focused editor this platform has. The whole product has a really minimalistic & simple feel. I'm not sure how sustainable the business is, but it's been made by Hernán Sartorio & has been around for a few years already so I feel pretty confident about it.

If I was switching from Ghost, this is one of the first platforms I'd consider.

It supports code syntax highlighting and has a sustainable business model. Doesn't look like it supports newsletter signups.

MDX.one

Notion to Blog in minutes | MDX.one
Write your articles in Notion, and publish them with a single click. No coding or design skills required.

This platform is built on top of Notion, but it's built specifically for blogs!

It has a pretty nice design and good typography — and supports custom domains. It also has support for custom code embeds and some pretty cool SEO features. It's also made by a Bhanu, who's active on Twitter and is continually improving MDX.one as he gets more feedback.

I'm really excited to see where this goes. It's a really strong contender for my top choice.

Write.as

Write.as
Simple writing platform built to preserve and spread your words. Start writing and publishing now — no signup required.

This is a really focused & minimalistic platform.

Has beautiful typography, supports custom domain names, code syntax highlighting & offers newsletter signups. It also looks like a financially sustainable business and has a cool community.

Not my favorite option, but definitely a nice product.

Superblog

Superblog | Blazing Fast Alternative for Medium and Wordpress Blogs
Lightning fast blog for serious content marketing. Score high in Google Lighthouse and GTMetrix automatically.

A nice-looking, fast blogging platform. Has a nice interface and good typography.

Supports custom domains, but not syntax highlighting (as far as I can see). It doesn't offer a newsletter signup, but has a form for collecting email addresses under every post instead. It looks like it has a strong business model & they pride themselves on being a greener blog platform alternative.

It's made by Sai Krishna, a great developer who does a lot of product development on Twitter.

Blot

Blot – A blogging platform with no interface
Turns a folder into a blog automatically. Use your favorite text-editor to write. Text and Markdown files, Word Documents, images, bookmarks and HTML in your folder become blog posts.

A very, very cool idea.

  1. Write with your favorite editor
  2. Save a markdown file to your Dropbox folder
  3. Done, you have a blog post!

This is pretty close to my ideal blogging platform — really focuses on having a simple interface, but gives you a ton of flexibility. I would probably have stuck with it if it had nicer themes...

It has pretty good typography, code syntax highlighting and has a good business model, but the themes are a little lacking in my opinion. I pay for this service even though I don't use it that much, simply because I love the idea!

Substack

Substack
Substack makes it simple for a writer to start an email newsletter that makes money from subscriptions.

I personally don't love this one, but I can say one really positive thing about it: they make it absolutely painless to set up a business based around writing and have supported thousands of writers on their journey to financial freedom.

However, in my opinion, the editor is janky and the typography is so so.

It has support for subscriptions and newsletter functionality out of the box, which is really cool. They'll probably be around for a while, since they're focused on making money (both for themselves and for their authors). So, I imagine the editor's interface and the typography will probably get better with time.

They support basic code syntax highlighting.

Proseful

Focused, beautiful & free blogging – Proseful
Proseful is a simple blogging platform, designed to help you stay focused and showcase your content in style.

A new platform. I love how focused and simple it is.

It's regularly updated by the main developer, has gorgeous typography, supports code syntax highlighting, has a business model that looks sustainable, and looks really focused on staying simple.

I really like this platform.

Posthaven

Posthaven is the safe place for all your posts forever

Posthaven has a great idea behind it: it completely abolishes one of the first concerns anyone might have with publishing online: how long will this service be around for? Pay for it for a full year and your writing will stay on the internet forever. Very cool.

It has some pretty good themes, pretty good typography, supports code syntax highlighting, custom themes, and is pretty easy to set up. But it never caught on for me because the interface always seemed a little outdated.

Svbtle

Svbtle
Svbtle, a publishing platform.

This one's been around for a while. I like the simple interface.

It doesn't offer newsletter signups but it supports custom domains, syntax highlighting, has nice typography and also makes a promise of being around forever.

Micro.blog

Micro.blog

Very simple platform, only $5 per month, and has a really nice community.

Supports custom domains, code snippets, but not syntax highlighting.

Potion

Create custom websites in minutes. All on Notion.
Create custom websites in minutes. All on Notion. Potion adds the magic, generating a speedy site with custom domains, styles and great SEO.

This is one of my favorite platforms ever! But it's not exactly a blogging platform.

It's developed by Noah Bragg & lets you turn any Notion page into a full website — along with all linked pages!

It's great for putting together a project very quickly and updating it live as user feedback comes in.

I use Notion for everything, so it fits right into my workflow — and I can even update my site from my phone!

Bear

ʕ•ᴥ•ʔ Bear Blog
Free, no-nonsense, super-fast blogging.

I like how minimal this is. Super-focused on speed and simplicity.

Supports code snippets, but not syntax highlighting. It's made by Herman Martinus & has a nice community of writers.

Moogle

Blog for FREE from your Gmail on Moogle. Optionally, upgrade to blog on YOUR own domain.
Let us handle your blog while you focus on your product

This is a very simple approach to blogging.

You send them an email and they take care of the rest: formatting your text, making sure your posts show up in search engines (SEO), and handling downloads for your users (just attach them to the email).

I like that you don't have to learn about a new blogging platform to use this.

Typeshare

Typeshare | The Hub for Digital Writers
Start your Social Blog, create Atomic Essays & Threads, and grow your audience with data.

A cool, new blogging platform with analytics built in and big focus on social blogging.

Not sure which features they support because there's not a lot of info on the homepage.

Brytebook

Brytebook | Simple, meaningful way to fund your creative work
Simple, meaningful way to fund your creative work. Use memberships and subscriptions to develop a direct relationship with your audience and generate predictable, recurring revenue to support your work.

A simple platform for connecting writers with readers, while monetizing their work.

Made by Samyak.

Typlog

Typlog

A blog + podcast host with analytics built in. Looks like a really focused and beautiful product.

It has some nice themes, support custom domains but not sure if they support code snippets or syntax highlighting.

Reading Supply

Reading Supply
Reading Supply is a reading and writing tool for artists, thinkers, creators, and humans.

This seems like a pretty good option with a nice community, but might be a little hard to get started with.

If community, conversation, and linked thoughts are your jam, it would probably make it worth it to sign up for this one.

Just like PostHaven & Svbtle, they make a promise they'll be around for the long term. They have a lot of advanced features and looks like they're adding new ones every month.

It has pretty good typography and a nice looking default theme, it supports code syntax highlighting, and will "soon" support custom themes and email subscribers.

Typehut

Typehut — Super simple publishing
Publish your blog, newsletter, changelog, podcast, announcements, events or anything else you can imagine.

A new platform. Very simple. I like it. It's very bare-bones on purpose, which is really nice.

I recommended this platform to friends a year ago, but I don't know if I can anymore because it hasn't had a new update in a while.

It supports syntax highlighting, custom domains & newsletter subscribers. Has a business model that looks sustainable, and has a really cool section on their Features page called "Features we won't have" which includes "A powerful editor" and "Plugins". I love this because it means they're dedicated to staying simple and focused!

]]>
<![CDATA[How to Get Rich]]>This will help you start a profitable business, step-by-step

I made this simple guide for myself after constantly getting distracted by day-to-day tasks and not focusing enough on the big picture

Give people a way to get from point A to point B

Make sure there are a lot of

]]>
https://smashingthingstogether.com/how-to-get-rich/61d330c325a429003ba5d11fMon, 03 Jan 2022 18:28:23 GMT

This will help you start a profitable business, step-by-step

I made this simple guide for myself after constantly getting distracted by day-to-day tasks and not focusing enough on the big picture

How to Get Rich

Give people a way to get from point A to point B

How to Get Rich

Make sure there are a lot of people at point A who want to get to point B

How to Get Rich

Make sure you have the ability to communicate with people at point A

How to Get Rich

Accurately describe both the problems of point A and benefits of point B so your audience feels like your understand their position

How to Get Rich

Make easy-to-follow instructions for how to get from point A to point B

How to Get Rich

Use these instructions to manually help people get from point A to point B

How to Get Rich

Ask for feedback from the people you helped

How to Get Rich

Improve your instructions based on the feedback you receive

How to Get Rich

Show the positive feedback you receive to the next people you’re planning to help

How to Get Rich

After you've tested your instructions and you're sure they work well, start charging money for them

How to Get Rich

Always remember when communicating: you’re selling the experience at point B

Your instructions and the journey itself are just ways to get there

How to Get Rich

Always treat the people you’re helping with the utmost respect — there’s more than one way to get to point B

How to Get Rich

If you’ve done your homework and point B is a valuable place to get to and your instructions are simple and reliable...

You will get rich.

How to Get Rich

Don’t get distracted by doing things the hard way with "get rich quick" gurus and tactics to trick your audience.

Just keep coming back to the basic question: how can I help someone achieve their goal today?

Want the complete version of this post? Download the full guide for free (includes additional tips and commentary).

]]>
<![CDATA[A Threat From Inside The Body]]>I have a theory about what anxiety is that I’d like to share with you.

There are threats that come from outside you.

These threats will probably cause a reaction in you.

After the threat goes away, the reaction stays around.

This is normal.

You’re not

]]>
https://smashingthingstogether.com/a-threat-from-inside-the-body/61cf90c325a429003ba5d054Fri, 31 Dec 2021 23:40:01 GMTI have a theory about what anxiety is that I’d like to share with you.

There are threats that come from outside you.

These threats will probably cause a reaction in you.

After the threat goes away, the reaction stays around.

This is normal.

You’re not sure if the threat will come back in a minute, an hour, a week, or a year.

But, after some time, and after getting out of the potentially dangerous situation, the reaction should disappear.

However, there’s a few things that can complicate this natural return to homeostasis.

For example: what if the threat doesn’t go away?

You might get used to feeling stressed all the time.

It might even become such a normal feeling that even with lots of time to relax and recover, it doesn’t go away.

This feeling can range from a constant state of terror to mildly irritating, depending on the original source of the threat, how persistent and insidious it was, and how likely it is to come back.

Is this feeling anxiety? Yes, definitely. But it’s also a kind of anxiety that makes sense. If the threat is still potentially in your life, perhaps just around the corner, your feeling of low-level stress might be a natural, normal, even positive reaction.

After all, no one likes to have threats of any kind in their life. And, if for some reason you need to live with one, then maintaining a healthy fear of it will help remind you to keep your distance.

But, what can you do if this anxiety becomes unhealthy?

What if it’s keeping you from the basic enjoyment of life?

Or, what if the source of the fear has been removed from your life to a safe distance, so that you know — theoretically — you should be able to relax?

What should you do if you’re still stuck in that low-level fear state?

You can’t hide from it… it’s a part of you.

So, what can you do?

To be honest, this I’m still figuring out…

The problem is, the feeling is so visceral, your reaction to it feels intuitive and automatic.

It feels completely crazy to even question it because it’s a part of your natural guidance system.

In fact, the fear center that’s being triggered is the same system that tells you not to walk over cliffs or in front of fast-moving vehicles.

So ignoring it doesn’t just feel difficult, it feels downright crazy. It feels like the biggest leap of faith you could take…

However…

If you can find some way to will yourself through it, despite a million doubts…

It can feel awesome.

Your entire reality can change… because you’ll realize that your logic brain was right and your instinct brain was wrong… and it opens up whole new areas of your life. You may even start exploring thoughts you've never questioned before, where you previously let your instincts rule unchallenged.

But… this is actually the hard part.

Because now you have 2 new problems.

The first problem is that now you don’t have a great, simple way to make decisions anymore. Your faith in your natural instincts has been disrupted.

And the second problem is that you don’t know who you are.

You used to go around making decisions based on how you felt. Everyone does.

But now you’ve introduced doubt into that process.

If you can’t trust yourself if you have to talk through every decision ahead of time to make sure it makes sense. And, if you’re forcing yourself to ignore your own natural instincts, where does that leave you?

Well, there are a few things you can do to gain a strong connection with yourself.

The first is to get to know yourself, without judgement, by simply experiencing how you operate. Some people call this meditation.

This will give you a much better understanding of who you are, what you’re like, and what the flow of your experience is.

Sometimes what seems like an incalculable maze at first glance will reveal itself as only a slightly tangled, but pleasant emptiness.

And sometimes you’ll just get a better idea of the shape of the storm inside.

Either way, you’ll come away being slightly better friends with yourself.

Another approach is to distract yourself, so your body has a chance to re-establish equilibrium on its own.

Taking a few seconds to focus exclusively on your breath changes the context that your brain is in — it can only pay attention to a few things at the same time — which gives it a little break from worrying and panicking.

If there’s an actual threat that you need to do something about, distracting yourself might not be a long term solution.

But it can help you regain your balance, so you can come at your situation with more poise.

The next strategy is the most difficult, but also the most rewarding.

It’s also the most counterintuitive.

To make a decision, firm and strong, to embrace how you feel no matter what, and surrender to it completely.

This is a weird one.

It feels self-destructive, like you’re choosing to walk off a cliff.

Except, instead of ignoring the feelings and doing it anyways, you embrace your feelings and do it anyways.

What does that mean exactly? Do you gradually approach the cliff and inspect it before you dive off? Do you bring a parachute just in case? Do you have a doctor standing by?

You can have help standing by or a back up plan. But you still need to dive off into the fear with no parachute, all while feeling the wind in your hair and the terror in your gut as you do.

Why?

Because you’re allowed to.

You’re allowed to be crazy.

You’re allowed to be wrong.

You’re allowed to push the limits of what you think is possible.

And… you’re allowed to trust the world to catch you if you fail.

Because the truth is… you don’t know what’s going to happen.

In fact, you’ve never known.

And it’s always okay to try again.

]]>
<![CDATA[An Indie Maker's Guide to Launching]]>https://smashingthingstogether.com/everything-i-know-about-launching/61cf2bc525a429003ba5ccf4Fri, 31 Dec 2021 23:02:57 GMTWhen I started my first job at a startup 12 years ago, I thought:

This startup will be able to help everyone in the world
It will change the way people work, learn, and communicate
I will get rich quickly and get the freedom to work on what I want

But this is not what happened. What I learned over the years is that working at startups looks more like this:

  • How can I help these 1-2 people achieve their goals today?
  • How can I help them do just one thing better?
  • How can we get them to pay even just $20-50 for this solution?

That amazing startup

Have you ever seen a revolutionary startup? Something that blows your mind. Maybe it was the startup that inspired you to start your own business.

Their product video was perfect 👌. The headline spoke to your soul 😍. You couldn't click on the "Sign up" button quickly enough ⚡️.

You made it through their inevitable waitlist and finally logged in. The buttons are just where you expected them to be. Clicking on them pops up the screens just as you imagined.

It just works.

What you didn't see

That headline, that video, that onboarding experience — they each took decades of compounding research, engineering, and learning about what people want.

What you maybe didn't think about from browsing their homepage:

  • The startup has a marketing lead with 10+ years experience launching and marketing early-stage startups
  • Before releasing the current version of the website, the company had an ugly front page for 3+ years while they gathered feedback
  • The team behind the startup has collectively launched 8+ ideas, just in the past year, that have all failed

Behind the scenes, there's all this work that goes into a polished product.

Failed launches

It's a hard truth, but as indie makers, we've all had products we've invested years into that went nowhere.

We invest nights and weekends into something we truly believed in, hit that publish button, and *crickets*.

No one showed up.

It can make you desperate and frustrated and burned out. You don't understand WHY no one cares / WHY no one sees you / WHY no one gets the value of your project.

"The solution"

There's a lot of good advice out there about launching early, getting real feedback from users, and iterating quickly:

"Be helpful on the internet and give away valuable stuff for free in order to build an audience"
"Launch privately at least 20-30 times and iterate on your product based on real user feedback before you launch publicly"
"Pre-launch your pre-launch to early fans and start building excitement in the market for your solution early"
"Put up a landing page first and see if the messaging resonates — if it doesn't, change the copy and try again"

But, at the end of the day, all of the great advice boils down to: get feedback constantly.

The regular way to do things

Most companies approach the problem from multiple directions.

They hire a market research firm to understand where people in the market hang out, how they talk and what they need.

They hire designers and product people to interview potential customers and build something they need, using prototypes and mockups.

They hire marketers to create sticky content, run campaigns and write copy that's going to resonate with their audience.

They hire salespeople to talk to potential customers about their needs and design a solution that fits them.

And they hire customer support agents to fill in the gaps, propose temporary solutions and workarounds, and provide value manually where necessary.

This is a lot of work.

A healthy company

My last boss was an absolute champ.

He joined Sales calls to see what they were selling. He talked with the Marketing team to see what their goals were. He stayed in regular contact with Customer support so he had a pulse on what customers were requesting that we couldn't do yet. And he ran the Product team and told us what the most important thing to build next was.

In short, he tied together the separate strands of the company into what every company dreams of: a team that works together toward the same goals...

Marketing highlighting what Product builds, while Sales hands off ambitious prospects to Product to get feedback from, and Customer Service builds workflows that Product eventually integrates into the product.

Any company that encourages collaboration among its departments even half as much as my boss did will see dramatic success beyond the norm.

The indie hacker hack: Being human

Big companies use hundreds of people and dozens of departments to:

  • Gather feedback constantly
  • Publish content & updates frequently
  • Test new ideas internally & externally every day

But this is something that a human being does naturally. It's in our nature.

It's called: being helpful.

A competitive advantage

When you genuinely care about the problems a person experiences, you simultaneously accomplish 3 things that the biggest companies always strive towards.

  • When you're genuinely yourself, you're motivated. No one needs to push or entice you with a raise or a promotion. There are no politics. Things are simple: you want to solve a problem for someone, so you go about doing just that.
  • When you start solving a problem for someone and get their feedback along the way, it's natural to incorporate this feedback in some way. This virtuous cycle, in which someone values you for listening to their problems and you value them for helping you build something useful for the world, is the foundation of almost all commerce and exchange.
  • And when you are genuinely yourself and get feedback because you want to solve something, something magical happens: you form real relationships with people. People see you as human, grow to trust you, and want to help you, as you helped them.

These 3 practices are the things every giant corporation hold dear because it's what keeps them alive. Motivated employees who care about the customer and form a real relationship with them.

There's nothing better — but there's also nothing more human! So as an indie maker, use this competitive advantage and just be yourself!

The cost of not being yourself

I've been told by so many well-meaning advisors and books and courses about all the things I need to do to become successful. They have the best intentions and what they say makes perfect sense, like 1+2=3.

The last time I read a viral Twitter thread, it made me feel like I finally understood the secret to business success. It made me want to change everything about my business overnight.

But we've all been down that rabbit hole: you get 10% into implementing the change the following week, prepared to erase years of your own work doing things "the wrong way", only to realize that the whole endeavor is probably going to take you about 100 times more effort than you assumed it would.

And there's no end goal in sight. Just a Twitter thread promising fast results.

If you can't be yourself and learn on the go, you're always going to go down these rabbit holes — following the next best "instant success" copywriting formula, signing up for the greatest productivity course ever, and writing & rewriting everything you want to post 10 times before you eventually decide not to publish...

Not being yourself takes A LOT of energy.

Being yourself despite the challenges

"I can't be myself! I'm not charming enough, funny enough, cool enough!"

I've struggled with self-doubt and feeling out-of-place my entire life. Rehearsing words I never say. Holding opinions I feel deeply. Not standing up for myself when it counts.

It's draining, minute-by-minute, to always wonder: "What would they think of me if I said the things I'm really feeling?"

There's another option: just saying it.

People will disagree with you vehemently. That's a good thing. People will think you're strange. That's a good thing. People will ignore you. That's a good thing.

It will all help you find your audience, your people, your tribe.

The internet is overwhelming

The internet gives us the opportunity to present ourselves to the world however we want, while at the same time letting us experience just about anything we imagine.

However, spending all our time acting like someone we're not and simultaneously living in a fantasy world that crumbles as soon as we close our laptop isn't that healthy.

The former will keep you disconnected from people on a genuine human level, while the latter will give you the feeling of accomplishing your goals without actually doing anything meaningful.

As counter-intuitive as it is, the secret to attracting true friends is telling people openly who you really are. And the secret to business success is the same: finding a way to communicate in a genuine way about problems that matter to people and helping them solve them in the open.

When you're genuine, it's sustainable for you.

And what about all the unsubscribes you'll get when you send your first newsletter? Don't worry...

That's a good thing.

]]>
<![CDATA[Thoughts before launching 31 projects in 31 days]]>https://smashingthingstogether.com/thoughts-before-launching-31-projects-in-31-days/61ca1e9d25a429003ba5cca4Mon, 27 Dec 2021 20:31:47 GMTI've taken on this crazy goal to launch 31 projects in 31 days. Why? Because I'm tired of being afraid. I've build so many projects and written so many blog posts — only to think at the last moment:

  • Is it ready?
  • It it too embarrassing?

And then I get overwhelmed by self-doubt and never click "Publish." This time is going to be different. I'm going to publish no matter what.

Forgive Yourself 🙏

First of all, I can't be holding onto all that past guilt about not launching.

I will not be launching something because:

  • It's causing me the most regret for not having launched it
  • It would be soooo impressive if I got it out the door
  • I want other people to like me

This brings me to my next point:

If you're not having fun, quit! 💩

The reason I got into all this indie hacker stuff was because it's fun as heck.

That means, I don't want to cause myself or my family undue stress because I want to get a project out the door.

If I find myself overwhelmed at midnight on the second night of launching, I'm going to throw in the towel and try again next month — or next year!

Make it fun by just hitting publish way before you're ready! 🤕

Here's the part that's going to be a struggle: hitting that damn publish button.

But, if I spend 3 hours cleaning up a project and making it usable/readable/watchable/enjoyable, then that's enough time and I gotta just go with it!

If it:

  • Doesn't have a favicon
  • Is missing a social share image
  • Has a bad headline

There's always tomorrow!

But give yourself enough time ⏰

I'm going to think about it like a race against the clock.

Every day, I'll head to a cafe at 10am, work for a couple hours, travel to the next cafe (or the library), and work for another couple hours.

Then I'll come home and put work out of my mind. Play with my little 11 month old boy or help his mom prep dinner.

No work past 6pm. No work on the weekends.

"But David," I hear you say, "That's impossible. How will you possibly launch 7 projects a week in ~5 hours a day across only 5 days?"

  • I will work in 20 min spurts.
  • I will reserve 1 hour for hard tasks (i.e. revising a blog post or landing page)
  • I will reserve three 90 min streaks every week for emergencies

I know myself — I work fast when I'm focused. If I give myself 3 hours to put something valuable out into the world, I can do it!

Don't over-promise, just under-deliver 🎁

There's part of me that's tempted to go all out and build full applications. I've had ideas for mini-apps, fun little online playgrounds, and new features for my full-stack framework.

But I will resist the urge to build big things.

A short blog post might not count as a real launch to some people. A series of emails where I share tips might be considered too small. A 1-page PDF with a quick time-management guide might be a "whatever" kind of launch.

But I'll do it anyways — I want to get comfortable putting myself out there. I don't care if it's a full app or a small blog post, I want to be able to write —

And just hit "publish."

]]>