Eddy Vinck Profile picture
Web Developer ๐Ÿ‘จโ€๐Ÿ’ป Blogging https://t.co/eulPyQA5ia ๐Ÿ“ Building Blog Recorder https://t.co/zuI54bmurx ๐ŸŽ™๏ธ๐Ÿ”ด Founder @BrabantWeb building custom B2B websites ๐Ÿ› ๏ธ
Apr 2 โ€ข 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