Eddy Vinck Profile picture
Web Developer & SaaS maker | @BlogRecorder https://t.co/I1Glj4zxk5 $282 MRR 🎙️ | Conference speaker | Blogging https://t.co/eulPyQA5ia 📝
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