Skip to content

Instantly share code, notes, and snippets.

@LovelaceTuring
LovelaceTuring / vocab_chapter_3.js
Last active June 21, 2023 19:39
Vocabulary for Chapter 3 of Eloquent JavaScript
// VOCAB LIST - Chapter 3
/*
function: A function is created with an expression that starts with the keyword function. Functions have a set of parameters (in this case, only x) and a body, which contains the statements that are to be executed when the function is called. The function body of a function created this way must always be wrapped in braces, even when it consists of only a single statement.
return statement: A return statement determines the value the function returns (A return keyword without an expression after it will cause the function to return undefined)
Parameters to a function: behave like regular bindings, but their initial values are given by the caller of the function, not the code in the function itself
scope: Each binding has a scope, which is the part of the program in which the binding is visible

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

@alexpchin
alexpchin / Setting_upa_new_repo.md
Last active May 3, 2025 05:28
Create a new repository on the command line

Setting up a new Git Repo

##Create a new repository on the command line

touch README.md
git init
git add README.md
git commit -m "first commit"

git remote add origin [email protected]:alexpchin/.git

@rxaviers
rxaviers / gist:7360908
Last active May 7, 2025 09:14
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: ๐Ÿ˜„ :smile: ๐Ÿ˜† :laughing:
๐Ÿ˜Š :blush: ๐Ÿ˜ƒ :smiley: โ˜บ๏ธ :relaxed:
๐Ÿ˜ :smirk: ๐Ÿ˜ :heart_eyes: ๐Ÿ˜˜ :kissing_heart:
๐Ÿ˜š :kissing_closed_eyes: ๐Ÿ˜ณ :flushed: ๐Ÿ˜Œ :relieved:
๐Ÿ˜† :satisfied: ๐Ÿ˜ :grin: ๐Ÿ˜‰ :wink:
๐Ÿ˜œ :stuck_out_tongue_winking_eye: ๐Ÿ˜ :stuck_out_tongue_closed_eyes: ๐Ÿ˜€ :grinning:
๐Ÿ˜— :kissing: ๐Ÿ˜™ :kissing_smiling_eyes: ๐Ÿ˜› :stuck_out_tongue: