Skip to content

Instantly share code, notes, and snippets.

View gabriellesc's full-sized avatar

Gabrielle Singh Cadieux gabriellesc

View GitHub Profile
@gabriellesc
gabriellesc / RAWDATA.html
Created October 24, 2019 16:58
Sample TH Page HTML
<div class="subview subpage active" data-click-id="pagesv2 viewer" tabindex="-1"><span class="pages-user-watermark">Exported for Vikram Ravindran on Fri, 11 Oct 2019 16:10:33 GMT</span><div class="pages_block pages_heading--react"><div class="PagesV2HTMLContentstyles__Container-g3hbw3-0 bLulqX" data-click-id="222e324e-46f2-45b9-ab91-5fb5fbcb3532" tabindex="0"><div class="HTMLContentstyles__Wrapper-hv2w60-0 fgnwfi"><h1 id="222e324e-46f2-45b9-ab91-5fb5fbcb3532">1.2 Who Governs? Elitism, Pluralism, and Tradeoffs<br></h1></div></div></div><div class="pages_block pages_heading--react"><div class="PagesV2HTMLContentstyles__Container-g3hbw3-0 bLulqX" data-click-id="3aa766a7-d2bb-4994-8b96-52a01b8e0592" tabindex="0"><div class="HTMLContentstyles__Wrapper-hv2w60-0 fgnwfi"><h2 id="3aa766a7-d2bb-4994-8b96-52a01b8e0592">Learning Objectives</h2></div></div></div><div class="pages_block"><div class="PagesV2HTMLContentstyles__Container-g3hbw3-0 bLulqX" data-click-id="fs-id1171472222816" tabindex="0"><div class="HTMLContents
Component 0 1 2 3 4
Reasonable scoping decisions with credible area of focus and reasonable decisions to omit use cases.
Clearly explain how and why you propose to slice the system into webapps
Reasonable choice of middleware with clear explanation of team's rationale
Reasonable choice of APIs with clear explanation of rational
Test strategy

Total Mark:

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@gabriellesc
gabriellesc / dojo-challenge.md
Last active January 30, 2018 01:52 — forked from jjst/dojo-challenge.md
NGW Code Dojo

Never Graduate Week Code Dojo

Write a program that draws the Recurse Center logo (or a variant/approximation/shitty version of it)!

You can draw in a terminal in ASCII art, in a web browser, generate an actual image, or any other way you want. Be creative :-) Any language allowed.

Wordplay (original host: https://hackpad.com/More-graphs-and-trees-inc-wordplay-Jy4GxlaagVH) Practical tasks that have been asked in interviews, and which Jessica McKellar was disappointed some Hacker Schoolers had trouble with.

Using the official SOWPODS Scrabble dictionary:

what words contain "UU"? What words contain "Q" without "U"?

what letters, if any, never appear doubled? (by that I mean -- "AA" does appear doubled because it is in "AARDVARK", "BB" does appear doubled because it is in "BUBBLE" -- are there any letters that never appear doubled in a word)

what is the longest palindrome?

applicants: {
applicantId: {
lastName: string,
firstName: string,
utorid: string,
email: string,
phone: string,
studentNumber: string,
address: string,
dept: string,
App
|
Router
┌----------┬-------------------┬--------------┴-------┬---------------------------------------┬-----------┐
NavbarInst Courses ABC Unassigned / Assigned Summary Applicant
┌---------┴┐ ┌------┴-------┐ ┌-------┴--------------------┐ | |
CourseList CourseForm... | | Un/AssignedTableMenu Un/AssignedApplicantTable <TBD> AssignmentForm
| |
CourseMenu CoursePane(0..4)
┌------------┴-----------┐
Field Both Current only CHASS only
Student# x
Lname x
Fname x
Phone# x
Email x
Personnel# x
Access to academic history? x
Work status x
/***********************************************************************
* Javascript implementation of Conway's Game of Life, based on
* http://www.cs.mcgill.ca/~cs202/2011-01/assignments/specifications/a4/a4--specification.pdf
*
* Patterns stored in PatternsDict.js
*
* 15.05.2017 G.S.C.
***********************************************************************/
"use strict";