Skip to content

Instantly share code, notes, and snippets.

View federico-garcia's full-sized avatar

Federico Garcia federico-garcia

  • Propelus
View GitHub Profile

The JavaScript Universe

based on this course

Values and Code

Numbers and strings are values. Objects and functions are values, too. Our code interacts with values, but values exist in a completely separate space. My code contains instructions like “make a function call,” “do this thing many times,” or even “throw an error.” I might refer to values in my code, but they don’t exist inside my code.

Values

  • Primitive Values. They can be numbers and strings, among other things
    • Undefined (undefined), used for unintentionally missing values.
@federico-garcia
federico-garcia / devsecops-essentials.md
Last active August 25, 2021 03:42
DevSecOps Essentials

DevSecOps Essentials

Based on this course

Introduction

DevSecOps build on the idea that cross-functional teams must work together and that everyone is responsible for security. The DevOps mantra of "automate everything" is central to DevSecOps. Areas where we can automate security:

  • Software version control
  • Continuous integration
  • Continuous testing
  • Configuration management and deployment
  • Continuous monitoring
@federico-garcia
federico-garcia / ultimate-go-programming.md
Last active October 29, 2021 01:27
Ultimate Go Programming
@federico-garcia
federico-garcia / building-api-gin.md
Last active November 2, 2021 06:52
Building an API with Gin

Gin Web Framework

Installation

First, you need to have Go installed. Follow the instructions here. Or simply use brew:

brew install go
go version

Setting up the project

@federico-garcia
federico-garcia / aws-cloud-practitioner.md
Created November 25, 2022 20:33
AWS Certified Cloud Practitioner (CLF-C01)

based on this course

AWS Certified Cloud Practitioner (CLF-C01)