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
| #Here is the code to get you started on Assignment 7. | |
| #Make sure you have the file mymdb in the same directory as | |
| #this program. | |
| #The function make_title_dict opens and reads the database, | |
| #and creates the dictionary indexed by movie titles. While | |
| #the file processing is handled for you, it's worth understanding | |
| #how it works: | |
| ues | |
| #All the lines in the file are put into a large list. The 'strip' method |
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
| #Phillip A Tracy | |
| #The Photoshop assignment--updated for 2018 | |
| #Each photographic effect is realized as a tranformation of | |
| #a 3D array representing the color image. The details of converting | |
| #between Tkinter images and this array representation are hidden | |
| #in the routines for reading the image from a file and rendering the |
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
| package simpledb.record; | |
| import static java.sql.Types.INTEGER; | |
| import simpledb.file.*; | |
| import simpledb.tx.Transaction; | |
| /** | |
| * Store a record at a given location in a block. | |
| * @author Edward Sciore | |
| */ |
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
| import java.net.ConnectException; | |
| import java.net.InetAddress; | |
| import java.net.Socket; | |
| import java.net.SocketAddress; | |
| import java.net.SocketException; | |
| import java.util.ArrayList; | |
| import java.util.Scanner; | |
| import java.io.BufferedReader; | |
| import java.io.EOFException; | |
| import java.io.IOException; |
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
| // | |
| // PodDetailViewController.swift | |
| // PodMe | |
| // | |
| // Created by Phillip Tracy on 11/4/21. | |
| // | |
| import UIKit | |
| import AVFoundation | |
| class PodDetailViewController: UIViewController, AVAudioPlayerDelegate, AVAudioRecorderDelegate{ |
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
| // | |
| // ReviewTableViewController.swift | |
| // Snacktacular | |
| // | |
| // Created by Phillip Tracy on 11/4/21. | |
| // | |
| import UIKit | |
| import Firebase | |
| private let dateFormatter: DateFormatter = { |
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
| // | |
| // WeatherDetail.swift | |
| // WeatherGift | |
| // | |
| // Created by Phillip Tracy on 10/11/21. | |
| // | |
| import Foundation | |
| class WeatherDetail: WeatherLocation { | |