Skip to content

Instantly share code, notes, and snippets.

View CelineChole's full-sized avatar
🤸‍♀️
Coding

CelineChole

🤸‍♀️
Coding
View GitHub Profile

🎧 Podcasts

Full Stack Radio

Full Stack Radio by Adam Wathan

A podcast for developers interested in building great software products. Every episode, Adam Wathan is joined by a guest to talk about everything from product design and user experience to unit testing and system administration.

Base.cs podcast

Base.cs podcast

@CelineChole
CelineChole / tenDaysOfJS.md
Last active June 20, 2020 04:57
10 problems with JS

Ten days of JS is a collection of 10 problems that can be done in any order. Problems range from easy to medium. You can find all the solutions by clicking on Repl.it - I added comments directly in the solution when I thought it was necessary.

😃 Day 1 - Be happy

Prompt

Write a function to determine if a number is "happy".

A happy number is a number defined by the following process: Starting with any positive integer, replace the number by the sum of the squares of its digits, and repeat the process until the number equals 1 (where it will stay), or it loops endlessly in a cycle which does not include 1. Those numbers for which this process ends in 1 are happy numbers.

Recursion Recursion Recursion

A bit of etymology

Recursion is the act of recurring.

It comes from the latin word recursiō which is the act of running back or again. This is from recurrō, return, run back:

  • re: back, again
  • currō: run
@CelineChole
CelineChole / express-part-2-demo.js
Created April 28, 2020 18:13
live demo express part 2
const express = require("express");
const app = express();
const morgan = require("morgan");
const path = require("path")
const staticMiddleware = express.static(path.join(__dirname, "/public"));
app.use((req, res, next) => {
console.log(req.method.req);
next();
@CelineChole
CelineChole / index.html
Last active July 12, 2020 01:23
awesome
<div id="app"></div>