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
var imageSource = new UriImageSource(); | |
imageSource.Uri = new Uri("https://images.pexels.com/photos/46710/pexels-photo-46710.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260"); | |
pictureTime.Source = imageSource; |
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
public class NumberNode { | |
private NumberNode next; | |
private int num; | |
public NumberNode(int num, NumberNode next) { | |
this.num = num; | |
this.next = next; | |
} | |
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
public class NumberNode { | |
private NumberNode next; | |
private int num; | |
public NumberNode(int num, NumberNode next) { | |
this.num = num; | |
this.next = next; | |
} | |
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
@extends('layouts.app') | |
@section('content') | |
<h1>Meet the Sponsors.</h1> | |
<div class="container"> | |
<div class="break b5"></div> | |
@for($i = 0; $i < 4; $i++) | |
@php | |
switch($i) { | |
case 0: |
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
// File Name: NumberList.java | |
// | |
// Author: Quinn Zipse | |
// | |
// Uses inner classes to try and hide the list data structure from the public | |
// | |
public class NumberList { | |
private NumberNode head; | |
private NumberList(NumberNode head){ |
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
public class DoublyLinkedList { | |
private int size; | |
private NumberNode head; | |
private NumberNode tail; | |
public DoublyLinkedList() { | |
clear(); | |
} | |
public void clear() { |
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
import java.io.BufferedReader; | |
import java.io.File; | |
import java.io.FileNotFoundException; | |
import java.io.FileReader; | |
import java.io.IOException; | |
import java.util.ArrayList; | |
import java.util.List; | |
public class SpellCheck { | |
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
# Homework1 Quinn Zipse | |
.data | |
prompt1: .asciiz "Enter the number of elements (between 1 and 30) in the array: " | |
prompt2: .asciiz "Enter " | |
prompt3: .asciiz " positive integers:" | |
prompt4: .asciiz "Wrong number entered.\n" | |
prompt5: .asciiz "Enter a postive number to search (-1 to quit): " | |
promptNotFound: .asciiz "Integer not found.\n" | |
promptFound: .asciiz "Integer found " | |
newLine: .asciiz " times.\n" |
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
import java.io.*; | |
import java.util.*; | |
public class ListInFile { | |
/* | |
Implements a sorted (ascending) list of ints (the keys) and fixed length character | |
string fields stored in a random access file. | |
Duplicates keys are not allowed. There will be at least 1 character string field | |
*/ |
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
.data | |
prompt1: .asciiz "Please enter a positive number: " | |
incorrectPrompt: .asciiz "Invalid number, please try again.\n" | |
prompt2: .asciiz "The " | |
prompt3: .asciiz " fib number is: " | |
newLine: .asciiz "\n" | |
.text | |
la $a0, prompt1 | |
la $a1, incorrectPrompt | |
jal readNonNegInt |
OlderNewer