Something went wrong. Try again later

Okari

This user has not updated recently.

167 0 0 1
Forum Posts Wiki Points Following Followers

Okari's forum posts

Avatar image for okari
Okari

167

Forum Posts

0

Wiki Points

1

Followers

Reviews: 0

User Lists: 1

#1  Edited By Okari

I've noticed a few compression issues, mainly on the Uncharted Quick Look, but maybe they've always been there and I'm just noticing it now because of the switch. Still sucks though that we get the intern content in 720p on youtube, but get the main videos at much lower quality.

Avatar image for okari
Okari

167

Forum Posts

0

Wiki Points

1

Followers

Reviews: 0

User Lists: 1

#2  Edited By Okari
@crusader8463 said:
@Castiel:@Okari:  I understand what you guys are saying, and I agree to a point, but the options were ether have nothing at all tonight, or this. I would rather them do this.
Very true. I failed to remember that Tested was going to PAX as well, they probably have more important things to do than host TNT. 
Avatar image for okari
Okari

167

Forum Posts

0

Wiki Points

1

Followers

Reviews: 0

User Lists: 1

#3  Edited By Okari
@VIGGO123 said:

@Castiel: Well, considering the entire GB crew is at PAX this week, tested are hosting the show, and it makes sense for them to play something they know a lot about.

But doing it again, after only a few weeks has passed since the last time they did TF2 is a bit too much.  They could do two hours of Farmville and I'd just be glad it's something other than a shooter.
Avatar image for okari
Okari

167

Forum Posts

0

Wiki Points

1

Followers

Reviews: 0

User Lists: 1

#4  Edited By Okari

Dragon Quest Monsters has always been a vastly different game than the main series. It's all about catching monsters and breeding. It is essentially, Pokemon for adults. I've played each iteration, and it's always a self-contained story. I doubt this one would have any ties to DQIX.

Avatar image for okari
Okari

167

Forum Posts

0

Wiki Points

1

Followers

Reviews: 0

User Lists: 1

#5  Edited By Okari
@jagenheim said:
Due to external circumstances that are entirely out of our control, we are disappointed to announce that our Whiskey Media Roku Channel is dead. There will be no further development on the new 2.0 version, and it will never be released.

I found this on the developers homepage? As a new Roku user, I'm worried. Should I be worried?

Sounds like they were told to stop development now that Whiskey Media is making an official channel for Roku.  You'll still be able to use it, and when the official channel is released you can switch over to that one.
Avatar image for okari
Okari

167

Forum Posts

0

Wiki Points

1

Followers

Reviews: 0

User Lists: 1

#6  Edited By Okari

Try Okage:Shadow King. It's not as anime focused as Gust and NIS games are, but it's a very unique story with the usual turn-based combat that so few of us love still. To this day I've never come across anything similar to that game.

Avatar image for okari
Okari

167

Forum Posts

0

Wiki Points

1

Followers

Reviews: 0

User Lists: 1

#7  Edited By Okari

The Bombcast doesn't fill my weekly need of Dragon Ball Z analysis, and the significance that the Ginyu Force had on Vegeta's psyche.

Avatar image for okari
Okari

167

Forum Posts

0

Wiki Points

1

Followers

Reviews: 0

User Lists: 1

#8  Edited By Okari

I was just thinking of downgrading to one disc, but now that it's going to be the same price as my current plan, it looks like I'm either going to have to drop DVDs all together or drop Blu-Ray. 
Does anyone know what happens to your DVD queue if you go streaming only? Does it completely disappear, making it to where if you ever went back to a DVD plan you would have to manually add every movie back to your queue?

Avatar image for okari
Okari

167

Forum Posts

0

Wiki Points

1

Followers

Reviews: 0

User Lists: 1

#9  Edited By Okari
@proggykins:

Huh. That seems kind of redundant. 
Good luck on the class. Programming can be really frustrating at first, but eventually it can become a fun hobby.
Avatar image for okari
Okari

167

Forum Posts

0

Wiki Points

1

Followers

Reviews: 0

User Lists: 1

#10  Edited By Okari

It's a bit too late for me to debug this but from looking at it there's a few things that should be changed. First, attempts should be attempts = 0. It's automatically declared when the page is loaded, so you're really limiting the user to two errors rather than three. Second, replace the while loops with if statements like this:
I can't get the spoiler warning to work so here's the code:

 function validate(){

var error = 0;

if (attempts => 3){

alert('Error Too many submissions');

}

else if (attempts  < 3){

if (username.length < 6){
alert('error');
error++;
}

if (password1 != password2){

alert('error')
error++;
}

if (error){

attempts++;
}
}
}

Hopefully you get the gist of what I'm saying. I'm a bit constrained on time right now so I can't write the code out completely.