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
{ | |
"@id": "http://docsteach.org/activities/16/detail", | |
"@type": "CreativeWork", | |
"name": "The Constitution at Work", | |
"thumbnailUrl": "http://docsteach.org/assets/lesson/000/000/022/22_medium.jpg", | |
"url": "http://docsteach.org/activities/16/detail", | |
"paradata": { | |
"activity": { | |
"actor": "organization", | |
"verb": { |
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
{ | |
"@id": "http://docsteach.org/activities/16/detail", | |
"@type": "CreativeWork", | |
"name": "The Constitution at Work", | |
"thumbnailUrl": "http://docsteach.org/assets/lesson/000/000/022/22_medium.jpg", | |
"url": "http://docsteach.org/activities/16/detail", | |
"description": "In this activity students will analyze documents that span the course of American history to determine their connection to the U.S. Constitution. Students will then make connections between the documents they have examined and the big ideas found within the Constitution.", | |
"typicalAgeRange": | |
[ | |
{"value": "13-18", |
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
{ | |
"@id": "http://docsteach.org/activities/16/detail", | |
"@type": "CreativeWork", | |
"name": "The Constitution at Work", | |
"thumbnailUrl": "http://docsteach.org/assets/lesson/000/000/022/22_medium.jpg", | |
"url": "http://docsteach.org/activities/16/detail", | |
"description": "In this activity students will analyze documents that span the course of American history to determine their connection to the U.S. Constitution. Students will then make connections between the documents they have examined and the big ideas found within the Constitution.", | |
"typicalAgeRange": "13-18", | |
"keywords": "History", | |
"educationalAlignment": [ |
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
# Signed LR v2 envelope | |
# nb. `resource` = JWT encoded version of LR v2 envelope below | |
# resource_format can must be one of: "json" or "xml in json" | |
{ | |
"@context": "http://learningregistry.org/schemas/v2/envelope", | |
"envelope_type": "resource_data", | |
"envelope_version": "1.0.0", | |
"envelope_id": "[URN or similar]", | |
"envelope_community": "[LearningRegistry|CredentialRegistry]", | |
"resource": "[resource serialized as string]", |
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
{ | |
"doc_type": "resource_data", | |
"resource_locator": "http://docsteach.org/activities/16/detail", | |
"digital_signature": { | |
"key_location": ["http://goopen.sandbox.learningregistry.net/pubkey"], | |
}, | |
"resource_data": "{\"@id\":\"http://docsteach.org/activities/16/detail\",\"@type\":\"CreativeWork\",\"name\":\"The Constitution at Work\",\"thumbnailUrl\":\"http://docsteach.org/assets/lesson/000/000/022/22_medium.jpg\",\"url\":\"http://docsteach.org/activities/16/detail\",\"description\":\"In this activity students will analyze documents that span the course of American history to determine their connection to the U.S. Constitution. Students will then make connections between the documents they have examined and the big ideas found within the Constitution.\",\"typicalAgeRange\":\"13-18\",\"keywords\":\"History\",\"educationalAlignment\":[{\"@type\":\"AlignmentObject\",\"alignmentType\":\"educationLevel\",\"educationalFramework\":\"US K-12 Grade Levels\",\"targetName\":\"8-12\"},{\"@type\":\"AlignmentObjec |
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
# pass in an appropriate AR Model for :reset_id_sequence option if you want to reset the sequence after loading | |
# Options include: | |
# :delete_existing_data => truncates all data before loading (default: false) | |
# :sql_parameters => permits specifying sql parameters for COPY such as DELIMETER and NULL (default: '') | |
# :skip_header_row => skips the first row of table when true (default: false) | |
def TableLoader.copy_from_file_to_table(table_name, field_names, import_file_path, options = {}) | |
delete_existing_data = options[:delete_existing_data] || false | |
sql_parameters = options[:sql_parameters] || '' | |
skip_header_row = options[:skip_header_row] || false | |
# expects appropriate model for resetting sequence |
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
{ | |
"doc_type": "resource_data", | |
"resource_locator": "http://beyondpenguins.nsdl.org/issue/column.php?date=June2008&departmentid=curriculum&columnid=curriculum!learning", | |
"update_timestamp": "2011-10-28T18:10:00.296692Z", | |
"resource_data": "<nsdl_dc:nsdl_dc xmlns:nsdl_dc=\"http://ns.nsdl.org/nsdl_dc_v1.02/\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:dct=\"http://purl.org/dc/terms/\" xmlns:ieee=\"http://www.ieee.org/xsd/LOMv1p0\" xmlns:xs=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.openarchives.org/OAI/2.0/\" schemaVersion=\"1.02.020\" xsi:schemaLocation=\"http://ns.nsdl.org/nsdl_dc_v1.02/ http://ns.nsdl.org/schemas/nsdl_dc/nsdl_dc_v1.02.xsd\">\n <dc:identifier xsi:type=\"dct:URI\">http://beyondpenguins.nsdl.org/issue/column.php?date=June2008&departmentid=curriculum&columnid=curriculum!learning</dc:identifier>\n <dc:title>Free Podcasts on Climate and Climate Change</dc:title>\n <dc:description>In partnership with t |
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
require 'yajl/ffi' | |
json = File::open('lr-test.txt') | |
@parser = Yajl::FFI::Parser.new | |
@parser.start_document { puts "start document" } | |
@parser.end_document { puts "end document" } | |
@parser.start_object { |o| | |
puts "start object" | |
puts o.class if o | |
puts 'start o end' | |
} |
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
class Object | |
def self.ltlog(obj = self) | |
puts "class Hello" | |
if obj.class == Class then | |
puts obj.to_s | |
else | |
puts obj.class.to_s | |
end | |
if obj.kind_of?(String) then | |
puts "Special string object handling here" |
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
require 'irb' | |
require 'term/ansicolor' | |
require 'open3' | |
module LT | |
module Term class << self | |
include ::Term::ANSIColor | |
end; end | |
end | |
# Monitors all files matching "test_*" in ./test and subfolders for changes |