Skip to content

Instantly share code, notes, and snippets.

View tvand7093's full-sized avatar

tvand7093

View GitHub Profile
@tvand7093
tvand7093 / patch-azure-arm-website.js
Created February 16, 2017 23:08
A patch to run prior to building a typescript project that uses the azure-arm-website node module.
'use strict';
const fs = require('fs');
const path = require('path');
function patchFile() {
//get the path to the file to be patched. This is for differnet OS's.
const basePath = path.join(__dirname,
'node_modules', 'azure-arm-website', 'lib', 'models');
@tvand7093
tvand7093 / libplot-setup.md
Last active May 20, 2016 02:26
Setup Mac for libplot

Libplot setup on Mac

First, install XQuartz if you don't already have it.

Next, (assuming you have homebrew installed) run the following command: brew install plotutils --with-x11

This will install the required libraries.

Finally, add the following before your rules and commands in your makefile for building your application:

@tvand7093
tvand7093 / YearMonthPicker.cs
Created February 23, 2015 21:51
A year or month picker for Xamarin Forms
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace DatePickerFormat
{
# Tyler Vanderhoef - CS 260 - Quicksort.asm
.data
newline: .asciiz "\n"
str0: .asciiz "Four"
str1: .asciiz "score"
str2: .asciiz "and"
str3: .asciiz "seven"
str4: .asciiz "years"
str5: .asciiz "ago"
@tvand7093
tvand7093 / BubbleSort.asm
Last active August 29, 2015 14:10
A bubble sort Algorithm for the Gettysburg Address
# Tyler Vanderhoef - CS 260 - Quicksort.asm
.data
newline: .asciiz "\n"
str0: .asciiz "Four"
str1: .asciiz "score"
str2: .asciiz "and"
str3: .asciiz "seven"
str4: .asciiz "years"
str5: .asciiz "ago"