Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am hilaryous on github.
  • I am hilaryous (https://keybase.io/hilaryous) on keybase.
  • I have a public key ASDKwtvTGWbS5M4bK4B704zQlcqpUnd9ZG37OwvWrFKxUAo

To claim this, I am signing this object:

@Hilaryous
Hilaryous / notes.md
Last active April 24, 2018 15:57
Notes for BE Suites Assessment

note 1

  • cannot be required, we need to be able to save a “draft” of an assessment

  • cardiopulmonary

  • fall_risks

  • gastrointestinal

  • genitourinary

  • integumentary

  • neurological_emotional_status

  • neurovascular

@Hilaryous
Hilaryous / frontEndPatternsPractices.md
Last active May 31, 2017 19:01
Front End Patterns/Practices

Muve Front End Patterns/Best Practices

A guide to the structure/patterns/best practices and philosophies of Muve's React/Redux Client Side App(s).

Source

Diagram

Diagram of Architecture

Layers

@Hilaryous
Hilaryous / smart-dumb-example.js
Created August 18, 2016 22:43
Smart and Dumb Component interaction example
//SMART COMPONENT
import React, { Component, PropTypes } from 'react';
import { connect } from 'react-redux';
import { bindActionCreators } from 'redux';
import * as actionCreators from './actions';
import DumbComponent from './DumbComponent';
class SmartComponent extends Component {
static propTypes = {
params: PropTypes.object,
@Hilaryous
Hilaryous / vim_cheat_sheet.md
Created February 4, 2016 22:52
Vim Cheat Sheet

Vim Cheat Sheet

Cursor Movement

  h        - move cursor left
  j        - move cursor down
  k        - move cursor up
  l        - move cursor right
  w        - jump forwards to the start of a word

W - jump forwards to the start of a word (words can contain punctuation)