Skip to main content

My First Solo Project Experience

I really enjoyed the two days I spent alone working on this MVP project. I got the chance to practice many topics covered in the curriculum at my own pace. Also I was able to experiment with new stuff that I didn't do before; like using bootstrap 4 with react and searching for APIs that supplied me with the data I needed for my app. It was a very awesome experience that I'd love to repeat again and again.
I'm fairly satisfied with the outcome I made after these two days since it was a solo effort entirely. I didn't struggle thankfully, just the usual bug search and debugging here or there.

Comments

Popular posts from this blog

Stack vs. Queue

Stack is like a pile of  books placed on top of each other. We can add new books to the top and can remove them from only the top because stacks are LIFO which means last-in, first-out. Queues on the other hand are the opposite, which is FIFO meaning first-in, first-out. So adding an element to the queue will be the same but removing will happen to the first element not the last one. An example of a queue would be the wait line in front of any kind of service we see around us like the bus station or the shops,....etc.

Middlewares

Middlewares in Javascript are functions that come in the middle of the request-response cycle. They have access to both the request and the response object as well as the next middleware function to be executed; usually called next(). Popular examples on middleware include: body-parser, cors, session, cookie-seesion and cookie-parser.