• Welcome to Valhalla Legends Archive.
 
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - Falcon[anti-yL]

#1
Excess of Grok / OU destroys TT
November 22, 2008, 10:33 PM
So, where was Tech's swarming defense hunh? O wait, more importantly, where was that high scoring offense? Can't win against any good teams on the road?
Its pretty funny watching Tech players losing it and committing all those personal fouls when the score got lopsided, shows exactly how undisciplined and unrespectful they are. They deserve this humiliation, congrats to the Sooners.
#3
Gaming Discussion / Broodwar 1.12b no cd crack
June 07, 2005, 05:34 PM
My cd rom broke yesterday and now I'm trying to find a no cd crack for broodwar. I've searched on google and the ones I found were either for old versions or don't work.
#4
For the last couple of days my computer has been restarting itself when its been idle for a long time. I made sure to turn off anything in properties that might cause this, including hibernate. It still does it, is there any way to know what causes it? I didn't change anything, it just started happening a few days ago.
#5
General Discussion / Cell Microprocessor
February 08, 2005, 05:03 PM
Intel's days may be numbered as the folks at IBM, Sony and Toshiba reveal details of their new, more powerful, microprocessor chip.

Engineers from the three companies promise the powerful new chip will have the processing power of a supercomputer. In addition to computers, both business and personal, the new chip will be able to power gaming consoles and televisions.

The Cell is comprised of 234 million transistors. Intel�s latest Pentium 4 chips have only 125 million. This is expected to have tremendous implications in the gaming industry where the Cell is promised to "deliver vastly improved, real-time response for entertainment and rich media applications".

Damn, its almost twice as fast as the latest P4 processor. Can't wait to get me one of these 8)
#6
Thing-O-Rama ™ / Super Bowl XXXIX
February 05, 2005, 06:47 PM
 ;D
#8
General Discussion / Faster computers
February 02, 2005, 08:38 PM
HP Claims Invention Can Speed up Computers

This is not an incremental increase, mind you, but "reinventing the computer at the molecular scale." Sadly, there's no telling when this will leave the lab or trickle down to the rest of us.

"Hewlett-Packard Co. said Tuesday that its researchers have proven that a technology they invented could eventually replace the transistor, a fundamental building block of computers.

"In a paper published in Tuesday's Journal of Applied Physics, HP said three members of its Quantum Science Research group propose and demonstrate a 'crossbar latch,' which provides the signal restoration and inversion required for general computing without the need for transistors.

"HP said in a statement that the technology could result in computers that are thousands of times more powerful than those that exist today."
#9
Java Programming / Sorting arrays
February 01, 2005, 08:11 PM
I'm supposed to create an array of 50 random integers between 1 and 100, then sort it using the dumb bubble sort. Printing the original list, the list after each pass, and the final sorted list. Here's my code

import java.lang.System;
import java.util.Random;

public class sort_2
{
public static void main(String []args)
{
Random r = new Random();
int x[] = new int[50];
int swaps = 0, passes = 0, temp;

for(int i=0;i<x.length;i++)
{
x[i] = r.nextInt(100) + 1;
}
System.out.print("Original Array \n[ ");
for(int i=0;i<x.length;i++)
{
System.out.print(x[i]+" ");
}
System.out.print("] \nSorted Array \n[ ");
for(int p=1;p<x.length;p++)
for(int i=0;i<x.length-1;i++)
{
if(x[i] > x[i+1])
{
temp = x[i];
x[i] = x[i+1];
x[i+1] = temp;
}
}
for(int a=0;a<x.length;a++)
{
System.out.print(x[a]+" ");
}
System.out.print("] \n");
}
}

That only prints the original and final sorted list, I thought it would print it after each pass if I put

for(int a=0;a<x.length;a++)
{
System.out.print(x[a]+" ");
}

after

if(x[i] > x[i+1])
{
temp = x[i];
x[i] = x[i+1];
x[i+1] = temp;
}

But when I compile and run it, it seems like an infinite loop. Can someone tell me where to put the output statement that'll print the list after each pass?
#14
Fun Forum™ / Funny quotes
December 09, 2004, 08:04 PM
Quote
[20:57:35] <P)c-Programmer> C++ sucks.
[20:57:36] P)c-Sparkles@Lordaeron joined the channel using Warcraft III: The Frozen Throne (level 0, best race random, icon peon, clan PC).
[20:57:38] <Furry> ...
[20:57:39] <Furry> LOL
[20:57:41] <winbotting#2> lol
[20:57:43] <winbotting#2> yea
[20:57:45] <winbotting#2> it does
[20:57:46] <winbotting#2> lol
[20:57:49] <P)c-iNViSioNZ> Julia
[20:57:50] <P)c-Programmer> too easy to hack.
[20:57:55] <P)c-Programmer> I use Python
[20:57:57] <Furry> That's why everything is written in it huh?
[20:58:12] <P)c-Programmer> name 10 things written in it.
[20:58:38] <Furry> I dunno I don't know C++ or w/e I'm just trying to sound cool, ignore me.
#15
Java Programming / Problem
December 08, 2004, 04:35 PM
I have to write a program that outputs all the prime numbers from 2-1000 using nested loops. This is what I came up with:

public class prime {
public static void main(String[] args) {
//outputs all prime numbers from 2-1000
int x,y,count=0;

for(x=2;x<=1000;x++)
{
for(y=0;y<=x;y++)
{
if(x%y==0)
{
count++;
if(count==2)
{
System.out.println(x);
count=0;
}
}
}
}
}
}

When I compile and run it I get an
Quote
Exception in thread "main" java.lang.ArithmeticException: / by zero at prime.main<prime.java:11>
What is wrong?
#17
Java Programming / subString
October 14, 2004, 08:39 PM
I'm writing a program that tells you what day you were born on. I want to input the year in 4 digits, then check to see if its before 1900. If its not, I want to take the last 2 digits out of the 4 digits. I know there was a subString for Strings but is there a way to do it for Integers?
#19
General Discussion / XP error
September 11, 2004, 08:54 PM
http://www.wolfness.com/upload/xperror.JPG
I got home today and saw this error box on my screen and I swear it wasn't there when I left. This is the first time I've gotten that error, what causes it?
#20
General Discussion / Gmail problem
July 28, 2004, 08:27 PM
I type in my login info and it shows loading like normal but than it turns into a blank page and it says done at the bottom. I tried both IE and Firefox. Has anyone else had this problem? I've been having it for 3 days now.