elaineparie.github.io


When to use Redux

You might be confused about when to use Redux over React. This entirely depends on the complexity of your state!


MVC -- Explained!

MVC stands for Model, View, Controller. It is a pattern of backend programming that separates the application into three main components: the model, the view, and the controller.


ReactJs vs. NodeJs vs. Angular

NodeJs is a JavaScript runtime environment that executes code outside of the browser. Typically, JavaScript only runs on a browser, but NodeJs allows it to run on computer. Therefore, you can access files, listen to network traffic, listen to HTTP requests, etc. In other words, NodeJs can transform JavaScript to behave like PHP or Ruby on Rails. NodeJs can either build utilities on the machine for development or be used as a web server. This enables JavaScript to be used for server side scripting and runs script server side to produce dynamic web page content before the page is sent to the user’s web browser.


RESTful -- Explained!

RESTful APIs are an application program interface. REST stands for representational state transfer. Comparatively, RESTful routing leverages less bandwidth.


Setting Up a Simple Ruby Practice Sheet

Especially for those who are fresh off the bootcamp grind, I know things kind of seem to derail. In the bootcamp, you are given so much instruction, your labs are set up for you, and you never really face the terror of looking at a blank screen. However, if you are interviewing for junior developer positions, you are going to want to run through some practice problems on your own! So here is the simplest way to do so.