
furcalchick
Oct 25, 11:12 AM
i'm shocked that there aren't that many macrumors members around here. im guessing this area only services lake o and the northern everglades.
sdpics
Feb 12, 11:43 AM
http://perfectpandas.com/wp-content/uploads/2010/09/sad-panda-podiatrist.jpg
Makaveli6103
May 4, 05:34 PM
http://www.ifixit.com/Teardown/iMac-Intel-21-5-Inch-EMC-2428-Teardown/5485/1
iFixit tore it down and there is a spot to install a SSD
iFixit tore it down and there is a spot to install a SSD
vniow
Nov 20, 09:29 PM
Welcome back!
Even if I have absolutely no idea who you are.
Even if I have absolutely no idea who you are.
more...
iThinkergoiMac
Apr 5, 09:10 PM
The i5 is much faster than a C2D. The GPU isn't any slower. That should answer your question about playing games.
However, I'm not going to help you lie. If your MB is getting so hot that it really is burning you, that sounds broken to me. Besides, what happens when you try to present a broken computer and they figure out it really works just fine?
However, I'm not going to help you lie. If your MB is getting so hot that it really is burning you, that sounds broken to me. Besides, what happens when you try to present a broken computer and they figure out it really works just fine?
feakbeak
Sep 23, 12:28 PM
iGary, I think you do need the help. I mean, just look at your signature. ;)
more...
G4scott
Oct 17, 04:11 PM
Email, faxes, instant messages, documents, and alerts pop on and off automatically, but are controlled by the user. Because there is so much screen landscape, the desktop doesn't have a cluttered feeling.
They pop up automatically, but are controlled by the user? Like pop-up ad's? Bad idea if you ask me. I like the notifications in the dock with iChat and Mail. The icon changes, and they can make a sound whenever a new message is received.
As for that much screen landscape, I think it would be hard to control that much space. If you needed it for really big spreadsheets or for tons of tools for designing or creating videos, I can understand, but having to lift the mouse up 5 times just to get from one side of the screen to the other, and turning your head 45� to view the whole thing seems a bit over-done.
Apple is making widescreen standard. Unfortunately, in a bizarre move, microsoft seems to be taking Apple on with the whole wide-screen thing, and they seem to be going over-board. I wonder if they will give you coupons for free neck adjustments at your local chiropractor?
Oh well. In 5 years, I'll probably still be using a Mac...
They pop up automatically, but are controlled by the user? Like pop-up ad's? Bad idea if you ask me. I like the notifications in the dock with iChat and Mail. The icon changes, and they can make a sound whenever a new message is received.
As for that much screen landscape, I think it would be hard to control that much space. If you needed it for really big spreadsheets or for tons of tools for designing or creating videos, I can understand, but having to lift the mouse up 5 times just to get from one side of the screen to the other, and turning your head 45� to view the whole thing seems a bit over-done.
Apple is making widescreen standard. Unfortunately, in a bizarre move, microsoft seems to be taking Apple on with the whole wide-screen thing, and they seem to be going over-board. I wonder if they will give you coupons for free neck adjustments at your local chiropractor?
Oh well. In 5 years, I'll probably still be using a Mac...
ghaghamashibaba
May 5, 04:44 PM
The only mac that i buy will come out of a apple store of from a premium reseller. They made the stores for a reason
more...
jimmy.mcarthur
Apr 15, 03:42 AM
Thanks for all your responses, I've tried some of your remadies and all is not looking good. Taking it to Apple tomorrow to get a quote but either way I think it is probably time to let go...
Cheers,
James McArthur
____________________________________________________________________________________________________ ___________________________

Nigel Barker amp; Wife, Cristen
more...

Nigel Barker America#39;s Next

Photographer Nigel Barker and
more...

In This Photo: Nigel Barker,

Nigel Barker#39;s ”A Sealed
more...

Nigel Barker and his wife

host Nigel Barker and wife
more...

Nigel Barker with Wife Cristen

Nigel Barker at the launch of

photographer Nigel Barker
Cheers,
James McArthur
____________________________________________________________________________________________________ ___________________________

