Skip to main content

My Experience in RBK

So many things happened over the course of the last month. I have improved a lot on multiple levels both in technical and soft skills. I am more confident now with my english conversation skills and have the courage to pronounce the words in the american accent not the arabic version of english that we got used to hear at school, university and everywhere around us. In the past I used to hate Javascript but now I prefer it better than HTML/CSS that I was very comfortable with. I can even use and understand the weird syntax of the multiple anonymous functions.
I even learned how to play table tennis and can play against the top players among the students while never playing it in my whole life.

It was a pleasant experience over all, but I hoped that there were transportations and lunch meals cuz some of us can't afford that and we barely survived this month by borrowing the 200 JOD and the transportation fees as well.

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.