Skip to content

Instantly share code, notes, and snippets.

@knewter
knewter / balls.coffee
Last active December 12, 2015 08:08 — forked from rclements/gist:4741481
$ ->
$.get '/lol/get_data', (data) ->
load_chart = new Highcharts.Chart
chart:
renderTo: 'graph'
defaultSeriesType: 'line'
title:
text: 'Per Diem'
xAxis:
title: 'Time'
require 'pry'
require 'net/http'
#require 'rexml/document'
#include REXML
class SamlSend
def initialize
end
@knewter
knewter / gist:4b50ec39187affdedce7
Last active January 11, 2016 18:32 — forked from adamrobbie/gist:f821f3c95e4a3185c4c2
HRFlow discussion
My current understanding of the process..
- 1 upload excel
- 2 hrflow creates form collector and a set of participant flows
- 3 form collector sends emails to participants with a link to the appropriate HRFORM
- upon completion of the partiicpant form, HRForms uses the completionURL to let us know
- if they have a spouse (unsure from the weird payload how this is deteremined, marriage status etc), we should send an email to the spouse with another HRForm url
- JOSH: (we should get this from marriage status - I was checking for spouse email I think?)
- upon that completion we'll receive another post to our submitform endpoint and fetch the data again and send the event along to the participant flow.
- eventually we want the participant fsm to complete with a signed boolean, unsure when this is determined as from the code this is assumed to happen.
- JOSH: This happens when we get their data back at all at present, if there is no spouse. if there is a spouse, this happens when we get the spouse's
@knewter
knewter / Comments.md
Last active June 15, 2016 19:04 — forked from billyboozer/Comments.md
Issue with compiling react native
@knewter
knewter / Main.elm
Last active January 27, 2024 01:43 — forked from hoelzro/Main.elm
Bug in elm-lang/core `Dict.merge`?
module Main exposing (..)
import Html.App as App
import Html exposing (Html, text)
import Dict exposing (Dict)
type alias Model =
()