Skip to content

Instantly share code, notes, and snippets.

View codecalypso's full-sized avatar

Stacy codecalypso

  • Chicago
View GitHub Profile
@codecalypso
codecalypso / ramda_examples.js
Last active July 23, 2017 04:22
Ramda Examples
var xLens = R.lensProp('x');
R.view(xLens, {x: 'Jerry', y: 'Tom'}); //“Jerry"
R.set(xLens, "Tweety", {x: 1, y: "Tom"}); //{"x": "Tweety", "y": "Tom"}
R.over(xLens, R.toUpper, {x: "jerry", y: "Tom"}); // {"x": "JERRY", "y": "Tom”}
const person = {
firstName: "Bruce",
lastName: "Wayne"
}
@codecalypso
codecalypso / Review.md
Last active May 15, 2017 15:22
Girls Who Code Curriculum Review

#Topics Covered

##Command Line:

If using a MAC your command line can be found by accessing the terminal. These commands may differ on a PC. Open up command prompt to access the command line. If you have a Window machine at home and prefer to use terminal commands, refer to the gitbash link below.

pwd - print working directory
hello world