Looked into Amazon Aurora Postgres or RDS Postgres
Here's what I found:
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
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> 😉
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🙌