me hate windows
Jul 22, 01:16 PM
Is there a way I can use my CRT iMac to boot off of my G4? It runs 8.6 and I wanted to see how it runs 10.2.
I have the install DVD, but it wont work in the iMac since it has a CD drive. If someone can tell me how to install it without ripping everything apart and switching drives that would be appreciated.
I have the install DVD, but it wont work in the iMac since it has a CD drive. If someone can tell me how to install it without ripping everything apart and switching drives that would be appreciated.
ghostlyorb
Apr 16, 07:01 AM
If you aren't buying it now, then your only option is to wait. When you have the money, then take a new look at the buyer's guide to see if there are any new news about the ACD.
Thunderbolt, possibly with daisy-chaining.
It would be legit with thunderbolt! (even more legit, I mean!)
Thunderbolt, possibly with daisy-chaining.
It would be legit with thunderbolt! (even more legit, I mean!)
baby duck monge
Jan 12, 08:50 PM
you could also use adiumx as your chat program if you don't already. there is a script you can download to control hidden dock prefs, etc, that would let you turn that on and off.
Queso
Jan 13, 11:41 AM
Cisco have owned this trademark for years. Apple were in negotiations to buy it, but for whatever reason they couldn't close the deal in time. Apple should therefore have not announced that the product was going to be called iPhone at the keynote.
Doing so before the deal was done was a big mistake. Cisco can now triple the price for the name and Apple either have to pay or look humiliated.
Apple can throw as many lawyers as they like at it now, but that name is still Cisco's property. Last time I looked, Cisco could afford a big legal team of their own. They can't be bullied here.
EDIT : Although whether the situation worldwide is quite so clear cut is debatable. Article from The Register. (http://www.theregister.co.uk/2007/01/12/cisco_apple_iphone_trademark_spat/)
Doing so before the deal was done was a big mistake. Cisco can now triple the price for the name and Apple either have to pay or look humiliated.
Apple can throw as many lawyers as they like at it now, but that name is still Cisco's property. Last time I looked, Cisco could afford a big legal team of their own. They can't be bullied here.
EDIT : Although whether the situation worldwide is quite so clear cut is debatable. Article from The Register. (http://www.theregister.co.uk/2007/01/12/cisco_apple_iphone_trademark_spat/)
more...
phillipsteak
Mar 14, 01:45 PM
Wirelessly posted (Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5)
This joke is funny and not over used at all. My favorite part is when you take a shot at the dev team and make your release date a long time away.
Apparently you're one of those guys who believes that the dev team owes you a jailbreak. Honestly if I had one I'd troll all the people like you, who tell the dev team they suck and go ahead and use their jailbreak anyway.
really? i thought he was making fun of those people.
This joke is funny and not over used at all. My favorite part is when you take a shot at the dev team and make your release date a long time away.
Apparently you're one of those guys who believes that the dev team owes you a jailbreak. Honestly if I had one I'd troll all the people like you, who tell the dev team they suck and go ahead and use their jailbreak anyway.
really? i thought he was making fun of those people.
MartyMacLord
Apr 26, 10:26 AM
Searched for iStopmotion in the appstore?
more...
phungy
Jun 24, 02:52 PM
Mac2Sell isn't too accurate. You might be able to get that quoted price on eBay but Apple sells a problem free 2.16 MBP for $1299 (+ tax of course) and fresh warranty.
Chris14
Mar 17, 04:28 PM
Throw some games in the hat please guys!
I'm looking for a game to play under windows on my machine (see sig)
What are you all playing at the moment?
I'm looking for a game to play under windows on my machine (see sig)
What are you all playing at the moment?
more...
SamIchi
Apr 16, 02:48 PM
Max Powers!
Simpson's refrence. :D
Simpson's refrence. :D
jessearl
Apr 6, 12:45 PM
I've been a Mac user for a year, and yet a quick flip through the "dummies" Panther books at the local bookstore taught me quite a few things I didn't yet know.
So, I'd like a book written about Tiger as I plan to purchase the update.
Is there a "best of the best" of these types of books? For example, are the books written by David Pogue considered to be the best typically and his upcoming Tiger book would be a good choice?
Just give me some options.
So, I'd like a book written about Tiger as I plan to purchase the update.
Is there a "best of the best" of these types of books? For example, are the books written by David Pogue considered to be the best typically and his upcoming Tiger book would be a good choice?
Just give me some options.
more...
stubeeef
Sep 23, 07:36 PM
Maybe you should post all your copy on this forum and let everyone do the work for ya.
Of course with my outstanding spelling and compostition skills, my own personal editor (skunk keeps working on me, to no avail I might add), and grammer check (I think it is on here somewherz), I could just do that my self 4 ya.
Rotz a Ruck there snapz. :p
Of course with my outstanding spelling and compostition skills, my own personal editor (skunk keeps working on me, to no avail I might add), and grammer check (I think it is on here somewherz), I could just do that my self 4 ya.
Rotz a Ruck there snapz. :p
chunhohuen
Apr 22, 08:05 AM
I'm surprised this compiles (i.e. that you only get errors when linking). The line
string input=inputusername;
must have thrown an error at you, since "inputusername" is not visible to functions outside the class.
Where you define the code, you need to put in classname::functionname
Do this for every function you define. This need not be done if you are within the class declaration.
void login::find()
{
ifstream file;
file.open("file.txt");
string input=inputusername;
string input_line;
bool found = false;
while( file >> input_line ) {
if( input_line.compare(input) == 0 ) {
cout << "The name " << input_line << " was found in file.\n";
found = true;
break;
}
}
Thank you very much !;)!
It can work now :p!
string input=inputusername;
must have thrown an error at you, since "inputusername" is not visible to functions outside the class.
Where you define the code, you need to put in classname::functionname
Do this for every function you define. This need not be done if you are within the class declaration.
void login::find()
{
ifstream file;
file.open("file.txt");
string input=inputusername;
string input_line;
bool found = false;
while( file >> input_line ) {
if( input_line.compare(input) == 0 ) {
cout << "The name " << input_line << " was found in file.\n";
found = true;
break;
}
}
Thank you very much !;)!
It can work now :p!
more...
barkomatic
Apr 6, 09:53 AM
Are "some people" your parents? It's relatively easy to fake a broken computer without actually harming it if you think about it -- but your request sounds sketchy to me.
The new i5 13 inch MBP performs better at some games and worse at others when comparing them to the previous generation. It's a compromise Apple had to make with this generation in order to get the Sandy Bridge processors. If gaming is important to you and money is tight I'd go for a PC with discrete graphics.
The new i5 13 inch MBP performs better at some games and worse at others when comparing them to the previous generation. It's a compromise Apple had to make with this generation in order to get the Sandy Bridge processors. If gaming is important to you and money is tight I'd go for a PC with discrete graphics.
blevins321
Apr 26, 09:34 AM
Quick update. I've made some more progress. I thought I had not been able to get the phone into DFU mode. I tried it a few more times (the steps of how to get it into DFU mode) and finally its restoring. My phone is staying on with the Plug into iTunes screen. will update once it is done restoring and installing the firmware.
edit: blevins just to be safe I took the sim out and made sure it was seated properly. thank you for the reply
edit2: it says the iPhone "iPhone" could not be restored. An unkown error occurred (1604)
If it's in DFU mode, there should be nothing on the screen. It's in recovery mode, not DFU. 1604 is a common problem when restoring in non-DFU mode.
edit: blevins just to be safe I took the sim out and made sure it was seated properly. thank you for the reply
edit2: it says the iPhone "iPhone" could not be restored. An unkown error occurred (1604)
If it's in DFU mode, there should be nothing on the screen. It's in recovery mode, not DFU. 1604 is a common problem when restoring in non-DFU mode.
more...
JollyJoeJoe
Apr 26, 08:45 PM
After some research my top 3 sorted options are:
1.- OCZ Vertex 2 120GB
2.- Intel X25-M 120GB
3.- Samsung 470 Series 128GB
I will be using it as my boot drive for Mac OS X 10.6.7, any suggestion which one would be the best option for speed ?, thanks
These are ok value for money options, try not to go with the OCz though if this article is anything to go by:
http://blog.macsales.com/9438-not-all-ssd%E2%80%99s-are-created-equal-the-story-continues
OWC, Micron\Crucial and Intel are the best brands and use the most quality components. With OWC being better than the Micron\Crucial which uses a slower Marvell Controller.
1.- OCZ Vertex 2 120GB
2.- Intel X25-M 120GB
3.- Samsung 470 Series 128GB
I will be using it as my boot drive for Mac OS X 10.6.7, any suggestion which one would be the best option for speed ?, thanks
These are ok value for money options, try not to go with the OCz though if this article is anything to go by:
http://blog.macsales.com/9438-not-all-ssd%E2%80%99s-are-created-equal-the-story-continues
OWC, Micron\Crucial and Intel are the best brands and use the most quality components. With OWC being better than the Micron\Crucial which uses a slower Marvell Controller.
FriarCrazy
Aug 5, 04:25 PM
That was just about the coolest thing I've ever seen. I saw a guy that put a linux box in his car... This totally blows him away. Wow.
more...
hvfsl
Jul 14, 04:12 AM
If you have a 15in PowerBook, then you will have to get a pc-card WIFI card (b or g standard). This is because Apples one that can be put in the airport slot does not havea very good range. The titainium is very good at blocking radio signals.
Lollypop
Apr 11, 01:02 AM
A lot of linux ditros work without a graphics card, problem is you might need embedded hardware that is designed to work without a graphics card.
Cheapest way to build a headless pc is to get a cheap ass dell (yes, i know im sorry!!! :( ) with cheap ass integrated graphics, cofigure the machine, and then once its up and running to allocate less memory to the graphics card and more to the OS to increase performance.
Cheapest way to build a headless pc is to get a cheap ass dell (yes, i know im sorry!!! :( ) with cheap ass integrated graphics, cofigure the machine, and then once its up and running to allocate less memory to the graphics card and more to the OS to increase performance.
twistedlegato
Apr 9, 06:53 AM
Wii has sold over 6 million!
And the DS lite over 23 million!!
And the DS lite over 23 million!!
Tomorrow
Mar 9, 10:23 AM
I saw the thread title and thought, "You could trade it in for a new MBP." :p
Seriously, I think the only real user-serviceable upgrades are the RAM and HDD. Beyond that, you'd be doing some soldering, I think.
Seriously, I think the only real user-serviceable upgrades are the RAM and HDD. Beyond that, you'd be doing some soldering, I think.
jake4ever
Mar 1, 05:02 PM
I know we'll know for sure real soon, but I was just wondering if there's any expectation one way or the other regarding how likely the ipad2 will be jailbreak-able, either with the current apps or with current known but unused exploits.
Currently, there are no known ways to exploit/jailbreak the iPad 2, as the device hasn't come out yet.
Currently, there are no known ways to exploit/jailbreak the iPad 2, as the device hasn't come out yet.
clayj
Jan 24, 09:05 PM
i use a microsoft wireless g router
does the trick
was really cheapI endorse this router, as well... I have an MN-700 wireless router and 2 MN-100 wired routers (connected to the MN-700), and they're very solid. Plus, you can get the MN-700 from Overstock.com for only $39.95.
The only caveat I know of is that you MIGHT need a Windows box in order to run the configuration software... I have my Mac mini connected through my MN-700, but I handle all of the router configuration on one of my Windows PCs.
does the trick
was really cheapI endorse this router, as well... I have an MN-700 wireless router and 2 MN-100 wired routers (connected to the MN-700), and they're very solid. Plus, you can get the MN-700 from Overstock.com for only $39.95.
The only caveat I know of is that you MIGHT need a Windows box in order to run the configuration software... I have my Mac mini connected through my MN-700, but I handle all of the router configuration on one of my Windows PCs.
Looon
Apr 19, 04:01 PM
You will be severely disappointed at how bad games run on a macbook
zebell1
Jun 13, 01:41 PM
The way I look at it if people can sue Cigarette makers for getting sick of them, then we should be able to sue Microsoft for our Blood pressure raising everytime that we eXPeriance a crash
No comments:
Post a Comment