#intermediate

All the topics that we've covered at an intermediate level

Introduction To CORS (Cross-Origin Resource Sharing)

Oct 12, 2019

CORS or Cross-Origin Resource Sharing is a mechanism to make it possible to make requests from one website to another in the browser. The security policy, Same-Origin Policy (SOP) normally restricts this kind of behavior. If you’re writing an API for example, and want other websites to be able to access your API via browser side requests, you might want to define trusted origins that requests are allowed from or simply trust all origins. Check the link in the bio for more info!

Conditional Logic In Dockerfile

Oct 12, 2019

Sometimes when running a Dockerfile you need to run some conditional logic based upon an ARG variable.

Passing Arguments Using Spread

Oct 10, 2019

The spread syntax in javascript allows an iterable (array, strings, or object literals) to expand in places where zero or more arguments are expected. Why is this useful? Let's find out!

Linux Which Command

Sep 30, 2019

Sometimes in linux you need to know if you have a program/utility installed and maybe even where it is installed.

Vertically Align With Flexbox

Sep 13, 2019

Using flexbox allows you to make flexible responsive layouts without floats or positioning...