This file contains 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
<!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; |
This file contains 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
<?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']; |
This file contains 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
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 |
This file contains 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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace Grades | |
{ | |
class Program | |
{ |
This file contains 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
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 | |
{ |
This file contains 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
using System; | |
using System.Linq; | |
namespace BasicLinqExample.UI | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
This file contains 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
/// Module One Assignment | |
using System; | |
namespace studentInformation | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
// Create variables |
This file contains 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
/// 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 |
This file contains 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
/// 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. |
This file contains 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
using System; | |
namespace ModuleThreeAssignment | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
GetStudentInformation(); | |
GetTeacherInformation(); |
OlderNewer