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 / responsive_email_basic-poc.html
Last active October 27, 2015 14:49
HTML - Basic Responsive Email | Single File Basic Proof of Concept
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Basic Responsive Email | Single File Proof of Concept</title>
</head>
<body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">
<style>
td.mobile {
display: none;
@WilliamGarrow
WilliamGarrow / rest_api_web_application_excercise.php
Last active October 27, 2015 14:47
PHP - REST API and JSON exercise using Google Maps and Instagram
<?php
if (!empty($_GET['location'])){
$maps_url = 'https://'.
'maps.googleapis.com/'.
'maps/api/geocode/json'.
'?address=' . urlencode($_GET['location']);
$maps_json = file_get_contents($maps_url);
$maps_array = json_decode($maps_json, true);
$lat = $maps_array['results'][0]['geometry']['location']['lat'];
@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
@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 / 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 / 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 / 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 / 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_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_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();