Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<title> I am the Mermoose </title>
</head>
<body>
<h1 style="text-align:center;color:blue">Mermoose</h1>
<img src=http://mermoose.com/mermoose_medium.png>
<h2>About Mermoose</h2>
<p><a href="http://www.mermoose.com/">Mermoose</a> is a collaborative venture of Cory Fauver, Michael Groeneman, Jonathan Hillis, and Zach Wood-Doughty founded in April, 2014.</p>
<!--
Woot!
- Include an image
- Use a table
- Use at least three different styles (e.g. font-family, color, font-size, text-align). Bonus points if you use one that hasn't been explicitly discussed. Underlined text? Table border colors/thickness? Background colors? There are lots of possibilities.
- Use at least two span tags.
-->
<DOCTYPE! html>

MEAN stack review

Learning Objectives
Students will be able to:
Revisit the MEAN stack and explain the role of each technology within that stack.
Give detailed account of the purpose of the different files and folders that make up a MEAN app.
Revisit Angular syntax and write examples of important built-in directives.

Consider the following statement

@cofauver
cofauver / week1-learning-objectives.md
Created August 10, 2016 20:53
Week 1 Learning Objectives

Week 1 Learning Objectives

###Topic 1

  • LO1
  • LO2

###Topic 2

  • LO1

Week 9 Learning Objectives

###Collaboration

  • Work on coding projects with a larger group.
  • Follow good practices for branching.
  • Identify your strengths and weaknesses as a teammate

###User Experience

  • Explain at least one best practice or convention from user experience design (e.g., consistency, calls to action).
  • Incorporate UX questions into project planning:
@cofauver
cofauver / lightning-talks.md
Last active October 24, 2016 20:51
Material from our 10/24 lightning talks

Lightning talk resources

Sam - Electron

Use JavaScript, HTML, and CSS to build cross-platform desktop applications.

Nick - Ember js

MVVM framework for JavaScript that includes client-side routing and other features of Angular, as well as some Rails-like functionality. (Quick Start Guide)

Sera - Lodash

A library of Javascript functions that provides clean, performant methods for manipulating objects, arrays, numbers, strings, etc.

Week 11 Learning Objectives

Debugging and Publify

  • Navigate a large, mature project.
  • Submit pull requests to contribute code changes to projects you do not own.

ES6 and React

Week 1 Learning Objectives

Developers will be able to...

Command Line

  • Navigate the file system from the command line.
  • Create, move, copy, and delete files or directories from the command line.
  • Research unfamiliar bash commands and options with --help, man, and/or online resources.
  • Describe the uses of the sudo and chmod commands.

Week 7 Learning Objectives

###Active Record

  • Create a model that inherits from ActiveRecord class
  • CRUD data in the database using our model
  • Write a migration to define a database schema
  • Update our database schema with another migration

###Rails Views

  • Describe how layouts, view templates, and partial templates work together.
@cofauver
cofauver / yeoman.md
Last active February 20, 2017 21:09

Yeoman logo

What is Yeoman?

Yeoman is like rails new for JS stack applications.

It can scaffold out a complete application from scratch so that you don't need to build all of the boilerplate code.

Why would I want to use it?