Skip to content

Instantly share code, notes, and snippets.

View Lily-La-Day's full-sized avatar

Lily Day Lily-La-Day

View GitHub Profile

ga_cog_large_red_rgb

Stranger Things

A full-stack MERN (Moongoose, Express, React, Node.js) app developed as part of a group over one week. The project brief was to create a full stack application that met the following criteria:

  • Use an Express API to serve your data from a Mongo database
  • Consume your API with a separate front-end built with React
  • Be a complete product CRUD functionality

ga_cog_large_red_rgb

Stranger Things

A full-stack MERN (Moongoose, Express, React, Node.js) app developed as part of a group over one week. The project brief was to create a full stack application that met the following criteria:

  • Use an Express API to serve your data from a Mongo database
  • Consume your API with a separate front-end built with React
  • Be a complete product CRUD functionality

ga_cog_large_red_rgb

Haiku-Who? (a weekend extra)

Technical Requirements

Over the course of a week we were given this brief, we were told that we must create a Python/Flask backend that must:

  • Include at least one Model -
  • Be able to perform full CRUD actions -

ga_cog_large_red_rgb

Am i write?

A full-stack (React, Python, Flask, SQL) app developed independently over one week.

Am i write? is an online platform that allows two distinct user types to either submit writing to be edited or to edit the writing of others. The application’s backend was created using Python and Flask with a React front-end.

Today is wednesday.

BANG EMPLOYED

By me, Lily Day, a junior full-stack web developer just "graduated" from code school and currently !employed.

This API has been created so that I may continue to play with databases while ostensibly still doing something vaguely job hunt related in that this is also sort of like a "portfolio".

I don't like the word portfolio, that is why I have put it in quotes. Well and also because it's not really my portfolio, my real portfolio is here:

https://lily-la-day.com/

lily-la-day

(my portfolio)

There's not too much to say about this by way of an introduction other than maybe to state that I am really into cryptic crosswords and pre-bootcamp would (attempt to) do one daily, the Guardian one to be specific, and online always so that I could check things (ie cheat).

Crossword-ing was one of the many enjoyable life things that I put a pin in while I was at code school, crossword-ing along with reading, cooking, socialising, dating, Samaritan-ing and well, I suppose just having a life outside of code. So now that code school is over I'm attempting to take the pins out, I'm finding this surprisingly hard. Coding is quite addictive and it's pretty much all I want to be doing right now as I am learning fast and learning is fun (yes, that's right kids).

So this was my attempt at dipping a toe back into the crossword pool while quite firmly keeping every other bit of my body totally submerged in the code sea.

@Lily-La-Day
Lily-La-Day / pureFunction.js
Created August 29, 2019 08:26
Pure Function Example
//pure
const add = (x, y) => x + y
//impure
let x = 2
const add = (y) => { x += y }
//curried
function add (a) {
return function (b) {
return a + b
}
}
add(3)(4)
//a compose function
const compose = function(f, g) {
return function(x) {
return g(f(x));
}
};
//or in ES6