Skip to content

Instantly share code, notes, and snippets.

View WilliamGarrow's full-sized avatar

William Garrow WilliamGarrow

  • Boston // Orlando
View GitHub Profile
@WilliamGarrow
WilliamGarrow / balanced-binary-tree.php
Last active October 22, 2020 22:25
PHP - Implementing balanced binary trees algorithm
<?php
// Assignment research for balanced binary trees that tends to be more difficult
// than just implementing binary search trees. Here’s an example in PHP.
class Node
{
protected $_parent = null;
protected $_left = null;
protected $_right = null;
protected $_key;
protected $_data = null;
@WilliamGarrow
WilliamGarrow / module_four.cs
Created November 16, 2015 01:57
DEV204x Programming with C# - Module Four Assignment
/// Module Four Assignment
using System;
namespace ModuleFourAssignment
{
// Create a struct to represent a student
struct Student
{
public string firstName;
public string lastName;
@WilliamGarrow
WilliamGarrow / module_three-plus.cs
Created November 7, 2015 23:44
DEV204x Programming with C# - Module Three Assignment (Better Example)
using System;
namespace ModuleThreeAssignment
{
class Program
{
static void Main(string[] args)
{
GetStudentInformation();
GetTeacherInformation();
@WilliamGarrow
WilliamGarrow / module_three.cs
Last active November 7, 2015 23:03
DEV204x Programming with C# - Module Three Assignment
/// Module Three Assignment
using System;
namespace ModuleThreeAssignment
{
class Program
{
static void Main(string[] args)
{
// From within Main() call each of the methods to prompt for input from a user.
@WilliamGarrow
WilliamGarrow / module_two.cs
Last active February 10, 2022 11:29
DEV204x Programming with C# - Module Two Assignment
/// Module Two Assignment
using System;
namespace ModuleTwoAssignment
{
class Program
{
static void Main(string[] args)
{
for (int column = 0; column < 8; column++) // will create 8 row x 8 column pattern
@WilliamGarrow
WilliamGarrow / module_one.cs
Last active November 7, 2015 23:03
DEV204x Programming with C# - Module One Assignment
/// Module One Assignment
using System;
namespace studentInformation
{
class Program
{
static void Main(string[] args)
{
// Create variables
@WilliamGarrow
WilliamGarrow / basic_linq.cs
Last active October 27, 2015 14:48
C# - Basic LINQ Example using 'numbers' and 'lowNums' to obtain the data source, create the query, and then execute the query.
using System;
using System.Linq;
namespace BasicLinqExample.UI
{
class Program
{
static void Main(string[] args)
{
@WilliamGarrow
WilliamGarrow / GradeBookTests.cs
Last active October 27, 2015 14:46
C# Unit Testing - Test Method/Class for computing course grade book statistics
using Grades;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Grades.Tests
{
@WilliamGarrow
WilliamGarrow / Program.cs
Last active October 27, 2015 14:46
C# - Course grade book that computes statistics with high, low and average grades
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Grades
{
class Program
{
@WilliamGarrow
WilliamGarrow / flask_sqlalchemy_initilize.py
Last active October 27, 2015 14:47
Python - Flask and SQLAlchemy database setup for LTI Xblock local development
from flask import Flask
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker
from database_setup import Base, Xblock, CaliperItem
app = Flask(__name__)
engine = create_engine('sqlite:///lti_compliance.db')
Base.metadata.bind = engine