G-Force
May 2, 06:56 AM
I'm happy with Safari's performance, but I will try those browsers as soon as I have upgraded the machine. Thanks :)
more...
Applejuiced
Apr 29, 08:59 AM
I have Simple Mobile service. I had been told to disable the 3G option on my iPhone 3gs. Now I have a new iPhone 4. With Gevey, can I now use the 3G enable? Will my phone work on 3G network? Thank you!
It should work fine with 3G on.
It should work fine with 3G on.
iLucas
Apr 7, 02:16 PM
3rd cd down might be what you're looking on this site (http://yourmacstore.com/shop/shopdisplayproducts.asp?id=88&cat=Software)
more...
Trowaman
Sep 15, 11:40 PM
I'm very much linkin' this. Now, we need tv commercials for this thing . . .
Under every tree, Star Wars DVD Box set which you can watch on your brand new iMac G5.
*wishful thinking*
Under every tree, Star Wars DVD Box set which you can watch on your brand new iMac G5.
*wishful thinking*
chaos86
Mar 29, 05:00 PM
1) build computer with head
2) set it up to start a vnc server on startup so you can control it's screen from another computer, in case you want to do something on it without getting another screen out.
3) start it folding
4) decapitate
2) set it up to start a vnc server on startup so you can control it's screen from another computer, in case you want to do something on it without getting another screen out.
3) start it folding
4) decapitate
more...
myjay610
Mar 10, 06:43 AM
Gotcha. So I think the best way to handle this would be to use Apache to handle all requests for both servers, and set up a ReverseProxy to handle traffic that should go to the Ruby server.
Check this site out: http://httpd.apache.org/docs/2.0/vhosts/examples.html
And this site for ReverseProxy: http://www.ehow.com/how_6108865_configure-apache-reverse-proxy.html
So, your config file in Apache should similar to this (be sure to enable the proxy module):
Listen 172.20.30.40:80
# This is the "main" server running on 172.20.30.40
ServerName server.domain.com
DocumentRoot /www/mainserver
# This is the other address - the one handling requests for Ruby
NameVirtualHost 172.20.30.50:80
<VirtualHost 172.20.30.50:80>
# Other directives here ...
ProxyRequests off
ProxyPass / http://localhost:8080
ProxyPassReverse / http://localhost:8080
</VirtualHost>
Then obviously you need to ensure your DNS server is set so the domain names are pointing to ther right IP addresses.
You could also filter out on the ServerName in apache to determine which server handles your traffic...or do both to be consistent.
Check this site out: http://httpd.apache.org/docs/2.0/vhosts/examples.html
And this site for ReverseProxy: http://www.ehow.com/how_6108865_configure-apache-reverse-proxy.html
So, your config file in Apache should similar to this (be sure to enable the proxy module):
Listen 172.20.30.40:80
# This is the "main" server running on 172.20.30.40
ServerName server.domain.com
DocumentRoot /www/mainserver
# This is the other address - the one handling requests for Ruby
NameVirtualHost 172.20.30.50:80
<VirtualHost 172.20.30.50:80>
# Other directives here ...
ProxyRequests off
ProxyPass / http://localhost:8080
ProxyPassReverse / http://localhost:8080
</VirtualHost>
Then obviously you need to ensure your DNS server is set so the domain names are pointing to ther right IP addresses.
You could also filter out on the ServerName in apache to determine which server handles your traffic...or do both to be consistent.
hopejr
Apr 26, 02:03 AM
Theoretically they should have been removed today. If they are still coming up for you, please post here.
sorry for the trouble,
arn
Just letting you know, those ads are still coming up. It has been 2 weeks now.
sorry for the trouble,
arn
Just letting you know, those ads are still coming up. It has been 2 weeks now.
more...
Natron
Oct 27, 02:08 PM
Wow, 30 inch display. Seems a bit much, especially with the economy being like it is right now, but it might be better by the time they would release this. I think 30 inches is to big for a computer display, sure it would be nice, but the price would probably be a too much, not to mention having a 30 inch monitor 2 feet in front of you seems a bit much. I would probably want one, being the gadget-geek that I am, always wanting new things.
As for the "a new digital lifestyle device", I would like to see some portable video drive. It would need to have composite RCA outs, for hook up to a TV or something (or an adapter). I do a number of videos for my church, and it would be much easier to just load the video onto this device, take it to church and hook it up, and be good to go. Would cut down on using Mini-DV tapes, and would even be cheaper than DVD's (with current prices anyway). This is the only thing I could see needing 800mbps FW.
I really would like to see this as a separate device from the iPod, because it would need a larger screen, color screen, and would probably drain a battery pretty quickly, so you wouldn't be able to use it so much for music. The device itself would probably need to be larger, so I'd rather see the iPod stay the size it is now, and just create a new device.
Of course, none of this will ever happen, but I do still like this idea, as well as seeing an Apple PDA (although with the PDA market being what it is, I would rather see Apple stick with media devices). Although I'm sure an Apple PDA would be one nice media device. I can almost see iCal and iSync as aluding to a PDA like device, but who knows.
-Natron
As for the "a new digital lifestyle device", I would like to see some portable video drive. It would need to have composite RCA outs, for hook up to a TV or something (or an adapter). I do a number of videos for my church, and it would be much easier to just load the video onto this device, take it to church and hook it up, and be good to go. Would cut down on using Mini-DV tapes, and would even be cheaper than DVD's (with current prices anyway). This is the only thing I could see needing 800mbps FW.
I really would like to see this as a separate device from the iPod, because it would need a larger screen, color screen, and would probably drain a battery pretty quickly, so you wouldn't be able to use it so much for music. The device itself would probably need to be larger, so I'd rather see the iPod stay the size it is now, and just create a new device.
Of course, none of this will ever happen, but I do still like this idea, as well as seeing an Apple PDA (although with the PDA market being what it is, I would rather see Apple stick with media devices). Although I'm sure an Apple PDA would be one nice media device. I can almost see iCal and iSync as aluding to a PDA like device, but who knows.
-Natron

