This file contains hidden or 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
/* | |
Kurt Kaiser | |
CTIM 168 | |
08.02.2018 | |
Homework: Recursive Array Combining | |
Chapter 11 Practice Problem 7 | |
*/ | |
// Solved using a standard looping approach |
This file contains hidden or 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
/* | |
Kurt Kaiser | |
CTIM 168 | |
08.02.2018 | |
Homework: Bird Survey Linked List | |
Chapter 12 Practice Problem 13 | |
*/ | |
import java.util.Scanner; | |
public class DemoSurvey { |
This file contains hidden or 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
// Room Reservation System Video | |
// Kurt Kaiser, 2018 | |
// All rights reserved | |
var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
var sheet = ss.getSheets()[0]; | |
var lastRow = sheet.getLastRow(); | |
var lastColumn = sheet.getLastColumn(); | |
// Calendars to output appointments to |
This file contains hidden or 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
// Doctor Appointment Booking System | |
// Kurt Kaiser, 2018 | |
// All rights reserved | |
// [email protected] | |
var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
var sheet = ss.getSheets()[0]; | |
var lastRow = sheet.getLastRow(); | |
var lastColumn = sheet.getLastColumn(); |
This file contains hidden or 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
// Kurt Kaiser | |
// Date Emailing System | |
// All Right Reserved, 2018 | |
var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
var sheet = ss.getActiveSheet(); | |
var lastRow = sheet.getLastRow(); | |
var lastColumn = sheet.getLastColumn(); | |
function format(){ |
This file contains hidden or 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
// Code Combat - JavaScript | |
// Introduction to Computer Science | |
// Move towards the gem. | |
// Don’t touch the spikes! | |
// Type your code below and click Run when you’re done. | |
hero.moveRight(); | |
hero.moveDown(); | |
hero.moveRight(); |
This file contains hidden or 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
// Word Based Email Alert System | |
// Kurt Kaiser, 2019 | |
var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
var sheet = ss.getSheets()[0]; | |
var lastRow = sheet.getLastRow(); | |
var lastColumn = sheet.getLastColumn(); | |
// Go through recent submission, check for alert word | |
function checkSubmission() { |
This file contains hidden or 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
# Coded by Kurt Kaiser | |
player = game.spawnPlayerXY("samurai", 36, 30) | |
player.maxHealth = 5000 | |
player.maxSpeed = 12 | |
player.attackDamage = 20 | |
game.addDefeatGoal() | |
game.spawnMaze("forest", 6) | |
ogreHome = game.spawnXY("generator", 25, 13) | |
ogreHome.spawnType = "ogre" |
This file contains hidden or 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
// Kurt Kaiser | |
// kurtkaiser.us | |
// All rights reserved, 2019 | |
var ui = SpreadsheetApp.getUi(); | |
function onOpen() { | |
ui.createMenu('Alert System') | |
.addItem('Alert Me!', 'showAlert') | |
.addToUi(); |
This file contains hidden or 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
// Kurt Kaiser | |
// kurtkaiser.us | |
// All Right Reserved, 2019 | |
var ui = SpreadsheetApp.getUi(); | |
var scriptProperties = PropertiesService.getScriptProperties(); | |
var userProperties = PropertiesService.getUserProperties(); | |
function onOpen(){ | |
ui.createMenu('Save a Property') |