01_07_2016
Orlin New Job
Understanding R on R
Model: HOW the Rails App (RA) talks to the data
ActiveRecord::Base maps class to the data table
Reading attributes in model doesn't need self
Setting attributes in model need "self"
Controller :Binding between the Model and View
REST Representational State Transfer
show == select == get
create==create==post
update==update==post
destroy==delete==post
post makes a change
get just pulls and shows info
CoffeeScript
removes unnecessary syntax from javascript language, like function()
HTTP Statuses
200 ok
201 created
422 unprocessable
401 unauthorized
102 processing
404 not found
Learning about routing
How form tags specify path, link_to's
livetablesController
if in the parameters there is a chart, go to chart thing, otherwise go to table
all_chart_options collect all options for each chart
all_chart_options is a helper function that is called
going back to the livetable object and pulling out the axis
to keep things organized split into a bunch of modules, might be in api(this is where it is building most of it) or options(initializing options)
timeseries vs not time series, categories, highchairs does nice things if it is diatomite, otherwise no
live_tables_helper
or_live_table_api
the idea is if you have a multi level table
I would like most of it to be changeable ON the graph
in place edit on the title
move around the legend
only place we show visualizations is on cross tabs
would like to show regressions and correlations
what we should do first and next
Can we edit title on click
___________________________________
Understanding R on R
Model: HOW the Rails App (RA) talks to the data
ActiveRecord::Base maps class to the data table
Reading attributes in model doesn't need self
Setting attributes in model need "self"
Controller :Binding between the Model and View
REST Representational State Transfer
show == select == get
create==create==post
update==update==post
destroy==delete==post
post makes a change
get just pulls and shows info
CoffeeScript
removes unnecessary syntax from javascript language, like function()
HTTP Statuses
200 ok
201 created
422 unprocessable
401 unauthorized
102 processing
404 not found
Learning about routing
How form tags specify path, link_to's
livetablesController
if in the parameters there is a chart, go to chart thing, otherwise go to table
all_chart_options collect all options for each chart
all_chart_options is a helper function that is called
going back to the livetable object and pulling out the axis
to keep things organized split into a bunch of modules, might be in api(this is where it is building most of it) or options(initializing options)
timeseries vs not time series, categories, highchairs does nice things if it is diatomite, otherwise no
live_tables_helper
or_live_table_api
the idea is if you have a multi level table
I would like most of it to be changeable ON the graph
in place edit on the title
move around the legend
only place we show visualizations is on cross tabs
would like to show regressions and correlations
what we should do first and next
Can we edit title on click
___________________________________
Comments
Post a Comment