Skip to main content

Where Do I See Myself in Five Years?

This question has been on my mind for the past couple of months and I've been thinking very deeply about it. I have always wanted to be a great programmer, someone who can build great applications to help improve the quality of life for people; especially refugees and the forgotten minorities in our communities.
But everybody has to start somewhere, so I started with studying the major that I loved the most; Computer Engineering :)
After graduation (while studying also), I wanted to improve my coding skills by taking online courses and even considering the local centers that teach Computer Science. However, I wasn't pleased with the results for many different reasons. Like for example: sometimes the material is too basic or too advanced or the lecturer didn't convey the concepts in an understandable way.
And then, came the announcement of RBK :D
That was the moment where I got really excited, and got my hopes all up for the next few months of my life.
We are just one week in but I'm already witnessing great improvements.

Hopefully, this will be the greatest experience of my life.

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.