Skip to main content

My Role Model?

I'm not sure how to answer this question because I think I don't have such a character to look up to :) 
But I could consider the best version of myself as my role model...  how?
Hmmm, I strive to improve and learn new stuff with each passing day, I don't like wasting time or resources without any real benefit (Of course there will be times for just fun). And by doing that I get closer to this goal and at the same time my ideal image of role model keeps changing as well. So in the end I'm left with the ever improving mentality that will always try to make things better and greater as long as it's possible.

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.