This file contains hidden or 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
; ======================================================================== | |
; Name: Artem Golovin | |
; Email: [email protected] | |
; Course: COMP2655-001 | |
; Due Date: November 5th | |
; Assignment: 4 | |
; Instructor: ppospisil | |
; Source: A4.S | |
; Purpose: To gain experience with branching and to implement | |
; "snaking" column representation for sorted data |
This file contains hidden or 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
; ======================================================================== | |
; Name: Artem Golovin | |
; Email: [email protected] | |
; Course: COMP2655-001 | |
; Due Date: November 5th | |
; Assignment: 4 | |
; Instructor: ppospisil | |
; Source: A4.S | |
; Purpose: To gain experience with branching and to implement | |
; "snaking" column representation for sorted data |
This file contains hidden or 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'; | |
// simple express server | |
var express = require('express'); | |
var app = express(); | |
var router = express.Router(); | |
app.use(express.static('public')); | |
app.get('/', function(req, res) { | |
res.sendfile('./public/index.html'); |
This file contains hidden or 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
" Don't try to be vi compatible | |
set nocompatible | |
" Helps force plugins to load correctly when it is turned back on below | |
filetype off | |
" TODO: Load plugins here (pathogen or vundle) | |
" Turn on syntax highlighting | |
syntax on |