|
|
#12681 |
|
Micropolyphoner
Join Date: Jun 2006
Location: Winnipeg, Canada
|
Why? I know you don't want to hear it, but it's super easy. But whatevs... Just buy a Dell or something.
|
|
|
|
|
|
#12682 | |
|
<3's Summer Glau
Join Date: May 2007
Location: Minneapolis, MN
|
Quote:
May I ask why? It's really a lot easier than it looks. It's literally just putting the parts in like the only place it can go.
__________________
(Follow me!!)
And a word to the wise; When the fire dies, you think it's over but it's just begun. |
|
|
|
|
|
|
#12683 |
|
Tyrion is da bomb.
Join Date: Sep 2011
Location: Newcastle, UK
|
Hey, computer thread.
This is the laptop I'm thinking of saving for - http://www.pcworld.co.uk/gbuk/hp-pa...893788-pdt.html I need to know if this will be suitable for recording guitar using an interface, which is the main thing I need a laptop/computer for. I'd prefer a laptop as my bedroom is too small for a desktop, but I could maybe squeeze one in. Anyway, opinions? |
|
|
|
|
|
#12684 | ||||
|
UG's BBW Lover
Join Date: Feb 2009
Location: Maryland
|
Quote:
It's more than powerful enough to record with, but HPs break more often than eggshells. Look for something similar from ASUS or Toshiba, which are tanks compared to HPs.
__________________
Quote:
Quote:
Quote:
Voted UG's worst cross dresser.
|
||||
|
|
|
|
|
#12685 | |||
|
The bunny slayer
Join Date: Oct 2008
Location: Indiana
|
Quote:
I agree with this. I've never personally had a problem with my HP computers, but I've heard a lot of terrible stories. I've also had to work on a few. Though, I should add that my customer service experience with ASUS was way sub-par. They really pissed me off with how they handled my dysfunctional motherboard.
__________________
Quote:
Quote:
I'm Ron ****ing Swanson |
|||
|
|
|
|
|
#12686 |
|
Micropolyphoner
Join Date: Jun 2006
Location: Winnipeg, Canada
|
HP are apparently very good at customer service. I guess practice makes perfect.
|
|
|
|
|
|
#12687 |
|
Registered User
Join Date: May 2006
|
Have an HP laptop at home on which the power button had just stopped working for no apparent reason. It got fixed though. Still works alright.
|
|
|
|
|
|
#12688 | ||||
|
UG's BBW Lover
Join Date: Feb 2009
Location: Maryland
|
Quote:
![]() So, I put this together for you. If you can find a shop that's willing to build it for you, this will be a pretty awesome system. If you can't find a shop to build it for you, post back and i'll try and help you find a good pre-built system. If anyone else sees a problem or has a suggestion with those parts, don't be afraid to yell at me for it. >_>
__________________
Quote:
Quote:
Quote:
Voted UG's worst cross dresser.
|
||||
|
|
|
|
|
#12689 |
|
Micropolyphoner
Join Date: Jun 2006
Location: Winnipeg, Canada
|
Swap out the Antec 300 for an Antec 300 2, and that's about as good as it gets.
Altough is a 620W PSU enough? I mean, I can see you have the PSU calculator open in another tab but still that seems somewhat low for that rig. |
|
|
|
|
|
#12690 | |||
|
UG's BBW Lover
Join Date: Feb 2009
Location: Maryland
|
I was thinking the same thing. Everything added up to 457 watts IIRC. Not sure what's up with that.
I would have put in the 300 2, but it was 20 GBP more than the 300 on that site. Just not worth it IMO, although I do love mine. ![]()
__________________
Quote:
Quote:
Quote:
Voted UG's worst cross dresser.
|
|||
|
|
|
|
|
#12691 |
|
Micropolyphoner
Join Date: Jun 2006
Location: Winnipeg, Canada
|
The Asus calculator is giving me 700 watts, so I'd probably get at least that to be safe. That's an awful lot of kit for a 600W psu.
|
|
|
|
|
|
#12692 | ||
|
The bunny slayer
Join Date: Oct 2008
Location: Indiana
|
Computer Thread!
I showed my game to my java instructor, and she said some parts are not correctly structured. I use "continue;" and "break;" often in my code. I have fixed the "break;", so there are no more of those. Now, the reason I have the "continue;" is because of wrong options and the like. For example, if the user types in an invalid option, it says "That is not a correct option!" continue;. She recommended to me that I create a new method that handles the user input, and loops until it gets a correct one, and not even touch the main game until it did. Problem is, I don't know much about methods, and am not sure how I would implement it. Creating the method would be easy enough, and I know how to call them, it's just... I can't wrap my head around it for some reason.
__________________
Quote:
Quote:
I'm Ron ****ing Swanson |
||
|
|
|
|
|
#12693 |
|
1984
Join Date: Aug 2005
Location: Adelaide, Australia
|
add some context to what you want to do and I'll help you out.
__________________
$100AUD Super Strat Build
Kasabian - Fire fan video/uni work. Watch it! Jackson Dinky with TB-11 + SH-1 Pickups & Gotoh Floyd Rose Washburn D10S Dunlop 535Q Crybaby Fulltone OCD MXR 6 Band EQ Laney VC15 Hayden 2x12 |
|
|
|
|
|
#12694 |
|
Micropolyphoner
Join Date: Jun 2006
Location: Winnipeg, Canada
|
Well, without seeing the source I can't really give you specifics, but in general you'd have your method header and then inside have a loop that asks for user input until it gets correct input.
So for instance Code:
You could also add a parameter to the method that indicates what kind of input is expected or bounds of some kind like: Code:
You'd replace anywhere in your main method you ask for input with a method call. |
|
|
|
|
|
#12695 | |||
|
The bunny slayer
Join Date: Oct 2008
Location: Indiana
|
Quote:
That's the problem lol, methods are new to me (other than main), so I really don't know how to define the context. Right now I have a bunch of if-statements that are like if(userinput is A) else if(userinput is B) .... .... else "That's not a correct option" I know that's not the most efficient way to go about it, but that's all I knew at the time I wrote it. Now that I know how to manipulate methods, I may as well just re-write the entire thing.
__________________
Quote:
Quote:
I'm Ron ****ing Swanson Last edited by eGraham : 10-09-2012 at 02:35 PM. |
|||
|
|
|
|
|
#12696 | |
|
1984
Join Date: Aug 2005
Location: Adelaide, Australia
|
Quote:
what do you want it to do? how are you currently getting input? how does your program currently react to input? so maybe Code:
something like that, but that's obviously a mess lol
__________________
$100AUD Super Strat Build
Kasabian - Fire fan video/uni work. Watch it! Jackson Dinky with TB-11 + SH-1 Pickups & Gotoh Floyd Rose Washburn D10S Dunlop 535Q Crybaby Fulltone OCD MXR 6 Band EQ Laney VC15 Hayden 2x12 |
|
|
|
|
|
|
#12697 | ||
|
The bunny slayer
Join Date: Oct 2008
Location: Indiana
|
I get input through JOptionPane, so like:
Code:
At that point I did know about the += thing, but forgot about it for some reason. That's kind of embarassing lol.
__________________
Quote:
Quote:
I'm Ron ****ing Swanson Last edited by eGraham : 10-09-2012 at 02:45 PM. |
||
|
|
|
|
|
#12698 | ||
|
UG's Grey Square
Join Date: Sep 2010
Location: The Moral High Ground, Scotland
|
Hey ladies. I'm an unashamed computer geek, so I thought I'd post in here.
Quote:
Personally I'd recommend the Bitfenix Shinobi - a better all round case at that price point, and looks sexy to boot. Especially if the buyer is buying through Overclockers, since they seem to have some sort of deal with Bitfenix - you can often find special offers on their stuff. Also, the 7850 is better value for money IMO unless you absolutely must have the best. It's 4/5 of the product for 1/2 the price. Just my 2 cents. ![]() Don't really know why I'm addressing this to you anyway, but y'know. Edit: actually, if you're going for maximum value, then you can find a better offer on most items in the list. You can get a better modular PSU for less, and IMO the Asrock Z77 Extreme 4 is a better option than Asus. If whoever is building this thing wants list of my ideal build, just ask.
__________________
LOOK Call me Neutral. Quote:
I am back in beige. HIBERNIAN FC
SCOTTISH CUP WINNERS 12/13 Last edited by NeutralFan : 10-09-2012 at 02:49 PM. |
||
|
|
|
|
|
#12699 | |
|
1984
Join Date: Aug 2005
Location: Adelaide, Australia
|
Quote:
its just a shorthand, what you've got reads better anyway. you might have to rethink everything to be honest. The whole point of making a method to take input would be to separate the input processing from the game logic and output (and also make separate methods for those respectively too).
__________________
$100AUD Super Strat Build
Kasabian - Fire fan video/uni work. Watch it! Jackson Dinky with TB-11 + SH-1 Pickups & Gotoh Floyd Rose Washburn D10S Dunlop 535Q Crybaby Fulltone OCD MXR 6 Band EQ Laney VC15 Hayden 2x12 |
|
|
|
|
|
|
#12700 | ||
|
The bunny slayer
Join Date: Oct 2008
Location: Indiana
|
Right, that's why I'm kind of putting it off at the moment. It would be better to restructure it entirely using methods, but I'm just not ready for that work yet lol.
The code's sitting at just under 400 lines now. I know that's not a lot by any standard, but it's the biggest I've made and I don't feel like going through it again just yet. I am taking recommendations, though, so your input is appreciated and welcome.
__________________
Quote:
Quote:
I'm Ron ****ing Swanson |
||
|
|
|
![]() |
| Thread Tools | Rate This Thread | |
|
|