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
    
  
  
    
  | /* script */ | |
| import puppeteer, { Page } from 'puppeteer'; | |
| import { format, parse, startOfWeek } from 'date-fns'; | |
| import * as nodemailer from 'nodemailer'; | |
| interface EarningsEntry { | |
| company: string; | |
| ticker: string; | |
| marketCap: string; | 
  
    
      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 { CommandContext } from '../models/command-context'; | |
| import { Command } from './command'; | |
| export class SecretSanta implements Command { | |
| commandNames = ['santa', 'secretsanta']; | |
| members: Array<string>; | |
| getHelpMessage(commandPrefix: string): string { | |
| return `Use ${commandPrefix}santa <name1> <name2> ... to create a secret santa group.`; | 
  
    
      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
    
  
  
    
  | # resetting modifier to space | |
| unbind C-b | |
| set-option -g prefix C-space | |
| bind-key C-space send-prefix | |
| # resetting split panes to | and - | |
| bind | split-window -h | |
| bind - split-window -v | |
| unbind '"' | |
| unbind % | 
  
    
      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
    
  
  
    
  | LAUREN YUTKO | |
| FINAL PROJECT | |
| CPS 2231 | |
| REPORT OF ALL ANIMALS: | |
| 73 total animals in data file. | |
| Owner Name: Hopper Birth Year: 2003 Bill Balance: 555 Species: Kangaroo Num Legs: 2 | |
| Owner Name: Kitty-1 Birth Year: 2009 Bill Balance: 44 Species: Cat Num Legs: 4 | 
  
    
      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
    
  
  
    
  | /* Lauren Yutko */ | |
| package Final; | |
| import java.util.Comparator; | |
| class Animal implements Comparator<Animal> { | |
| // Instance Variables | |
| String ownerName, species; | |
| int birthYear, billBalance; | 
  
    
      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
    
  
  
    
  | /* Lauren Yutko - ALL FILES */ | |
| /* ANIMAL CLASS */ | |
| /* Lauren Yutko */ | |
| package Final; | |
| import java.util.Comparator; | |
| class Animal implements Comparator<Animal> { | 
  
    
      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
    
  
  
    
  | public class Circle extends Shape { | |
| double radius; | |
| public Circle(String name, double radius) { | |
| this.name = name; | |
| this.radius = radius; | |
| this.area = Math.PI * Math.pow(radius, 2); | |
| this.perimeter = 2 * Math.PI * radius; | |
| } | 
  
    
      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
    
  
  
    
  | public class Circle extends Point { | |
| protected double radius; | |
| public Circle() { | |
| // default constructor | |
| } | |
| public Circle(double radius, double x, double y) { | |
| this.radius = radius; | |
| this.x = x; | 
  
    
      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.awt.; | |
| import javax.swing.; | |
| import java.awt.event.*; | |
| public class BobBurgerPanel extends JPanel{ | |
| private JPanel buttonPanel; | |
| private JButton smallDrink; | 
  
    
      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
    
  
  
    
  | # write a function | |
| # in <- string | |
| # out <- boolean valid | |
| # str = {}[]() | |
| # ({[]}) valid | |
| # ({})[] valid | |
| # ({)[] invalid | |
| # ({)[]} invalid | 
NewerOlder