Skip to content

Instantly share code, notes, and snippets.

View CheezItMan's full-sized avatar

Chris M CheezItMan

View GitHub Profile

Data Teaching Dashboard

For this project you will be merging data from various sources into an instructional dashboard.

Data Sources

At Ada instructors get data on students from a variety of sources.

  1. Student Attendance Data (Schoology)
  2. Student weekly assessments (Schoology, but cross-posted into a Google Spreadsheet)
@CheezItMan
CheezItMan / index.js
Created May 18, 2018 21:47
Solution for the ada pets exercise
// let target = document.getElementById('js-lecture-target');
//
// target.innerHTML = '<p>content!</p>';
$(document).ready(() => {
const pets = [
{
name: 'kylo', species: 'dog', human: 'kari', mammal: true
},
{
@CheezItMan
CheezItMan / .rails-template.rb
Created October 16, 2017 04:21
Rails Template
# Make $(document).ready work as expected, despite turbolinks weirdness
gem 'jquery-turbolinks'
# Add Foundation for rails
gem 'foundation-rails', '6.4.1.2'
gem_group :development do
# Improve the error message you get in the browser
gem 'better_errors'
# Use pry for rails console
@CheezItMan
CheezItMan / Sample_regex.md
Created August 26, 2017 20:11
Sample Regex

/[^b]og/

@CheezItMan
CheezItMan / regex.md
Created August 25, 2017 16:53
Sample Regex solutions

5 digit number - /(\d){5}/ IP addresses - /((\d){1,3}\.){3}(\d){1,3}/

`/\$\d+\.\d\d/`
import _ from 'underscore';
import $ from 'jquery';
import 'jquery-colpick';
import Postit from './models/postit.js';
import PostitNotes from './collections/postit_notes.js';
var postitData = [{
text: "Backbone is a library not a Framework.",
import _ from 'underscore';
import $ from 'jquery';
import 'jquery-colpick';
import Postit from './models/postit.js';
var postitData = [{
text: "Backbone is a library not a Framework.",
color: "#AC1200"
import Backbone from 'backbone';
import _ from 'underscore';
import $ from 'jquery';
import Task from '../models/task.js';
var TaskView = Backbone.View.extend({
initialize: function(params) {
this.template = params.template;
},
render: function() {