This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"keys":[{"kty":"RSA","e":"AQAB","n":"1YVj2KgGA0MKzQddETHX8XaUWK6qlERjqnaDZeUbPnGov3jjpUFTRft9z4w2KA7WpXEpEI0QGOf5j9ZSG0vFpGecXUJZyktoD9gWT3XzRpfWI0FjL0xbZHcVt8Fs683zNVrGkVX23lH5QO53iQdqQbN9swrH0mWljx6W7M6ITdy8fWd04s7UXIAPvtVn6KO-bmjx1nCnTeTZiNNkYSMtx2oGgCoFnFbXghNT-n0VPCK6XvOpnHDCl17-BmF8AT9rJsTGy_S402FxePr-pzdRYSwyvRDTL8RJ5HBannvFUC4Qn5rUD6E9bxdNSiSexKd60Nne_54zMu08We9kIGjRdQ","kid":"tT0OmDOGuMRotgMyawCtHYtKIjkFnBet8KBoIb9lDiE","use":"sig","alg":"RS256"}]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Atomic Polls", | |
"scopes": [ | |
"https://purl.imsglobal.org/spec/lti-ags/scope/lineitem", | |
"https://purl.imsglobal.org/spec/lti-ags/scope/lineitem.readonly", | |
"https://purl.imsglobal.org/spec/lti-ags/scope/result.readonly", | |
"https://purl.imsglobal.org/spec/lti-ags/scope/score", | |
"https://purl.imsglobal.org/spec/lti-nrps/scope/contextmembership.readonly", | |
"https://canvas.instructure.com/lti/public_jwk/scope/update" | |
], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Atomic Journals", | |
"scopes": [ | |
"https://purl.imsglobal.org/spec/lti-ags/scope/lineitem", | |
"https://purl.imsglobal.org/spec/lti-ags/scope/result.readonly", | |
"https://purl.imsglobal.org/spec/lti-ags/scope/score", | |
"https://purl.imsglobal.org/spec/lti-ags/scope/lineitem.readonly", | |
"https://purl.imsglobal.org/spec/lti-nrps/scope/contextmembership.readonly" | |
], | |
"extensions": [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
context_title: "$Context.title", | |
com_instructure_post_message_token: "$com.instructure.PostMessageToken", | |
com_instructure_assignment_lti_id: "$com.instructure.Assignment.lti.id", | |
com_instructure_originality_report_id: "$com.instructure.OriginalityReport.id", | |
com_instructure_submission_id: "$com.instructure.Submission.id", | |
com_instructure_file_id: "$com.instructure.File.id", | |
course_offering_sourced_id: "$CourseOffering.sourcedId", | |
context_id: "$Context.id", | |
context_sourced_id: "$Context.sourcedId", | |
message_document_target: "$Message.documentTarget", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# !!!!!!!!!!!!!!!!! WARNING - Use this script at your own risk. !!!!!!!!!!!!!!!!!!!!!!! | |
# In the event that you need to clean out your AWS account you can use the following script to wipe out all EC2 instances and their | |
# related data. | |
# This script terminates all running EC2 instances in your account, removes the images, removes all EBS volumes and removes snapshots. | |
# You will need to run this with a user that has appropriate rights. | |
for region in us-east-2 us-east-1 us-west-1 us-west-2 ca-central-1 eu-central-1 eu-west-1 eu-west-2 ap-northeast-1 ap-southeast-1 ap-southeast-2 ap-south-1 ap-northeast-2 sa-east-1; do | |
echo $region |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Applications" : { | |
"Type" : "AWS::DynamoDB::Table", | |
"Properties" : { | |
"TableName" : "Applications-${stage}", | |
"AttributeDefinitions": [ { | |
"AttributeName" : "name", | |
"AttributeType" : "S" | |
} ], | |
"KeySchema": [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
service: lti | |
provider: | |
name: aws | |
runtime: nodejs4.3 | |
iamRoleStatements: | |
- Effect: "Allow" | |
Action: | |
- "dynamodb:Scan" | |
- "dynamodb:Query" | |
- "dynamodb:DescribeStream" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
import React from "react"; | |
import assign from "object-assign"; | |
var { func } = React.PropTypes; | |
var mui = require('material-ui'); | |
var ThemeManager = new mui.Styles.ThemeManager(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ context: '/Users/jbasdf/projects/canvas_starter_app/client/config', | |
entry: | |
{ app: | |
[ 'webpack-dev-server/client?http://localhost:8080/assets/', | |
'webpack/hot/dev-server', | |
'/Users/jbasdf/projects/canvas_starter_app/client/js/app.jsx' ], | |
app_admin: | |
[ 'webpack-dev-server/client?http://localhost:8080/assets/', | |
'webpack/hot/dev-server', | |
'/Users/jbasdf/projects/canvas_starter_app/client/js/app_admin.jsx' ], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Facebook = { | |
init: function(){ | |
if(!GLOBAL_SETTINGS.FBappId){ return; } | |
if(GLOBAL_SETTINGS.application_name){ | |
Facebook.authorize_message = "Authorize your Facebook account for " + GLOBAL_SETTINGS.application_name; | |
} | |
Facebook.load_fb(); | |
$('#facebook_connect').on('click', function(e){ | |
e.preventDefault(); |
NewerOlder