Canvas LMS Assignmnets Listing

CS450 Image Processing Welcome to the web pages for BYU's CS 450, an introductory course in digital signal and image processing. Reference: http://canvas.instructure.com/courses/24645/

HTML

<script src="https://github.com/jquery/jquery-tmpl/raw/master/jquery.tmpl.min.js"></script>
<script src="http://www.datasciencetoolkit.org/scripts/jquery.dstk.js"></script>
<p>Activity Stream for BYU's CS 450, an introductory course in digital signal and image processing.</p>
<hr/></hr/>
<div id="info"></div>

CSS

body { font-family: "Verdana"}

JavaScript

var url = "http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20atom%20where%20url%3D'http%3A%2F%2Fcanvas.instructure.com%2Ffeeds%2Fcourses%2Fcourse_d326c7c0-eb53-012d-422d-40400917cf0d.atom'&format=json&diagnostics=true&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys";

$.ajax({
    url: url,
    dataType: 'jsonp',
    success: function(data) {
        var entries=data.query.results.entry;
        $.each(entries,function(index,entry){
            $("#info").append(entry.content.content);
            $("#info").append("<hr/>");
        });
    }
});

// YQL Query
// SELECT * 
// FROM atom 
// WHERE url='http://canvas.instructure.com/feeds/courses/course_d326c7c0-eb53-012d-422d-40400917cf0d.atom'

// YQL Console Permalink
// http://developer.yahoo.com/yql/console/?q=select%20*%20from%20atom%20where%20url%3D%27http%3A%2F%2Fcanvas.instructure.com%2Ffeeds%2Fcourses%2Fcourse_d326c7c0-eb53-012d-422d-40400917cf0d.atom%27&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys

// YQL REST Query (JSONP Response)
// http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20atom%20where%20url%3D'http%3A%2F%2Fcanvas.instructure.com%2Ffeeds%2Fcourses%2Fcourse_d326c7c0-eb53-012d-422d-40400917cf0d.atom'&format=json&diagnostics=true&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys&callback=cbfunc