Skip to content

Instantly share code, notes, and snippets.

View applegateaustin's full-sized avatar

Austin Applegate applegateaustin

  • Lawrence Kansas
View GitHub Profile
Fourscoreandsevenyearsagoourfathersbroughtforthonthiscontinent,anewnation,conceivedinLiberty,anddedicatedtothepropositionthatallmenarecreatedequal.
Nowweareengagedinagreatcivilwar,testingwhetherthatnation,oranynationsoconceivedandsodedicated,canlongendure.Wearemetonagreatbattlefieldofthatwar.Wehavecometodedicateaportionofthatfield,asafinalrestingplaceforthosewhoheregavetheirlivesthatthatnationmightlive.Itisaltogetherfittingandproperthatweshoulddothis.
But,inalargersense,wecannotdedicate–wecannotconsecrate–wecannothallow–thisground.Thebravemen,livinganddead,whostruggledhere,haveconsecratedit,faraboveourpoorpowertoaddordetract.Theworldwilllittlenote,norlongrememberwhatwesayhere,butitcanneverforgetwhattheydidhere.Itisforustheliving,rather,tobededicatedheretotheunfinishedworkwhichtheywhofoughtherehavethusfarsonoblyadvanced.Itisratherforustobeherededicatedtothegreattaskremainingbeforeus–thatfromthesehonoreddeadwetakeincreaseddevotiontothatcauseforwhichtheygavethelastfullmeasureofdevotion–thatweherehighl
Fourscoreandsevenyearsagoourfathersbroughtforthonthiscontinent,anewnation,conceivedinLiberty,anddedicatedtothepropositionthatallmenarecreatedequal.
Nowweareengagedinagreatcivilwar,testingwhetherthatnation,oranynationsoconceivedandsodedicated,canlongendure.Wearemetonagreatbattlefieldofthatwar.Wehavecometodedicateaportionofthatfield,asafinalrestingplaceforthosewhoheregavetheirlivesthatthatnationmightlive.Itisaltogetherfittingandproperthatweshoulddothis.
But,inalargersense,wecannotdedicate–wecannotconsecrate–wecannothallow–thisground.Thebravemen,livinganddead,whostruggledhere,haveconsecratedit,faraboveourpoorpowertoaddordetract.Theworldwilllittlenote,norlongrememberwhatwesayhere,butitcanneverforgetwhattheydidhere.Itisforustheliving,rather,tobededicatedheretotheunfinishedworkwhichtheywhofoughtherehavethusfarsonoblyadvanced.Itisratherforustobeherededicatedtothegreattaskremainingbeforeus–thatfromthesehonoreddeadwetakeincreaseddevotiontothatcauseforwhichtheygavethelastfullmeasureofdevotion–thatweherehighl
/*Programmer: Austin Applegate
Date modified: 1/28/13 Description: read a file and take the contents of it and clean it up and fix the error's and then write it to a new file.
Lab Number: 1
Date Due: 2/6/13
*/
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
@applegateaustin
applegateaustin / vowels.java
Created December 5, 2012 19:18
if character equal a, e, i, o, u replace it with that letter capitalized times 3
import java.util.Scanner;
import java.lang.*;
import java.io.*;
public class vowles {
public static void main(String[] args) {
Scanner kb = new Scanner(System.in);
System.out.println("Please enter the name of the file: ");
String usersFile = kb.nextLine();
public class TestOldMacDonald {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
OldMacDonald farmer = new OldMacDonald();
Animal type = new Animal();
public class OldMacDonald {
private String animal;
public void setAnimal(String newAnimal){
animal = newAnimal;
}
public String getAnimal(){
return animal;
@applegateaustin
applegateaustin / Animal.java
Created October 12, 2012 20:05
old MacDonald
public class Animal {
private String anim_type;
private String anim_sound;
public void setSound(String newSound){
anim_sound = newSound;
}
public void setType(String newType){
public class KUStudent {
private String stud_fname;
private String stud_lname;
private String stud_kuid;
private String stud_dpt;
public void set_name(String fname, String lname){
stud_fname = fname;
import java.util.Scanner;
public class KUStudentTest {
public static void main(String[] args){
Scanner keyboard = new Scanner(System.in);
KUStudent name = new KUStudent();
KUStudent info = new KUStudent();
public class KUStudent {
private String stud_fname;
private String stud_lname;
private String stud_kuid;
private String stud_dpt;
public void set_name(String fname, String lname){
stud_fname = fname;