Skip to content

Instantly share code, notes, and snippets.

View awave1's full-sized avatar

Artem Golovin awave1

  • Vancouver, Canada
  • 13:19 (UTC -07:00)
View GitHub Profile
@awave1
awave1 / A4.S
Created November 6, 2017 04:15 — forked from anonymous/A4.S
; ========================================================================
; Name: Artem Golovin
; Email: agolo124@mtroyal.ca
; 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
@awave1
awave1 / A4.S
Created November 6, 2017 03:14 — forked from anonymous/A4.S
; ========================================================================
; Name: Artem Golovin
; Email: agolo124@mtroyal.ca
; 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
@awave1
awave1 / app.js
Created June 7, 2017 21:56 — forked from sogko/app.js
gulp + expressjs + nodemon + browser-sync
'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');
@awave1
awave1 / .vimrc
Created July 8, 2016 01:01 — forked from simonista/.vimrc
A basic .vimrc file that will serve as a good template on which to build.
" 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