Skip to content

Instantly share code, notes, and snippets.

@iondune
iondune / Review.md
Created May 12, 2014 08:38
Peer review of Speech Recognition Software

Proposal Review

By Ian Dunn

Topic

Speech Recognition Software

Erik Owen and Kevin Feutz

Review

@iondune
iondune / TopicProposal.md
Last active August 29, 2015 14:01
Research Project Topic Proposal

Knowledge-based Authentic AI for an Open-World Game

Date

Thursday, May 22nd (Week 8)

Abstract

Knowledge representation is a fine candidate for implementing a complex and authentic artificial intelligence system for a game, yet many current game systems avoid knowledge-based systems in

@iondune
iondune / DraftReview.md
Last active August 29, 2015 14:01
CSC 581 Draft Review: nclarke's "Analysis of Standalone Gaze Tracking Methodology"

Overall I like the flow of your paper. You make it very clear what you are saying by explicitly describing your intent.

Rubric

Topic Knowledge

Seems extensive

Relevance

@iondune
iondune / DraftReview.md
Last active August 29, 2015 14:01
CSC 581 Draft Review: ejowen's "Speech Recognition Software"

Rubric

Topic Knowledge

Thorough.

Relevance

Highly relevant to the class.

uniform sampler2D uTexColor;
varying vec2 vTexCoord;
void main()
{
gl_FragColor = texture2D(uTexColor, vTexCoord);
}
@iondune
iondune / Tutorial.md
Last active March 29, 2018 06:42 — forked from anonymous/Tutorial.md
How-To-Neo4j-Reasoning

Fair warning: getting to the reasoning point of this process requires an extraordinary amount of hand waving. We're about to go down the rabbit hole.

Neo4j

Foreword

An unfortunate part of this set up is that you're going to need to set up two different programs:

  1. Neo4j Server
@iondune
iondune / OpenGL.cpp
Created June 3, 2014 23:34
print opengl errors
void PrintOpenGLErrors(c8 const * const Function, c8 const * const File, s32 const Line);
#ifdef _DEBUG
#define CheckedGLCall(x) do { PrintOpenGLErrors("before "#x, __FILE__, __LINE__); (x); PrintOpenGLErrors(#x, __FILE__, __LINE__); } while (0)
#else
#define CheckedGLCall(x) (x)
#endif
void PrintOpenGLErrors(char const * const Function, char const * const File, int const Line)
{
@iondune
iondune / Calculon.md
Created June 6, 2014 01:04
Calculon spec

Calculon Automated Testing System

Spec Updates

DEADLINE: Sunday June 8th, 2014 at 11p for Auto-A Requirement, 6/13 for grade boost

@iondune
iondune / LinearSim.md
Last active August 29, 2015 14:02
LinearSim spec

LinearSim Multiprocessing Project

Overview

In this project, you'll do a modest simulation in one dimension that mimics what is normally done in 2 or 3 dimensions in computational fluid dynamics (CFD). And, you'll distribute the work across multiple processes, which will communicate their state to one another via pipes.

A Bit on CFD

@iondune
iondune / Compress.md
Created June 6, 2014 01:16
Compress spec

LZW Compressor

Spec Updates

DEADLINE: Sunday May 4th, 2014

UPDATE 5/13: A new version of Stress.o was released sometime last week - make sure that you have a fresh copy when doing the stress test!