DEV Community

Cover image for Day 81 of 100 Days of Code & Scrum: Picking Up MySQL AKA Dolphin Database
Rammina
Rammina

Posted on

 

Day 81 of 100 Days of Code & Scrum: Picking Up MySQL AKA Dolphin Database

Hello there, everyone!

Today was my weekly visit to my physical therapist, so I couldn't do much coding.

I built around half of the content for the Writing Services section for my business site. It should be ready for deployment by tomorrow or the next day. Also, I learned a little bit more Next.js.

I decided to pick up MySQL because I'm going to need it soon. I've been relying too much on MongoDB, which is a noSQL database.

Anyway, let's move on to my daily report!

Yesterday

I set my goals for this week, which are:

  • finishing the Services pages and then deploying them.
  • learning more Next.js and Scrum.
  • pick up either MySQL or Flutter, and I decided to go for the former.

Today

Company Website

  • coded around half of the content for the Writing Services section.

Next.js

Scrum

  • I didn't have the time to read an article about Scrum for today.

MySQL

  • I learned some basic concepts in MySQL.

Thank you for reading! Have a good day!

Rammina Thank You Banner

Resources/Recommended Readings

DISCLAIMER

This is not a guide, it is just me sharing my experiences and learnings. This post only expresses my thoughts and opinions (based on my limited knowledge) and is in no way a substitute for actual references. If I ever make a mistake or if you disagree, I would appreciate corrections in the comments!


Other Media

Feel free to reach out to me in other media!

Rammina Logo

Twitter logo

Github logo

Top comments (0)

11 Tips That Make You a Better Typescript Programmer

typescript

1 Think in {Set}

Type is an everyday concept to programmers, but it’s surprisingly difficult to define it succinctly. I find it helpful to use Set as a conceptual model instead.

#2 Understand declared type and narrowed type

One extremely powerful typescript feature is automatic type narrowing based on control flow. This means a variable has two types associated with it at any specific point of code location: a declaration type and a narrowed type.

#3 Use discriminated union instead of optional fields

...

Read the whole post now!