Owen Kuemerle
This user hasn't shared any biographical information
Posts by Owen Kuemerle
Some Things I’ve Noticed In College…
Sep 19th
OK, so I’ve been here for, like, a month I guess and I would like to point out some things that are different in college than in regular high school or grade school life. I’ll list them with numbers so you kiddies can keep track of how many things I’ve listed. Alright, here it goes (and keep your grubby hands off of this):
- On week nights, I usually stay up until 12–1 AM whereas in high school I would go to bed at around 10–10:30. I guess it’s partly becuase my mom isn’t yelling at me to go to bed. The other part is that none of my classes start at 7:15 in the morning. I can afford to stay up later becuase most of my classes start at, like, 8:45 and 10:45 so I can use those delayed class times to sleep in an extra hour or two, or three. The weekends usually include sleep time at 2–3 AM. On the computer more.
- I get to eat a real breakfast. Back in high school, I got up so early to get ready and drive to school that I really didn’t have time to eat a good breakfast. Not so here in college. I can get breakfast from, I think it’s 7–10:30 so I usually go half an hour before my More >
Things that piss me off… a lot. Part I
Aug 24th
OK, so this is actually the first real post I’ve ever made, so be nice. Things that piss me off… a lot. At the top of this list is people who post pictures on social networking web sites (Facebook, PornSpace [I have it from a good source this is true], etc…) that contain references to alcohol when the participating parties are under the age of 21. If CBS didn’t censor Dr. Phil, I’m sure he would say (his famous line, uncensored): WHAT THE HELL ARE YOU THINKING?!?!?! (With the explanation and question marks) There are several reasons why these types of pictures piss me off.
- There is an intimate possibility that an employer will come across this picture and not hire you. Let me give you a word of advice my beer picture-posting friends (just a figure of speech. I don’t actually have any): employers want someone who is a well-rounded person, someone who can communicate well, someone who is a good leader, someone who can work well in a group setting, someone who makes good choices, and most importantly; someone they can trust. The last two points are described in more detail in number 2.
- When you post a picture of yourself or someone else holding a red Solo cup, a beer can, liquor bottle, or a case of beer, this More >
Euler Project 1 Solution
Jan 12th
Ahh, yes. Good ol’ Project Euler. Here’s my solution:
[cc lang=“java”]
import java.util.Scanner; //Program to solve Euler Project One //kuemerle5 //Block 2 public class euler1{ private int inputNum; private int factorOne; private int factorTwo; private int numSum;
//This method simply gets the user’s input public void getInfo(){ Scanner in = new Scanner(System.in); System.out.print(“Please enter the number you wish me to find the sum of two numbers: ”); inputNum = in.nextInt(); System.out.print(“Please enter the first multiple: ”); factorOne = in.nextInt(); System.out.print(“Please enter the second multiple: ”); factorTwo = in.nextInt(); System.out.println(“Thank you for your input. We will now do some calculations. Stand by…”); }
//This is the main part of the program, using a “for” statement, then a nested “if” statement public void doWork(){ for(int runAmt=1; runAmt<inputNum; runAmt+=1){ if(runAmt%factorOne==0 || runAmt%factorTwo==0){ numSum += runAmt; } } }
//The “getOutput” method prints out the results of the “doWork” method public void getOutput(){ System.out.println(“Sum is: ” + numSum); } }
[/cc]
Hello world!
Dec 16th
Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!