Lord Blackadder
Dec 16, 02:40 PM
If you are into unrestricted conrol then your best bet is Unix/Linux - and OS X is a member of that family.
Windows will probably be able to run on the upcoming Intel-based Macs, although if you are planning on buying a Mac just to run Windows on it I think you need to re-examine your priorities - you'd be much better of building yourself a PC.
Windows will probably be able to run on the upcoming Intel-based Macs, although if you are planning on buying a Mac just to run Windows on it I think you need to re-examine your priorities - you'd be much better of building yourself a PC.
jondob
May 4, 09:42 PM
I would contact Apple and they will replace the SuperDrive under AppleCare.
I don't really wanna go through all that hassle just for that...
The superdrive works fine and everything. Just a few times now it wouldnt bring the disk into the drive unless I restarted it..
I'd rather figure out the problem, I don't use the drive enough to be without my computer IF they even were to replace it.
I don't really wanna go through all that hassle just for that...
The superdrive works fine and everything. Just a few times now it wouldnt bring the disk into the drive unless I restarted it..
I'd rather figure out the problem, I don't use the drive enough to be without my computer IF they even were to replace it.
rock6079
Aug 5, 03:28 PM
hmm i wonder how much that would cost for him to do something like that to my car lol
uplusd
May 3, 03:16 AM
As a previous poster mentioned, easiest to use CCC to move your current installation of OS X over to the SSD... See here for instructions:
http://lifehacker.com/#!5541774/how-to-install-a-solid+state-drive-in-your-macbook
http://lifehacker.com/#!5541774/how-to-install-a-solid+state-drive-in-your-macbook
GekiRed
Dec 31, 11:40 AM
Why even buy an iPod Touch like the millions of other sheep and continue to line God Jobs' pockets when you could buy some other device and give Steve-O the finger?:confused:
May I say that you have a very good point there, but at the same time there's a lot of Apps on iOS which aren't available on Android, especially my Epilepsy medication reminder App which has been a godsend to me, especially as I had a seizure a couple of weeks ago which put me in hospital!:(
At the end of the day, I bought the product, so surely I should be able to do what I want with it within reason.
May I say that you have a very good point there, but at the same time there's a lot of Apps on iOS which aren't available on Android, especially my Epilepsy medication reminder App which has been a godsend to me, especially as I had a seizure a couple of weeks ago which put me in hospital!:(
At the end of the day, I bought the product, so surely I should be able to do what I want with it within reason.
4JNA
Nov 18, 06:00 PM
ppc, intel, xscale, vax, big endian.... hell, i don't care! load it on anything that will still turn on! we are getting killed, and seeing the daily output line FINALLY start to trend up is a wonderful thing!!!
congrats on the amazing output '64 ;)
welcome back to all the 'took the summer off' people...
...I just completed my first WU for Team MacRumors!
welcome!
congrats on the amazing output '64 ;)
welcome back to all the 'took the summer off' people...
...I just completed my first WU for Team MacRumors!
welcome!
BlindMellon
May 5, 06:29 AM
There should be a -1000 button for threads like these... Or - "Lowest Ranked".
the OP's post was obviously in jest and quite funny. are you that humorless about apple projects that you can't have a little fun?
the OP's post was obviously in jest and quite funny. are you that humorless about apple projects that you can't have a little fun?
0 comments:
Post a Comment