Skip to content

Instantly share code, notes, and snippets.

@matthewjwolff
matthewjwolff / headerfooter.js
Created September 11, 2018 02:24
Load header.html into element with id=header and footer.html into element with id=footer
var hreq = new XMLHttpRequest()
hreq.open("GET", "header.html", true)
hreq.onReadyStateChange = () => {
if(hreq.readyState==4 && hreq.status==200) {
document.getElementById("header").innerHTML = hreq.responseText
}
}
var freq = new XMLHttpRequest()
freq.open("GET", "footer.html", true)
@matthewjwolff
matthewjwolff / final_review.rst
Created December 1, 2016 19:21
CSC 4402 Final Review

Final Exam

Cumulative, weighted heavier towards content after midterm. Basic ideas and SQL queries from before midterm. Relational algebra will not be asked, but relational algebra is required for query optimization.

Summary of contents covered after midterm

@matthewjwolff
matthewjwolff / quiz_review.rst
Created November 14, 2016 23:39
CSC4444 Fall 2016 Quiz review

Quiz Review

Review homeworks (3)

Linear Regression

See photos. Go in the minus direction of the derivative to find the local minima.

@matthewjwolff
matthewjwolff / midterm_review.rst
Created October 17, 2016 22:02
CSC4444 Fall 2016 Midterm review for Jianhua Chen

AI Midterm Review

Things on Exam

  • Tracing A*
  • Homework things

Textbook

@matthewjwolff
matthewjwolff / midterm_review.rst
Last active October 12, 2016 01:27
Midterm Review for CSC 4402 with Dr. Jianhua Chen

Midterm Review (Ch. 1-6)

Part 1 Basic concepts (ch.1)

Concepts:
  • database systems (a set of data files, programs for accessing files)
  • Data integration
  • Data integrity