Forum: Windows NT / 2000 / XP / 2003 Jul 4th, 2008 |
| Replies: 0 Views: 265 |
Forum: Storage Feb 5th, 2008 |
| Replies: 2 Views: 344 Re: Notebook hdd speed compatibility... alright, well I might get a faster one, but I might not. I actually spent most of my money for a new hdd on a 6 ft sword. ^_^ I have a friend, though, but he might not sell his to me cheap.
Thanks... |
Forum: Storage Jan 22nd, 2008 |
| Replies: 2 Views: 344 Notebook hdd speed compatibility... Is it alright to upgrade the hdd speed in a notebook that's 2 years old? I need a new hdd, but I want it faster. Would this be likely to cause problems? Its original speed was 4200 rpm, I want... |
Forum: Troubleshooting Dead Machines Jan 22nd, 2008 |
| Replies: 3 Views: 425 Re: Overheated crash... Ah hell... Well, that makes me feel fine. Getting a new hard drive sounds like a good thing for me, this means I can upgrade with a good excuse ^_^
Good thing I got that 500G external for christmas, cause I... |
Forum: Troubleshooting Dead Machines Jan 22nd, 2008 |
| Replies: 3 Views: 425 Overheated crash... Ah hell... My hard drive just went the way of my last auto-engine today... overheating crash. Run to the Hills.
Has anyone ever had this problem before? My HDD has been hanging a lot lately, and today it hung... |
Forum: C++ Jan 17th, 2008 |
| Replies: 7 Views: 543 Re: Joypad to Text interface... How? *sigh* you're missing the point. sure, I could do it their way and use the software they give me (which I hear works too slowly on macro commands, which is what I'd be using almost exclusively), or I... |
Forum: C++ Jan 17th, 2008 |
| Replies: 7 Views: 543 Re: Joypad to Text interface... How? Okay, how would you direct those commands to the device? How do you catch commands from the device? If I can figure out what the keys send to the computer I can pretty much just use cin or something... |
Forum: C++ Jan 17th, 2008 |
| Replies: 7 Views: 543 Re: Joypad to Text interface... How? No, I'm getting one. And Nothing says "linux compatible" on the box. NOTHING. I'm asking how one would go about programming an interface for a peripheral device like this one. What libraries? Would I... |
Forum: C++ Jan 17th, 2008 |
| Replies: 7 Views: 543 Joypad to Text interface... How? This is going to sound wierd at first, but I found a really cool usb controller. Let's see if I can find a link to it... here it is... |
Forum: Geeks' Lounge Dec 21st, 2007 |
| Replies: 85 Views: 3,696 Re: What is on your Christmas list? I'm personally really hoping for 3 things:
1) a PSP, what can I say, those things are pretty sweet now that they've (mostly) fixed the dead-pixel problem
2) a Mini-Mac, I want the one with the core 2... |
Forum: C++ Dec 3rd, 2007 |
| Replies: 3 Views: 624 Re: iterator addition - How does it work? Thanks again; that one was a little to simple for me to be so stuck on ^_^U
How do you know so much about iterators, anyways? You must need to use them all the time if you can so quickly come up... |
Forum: C++ Dec 3rd, 2007 |
| Replies: 3 Views: 624 iterator addition - How does it work? Great, more iterator trouble.
First we have an iterator of any value. I want to make a second iterator that starts one higher than the first one. Look-see:
for( iterator_type one ; /*...*/)
{
... |
Forum: C++ Dec 3rd, 2007 |
| Replies: 2 Views: 917 |
Forum: C++ Nov 19th, 2007 |
| Replies: 2 Views: 917 iterator error of unknown meaning - STL map Alright, here's the code:
for ( map<string,int>::iterator word = mostUsed.begin() ;
word != mostUsed.end() ; word++ )
and the error by g++ - (using make)
error: conversion from... |
Forum: C++ Nov 6th, 2007 |
| Replies: 3 Views: 380 Re: Image searching... The reason I'm using these formats is that they're a good place to start off. I'll eventually make this program able to handle many types of pictures, but I've got to start somewhere ^_^
Alright,... |
Forum: C++ Nov 5th, 2007 |
| Replies: 3 Views: 380 Image searching... Alright, I'm developing a program that is going to take in .pbm image files, manipulate them, and output them in .ppm (P3) format.
That's all fine and good; I've got that down.
However, I'm looking... |
Forum: Window and Desktop Managers Sep 20th, 2007 |
| Replies: 7 Views: 2,222 |
Forum: Window and Desktop Managers Sep 19th, 2007 |
| Replies: 7 Views: 2,222 |
Forum: Window and Desktop Managers Sep 4th, 2007 |
| Replies: 7 Views: 2,222 |
Forum: Window and Desktop Managers Sep 2nd, 2007 |
| Replies: 7 Views: 2,222 |
Forum: Window and Desktop Managers Sep 1st, 2007 |
| Replies: 7 Views: 2,222 |
Forum: Techies' Lounge May 24th, 2007 |
| Replies: 3 Views: 524 |
Forum: Techies' Lounge May 23rd, 2007 |
| Replies: 3 Views: 524 |
Forum: C++ Apr 24th, 2007 |
| Replies: 18 Views: 1,346 Re: [C++] Opening functions for editing? I dunno about that... do windoze systems come with compilers on them? If your school uses macs then you might be in business, but I don't think windoze comes with any c++ compilers.
And when I think... |
Forum: C++ Apr 23rd, 2007 |
| Replies: 8 Views: 2,321 Re: string input segmentation fault on linux Alright, I managed to figure out that 1) my map files might have extra spaces, causing me to have some columns (lines) that have an empty index.
2) the backwards vector was all I needed, my board is... |
Forum: C++ Apr 23rd, 2007 |
| Replies: 8 Views: 2,321 Re: string input segmentation fault on linux Oh, crap. Yeah I ALWAYS mistype that header, and I guess I did forget the vector library, too. My bad.
I know some things are a bit strange... I will try the getline( cin , fileName ); bit, but you... |
Forum: C++ Apr 23rd, 2007 |
| Replies: 8 Views: 2,321 Re: string input segmentation fault on linux Salem: The first one does crash before execution of the line function( fileName );. I tested by putting a cout before the function call. The second doesn't crash.
Alright, well let's see here... I... |
Forum: C++ Apr 23rd, 2007 |
| Replies: 8 Views: 2,321 Re: string input segmentation fault on linux Infarction: Well, there's not much necessary, but here's the code that gave the error.
#include <iostream>
#include <string>
#include <sstream>
#include <ifstream>
#include "function.h" /* for the... |
Forum: C++ Apr 23rd, 2007 |
| Replies: 8 Views: 2,321 string input segmentation fault on linux c++, Debian linux system, g++ compiler
Alright, I have a serious problem. I keep getting a segmentation fault everytime cin recieves a string with a period in it and stores it into a string. I used... |
Forum: C++ Apr 22nd, 2007 |
| Replies: 5 Views: 5,355 |
Forum: Posting Games Apr 14th, 2007 |
| Replies: 832 Views: 28,648 |
Forum: Networking Hardware Configuration Apr 14th, 2007 |
| Replies: 12 Views: 2,600 Re: Wireless antennas and Laptops. Lol, yeah that'll happen... I actually took this apart and found a guide online... sauce later... but there's a little junction thingy soldered on the board (that doesn't actually... do anything)... |
Forum: *nix Hardware Configuration Apr 14th, 2007 |
| Replies: 9 Views: 2,600 Re: ipod on linux? help... Lol, well I got it to connect; and no, I didn't have a mac formatted ipod XD
Apparently I have 3 ports: 2 on the left that are 2.0, and one on the right that's 1.0. I thought it was the other way... |
Forum: Networking Hardware Configuration Feb 5th, 2007 |
| Replies: 12 Views: 2,600 Re: Wireless antennas and Laptops. Junya : It's easier than taking apart and they are pretty cheap.
FireS - Not If I can do it with stuff I already have! I have plenty of free time to tell these needing do-it-your-selfers. This is my... |
Forum: C++ Feb 5th, 2007 |
| Replies: 3 Views: 959 Re: outputing image files in c++... Well... I killed windoze. It displeased me greatly. I can look into it on google, and in adept, but any Linux tools available?
(I always come here first, because it is so much easier to get help from... |
Forum: C++ Feb 5th, 2007 |
| Replies: 3 Views: 959 outputing image files in c++... Well, I guess I'm just here out of curiosity. I would like to know how one would go about outputting an image file.
I thought that maybe you could declare an ifstream, and try to read it in, but I... |
Forum: Geeks' Lounge Feb 5th, 2007 |
| Replies: 13 Views: 3,568 Re: IQ Test for USA Army Pilots Good God !!
That's friggin hard! I didn't understand 80% of that!
125 for me: missed #s: 7 8 9 11 12 13 14 15 17 and 18 T_T |
Forum: Geeks' Lounge Feb 5th, 2007 |
| Replies: 140 Views: 28,625 Re: Dani's Cookbook Alright here's an easy mid-west recipe: White-Castle Burgers. NO! we don't make them with a twentieth of a pounnd of meat like they do XD
You'll need a pound of beef, ( Doesn't matter how lean.... |
Forum: Geeks' Lounge Feb 5th, 2007 |
| Replies: 57 Views: 7,148 Re: Childhood Phobias OMG! ( I am still a child, truth be told ) But I am phobic of both insects and spiders! houseflies don't really bother, neither butterflies, but just about everything else and I'm scared it'll touch... |
Forum: Posting Games Feb 5th, 2007 |
| Replies: 2,356 Views: 144,497 |