Skip to content

Instantly share code, notes, and snippets.

View febinbellamy's full-sized avatar
🎯
Focusing

Febin Bellamy febinbellamy

🎯
Focusing
View GitHub Profile
@febinbellamy
febinbellamy / sampleREADME.md
Created January 14, 2025 21:28 — forked from FrancesCoronel/sampleREADME.md
A sample README for all your GitHub projects.

Repository Title Goes Here

Frances Coronel

INSERT GRAPHIC HERE (include hyperlink in image)

Subtitle or Short Description Goes Here

ideally one sentence >

// required dependency: https://www.npmjs.com/package/prompt
const prompt = require("prompt");
const options = {
1: " ",
2: " ",
3: " ",
4: " ",
5: " ",
6: " ",

Sequelize Challenge

Use the lesson for reference as well as the documentation.

In the lesson, we did not cover many to many associations. You will use appointments as a model to split each association into 1:N

Perhaps look at the documentation on Commentable?

Objective:

@febinbellamy
febinbellamy / mash.js
Last active August 27, 2022 15:52
Mash Game
function mash() {
return `You will live in a ${getHome()}, drive a ${getCar()}, work as a ${getOccupation()}, travel to ${getTravelCount()} countries, and have a pet ${getPet()}!`;
}
function randNumGenerator(num) {
return Math.floor(Math.random() * num);
}
function getHome() {
let houseArr = ["Mansion", "Castle", "Shack", "House"];