Eddy Vinck Profile picture
Webdev by day, building SaaS by night Projects: Voice to blog post https://t.co/qZDNDvWwYo Free OG images https://t.co/WAvIcZzkPM
Nov 19 10 tweets 3 min read
I feel uncomfortable sharing this, because it feels like failure, but here goes:

I haven't gotten a new paying user in forever with Blog Recorder. MRR has been on the decline for a while.

And it's been like this for months. Nothing I tried has worked. Image Outside of one active user, most people aren't really using it.

Is this one active user a fluke, or should I try to find similar people to sell it to? I don't know.

Is the price just too high? No idea.
Apr 2, 2024 12 tweets 5 min read
I'm migrating away from PlanetScale

Looked into Amazon Aurora Postgres or RDS Postgres

Here's what I found: Image Amazon RDS is a managed database solution for SQL-based databases

You can use MySQL, PostgreSQL, MariaDB, Oracle, SQL Server

There is also Aurora which is Amazon's MySQL-compatible or PostgreSQL-compatible alternative with some other options besides standard MySQL or PostgreSQL Image
May 31, 2021 13 tweets 5 min read
Are you a new developer and are you unsure why you should you use Git?

👇👇 Are you afraid of breaking your code?

You need version control! (Git)

It allows you to save your entire codebase with a "commit".

Think of it like a checkpoint in a video game. You can always go back to any checkpoint (commit), and you can change between save files (branches)
May 28, 2021 9 tweets 2 min read
HTML tags you're not using but you should know about

Believe it or not, there is more than just <div> 😉

Start using these!

- <header>
- <nav>
- <section>
- <article>
- <aside>
- <footer>
- <details> & <summary>

Examples below! 💯 <header>

The <header> element represents a container for introductory content or a set of navigational links.

<article>
<header>
<h1>A heading here</h1>
<p>Posted by John Doe</p>
<p>Some additional information here</p>
</header>
<p>Lorem Ipsum</p>
</article>
Jul 9, 2020 12 tweets 5 min read
$ git gud
> git: 'gud' is not a git command. See 'git --help'.

Here's why you should learn Git:
* Basics are pretty easy!
* (Almost) every developer team & job requires it
* Stop worrying about breaking your code
* because you can always revert back🙌

#100DaysOfCode #Git

🧵⬇️ Image How to get started in a few tweets:

1. Download git git-scm.com/downloads
2. Use a terminal and navigate to your project
3. Run "git init"
4. Create a GitHub account github.com/join