Austin M.
Apr 7, 12:00 AM
Hmm, nobody likey???
Crystal-RX
Apr 3, 12:00 AM
Do I call Rogers up (my carrier) and tell them?
1. Call roggers to cancel/deactivate your #s.
2. Buy new phone and move on with your life.
1. Call roggers to cancel/deactivate your #s.
2. Buy new phone and move on with your life.
lavrishevo
May 5, 10:04 AM
I removed my Samsung 470 SSD from an HP laptop that had Win 7 running. Trim was enabled automatically with Win 7. When I put it into my new Macbook Pro trim was not enabled. You can check by going into the Apple, then About, then More Info and finally into Serial ATA. When you scroll down you will see that trim is not enabled.( Without it, the SSD will fill up and slow down. Google it and see what it does). Groths.org had a Trim Enabler patch that worked perfectly. I downloaded it and clicked on it and it installed. When I went back into the Apple, etc I found that trim had been enabled. Kudos to Oskar. I dropped a couple of bucks on him from Paypal because I appreciate this kind of work. Maybe Apple will have trim enabled in the next OS, like Win7.
OSX is not affected the same way without trim. It may slightly improve overall performance but because the whole file structure is different TRIM is not nearly as essential on OSX. In fact, forum members have reported problems with SSD's after enabling TRIM.
http://www.bit-tech.net/hardware/apple/2010/07/01/mac-ssd-performance-trim-in-osx/7
OSX is not affected the same way without trim. It may slightly improve overall performance but because the whole file structure is different TRIM is not nearly as essential on OSX. In fact, forum members have reported problems with SSD's after enabling TRIM.
http://www.bit-tech.net/hardware/apple/2010/07/01/mac-ssd-performance-trim-in-osx/7
powers74
Mar 24, 10:55 PM
Looks like I can finally upgrade to 10.6!
more...
R94N
Dec 1, 04:31 PM
I suppose with things like this you've got nowhere to go once you've moved in. Obviously no one else will want to buy the house once everyone finds out it's true past. It sounds awful.

kettle
Jan 19, 03:29 PM
Just posting this back to the top to see if it will catch anymore information.:)
more...
Peachi
Feb 16, 03:30 PM
My situation: my boyfriend let me borrow his jailbroken iTouch, and knowing nothing about them, I updated the software and lost it all. So I have 4.2.1 software now, so I looked up the jailbreak for that. I used redsn0w and I thought it worked perfectly, but after I used the "Just boot tethered right now" option, the pineapple came up and all, but it's just...stuck. It keeps making the little slide-bar noise every 10 seconds and it looks like it's been loading for 10 minutes.
Also, I'm using an iPod touch 3g.
Help?
Also, I'm using an iPod touch 3g.
Help?
Mr_Brightside_@
May 4, 12:33 PM
Beaten by four minutes :P (http://forums.macrumors.com/showthread.php?t=1147600)
more...
MattG
Sep 12, 10:25 PM
ok... it takes 184 pin DDR266, PC2100. i have a friend with a 128 stick of 184 pin PC3200 (my memory didn't work). Would her's work? i figure the computer would just clock it down
Technically it should. AFAIK, you should be able to put any speed DDR RAM into a PC and it will clock it down to the necessary speed.
Technically it should. AFAIK, you should be able to put any speed DDR RAM into a PC and it will clock it down to the necessary speed.
mpsruo
Jun 23, 11:16 PM
The mall security is informing people that there's a line formed at the bank. There's a list going that will apparently be honored by apple. I'm in the 60's which us worrying. I wonder how many they'll have...
more...
angelwatt
Mar 13, 01:02 PM
Does do a what i want but removing my floats kinda makes a gap between the nav and sub nav. Though adding in some floats makes the sidebar move again so i'll need to sort out this gap.
You should be able to manage the gap with appropriate margin/padding on elements. I rarely find a need for floats. They have their uses of course, but I just tend not to use them preferably. It was probably caused by all of those IE6 float issues.
Anyways, if you update your demo page and explain the gap more precisely I can try to help you figure out a solution.
You should be able to manage the gap with appropriate margin/padding on elements. I rarely find a need for floats. They have their uses of course, but I just tend not to use them preferably. It was probably caused by all of those IE6 float issues.
Anyways, if you update your demo page and explain the gap more precisely I can try to help you figure out a solution.
gotohamish
Jul 14, 11:14 AM
Originally posted by mactastic
Is it impossible for someone to make a card that would replace the 'b' card in there currently with a 'g' card? Like is the connection to slow to make it worth doing? And what about combining that with a bluetooth connection too? I'd love to be able to put those in my laptop, and still have the pcmcia card slot still available for photo transfers.
That's an interesting thought. It appears to me that the Airport Card is a regular PCMCIA card, but without the head which in third-party cards has the aerial in. Hence the need to plug the aerial in to it when installed IN a Mac.
So couldn't you buy a regualr PCMCIA 'g' card, take the had off it and install it in the Airport slot?
To try and answer my own question - In theory yes, but I'm sure if it was that simple Apple would have done it. On the other hand, it does make it more of a perk to upgrading your Mac, which is ultimately what Apple want.
Is it impossible for someone to make a card that would replace the 'b' card in there currently with a 'g' card? Like is the connection to slow to make it worth doing? And what about combining that with a bluetooth connection too? I'd love to be able to put those in my laptop, and still have the pcmcia card slot still available for photo transfers.
That's an interesting thought. It appears to me that the Airport Card is a regular PCMCIA card, but without the head which in third-party cards has the aerial in. Hence the need to plug the aerial in to it when installed IN a Mac.
So couldn't you buy a regualr PCMCIA 'g' card, take the had off it and install it in the Airport slot?
To try and answer my own question - In theory yes, but I'm sure if it was that simple Apple would have done it. On the other hand, it does make it more of a perk to upgrading your Mac, which is ultimately what Apple want.
more...
galimk
Apr 23, 05:30 PM
Look in your book for exactly what you're supposed to use for #import. You may have made a mistake.
I'm not sure, but #import <Fraction.h> seems wrong to me. If Fraction.h were a system-provided class, it would be correct. But it's a developer-created class, so #import "Fraction.h" seems more sensible to me, and is what I've always used when referring to class headers I create.
Post your code.
No one with any programming experience would believe anyone (beginner or experienced) who says there are no compilation errors, unless the code has actually been compiled without errors. You may be right, but we need to see the evidence of the compiler.
Thanks! Your answer helped. So now I know that <**> are only for system provided classes. I used quotes for Fraction.h and it worked.
The example that I used had everything dumped in the main .m file along with the main function.
I'm not sure, but #import <Fraction.h> seems wrong to me. If Fraction.h were a system-provided class, it would be correct. But it's a developer-created class, so #import "Fraction.h" seems more sensible to me, and is what I've always used when referring to class headers I create.
Post your code.
No one with any programming experience would believe anyone (beginner or experienced) who says there are no compilation errors, unless the code has actually been compiled without errors. You may be right, but we need to see the evidence of the compiler.
Thanks! Your answer helped. So now I know that <**> are only for system provided classes. I used quotes for Fraction.h and it worked.
The example that I used had everything dumped in the main .m file along with the main function.
Unspeaked
Sep 23, 12:21 PM
Amoeba
Amoeba is an awful place to buy used CDs - any location.
It's fine for vinyl and even new CDs releases, but the selection and prices are superior at any of the online places mentioned above - eBay, Amazon, Half.com and even SecondSpin.
Amoeba is an awful place to buy used CDs - any location.
It's fine for vinyl and even new CDs releases, but the selection and prices are superior at any of the online places mentioned above - eBay, Amazon, Half.com and even SecondSpin.
more...
Consultant
Apr 12, 03:07 PM
Seems that YOU erased it. Can probably restore from backup.
Go to iTunes/ Preferences / Devices. Do you see recent dates?
Go to iTunes/ Preferences / Devices. Do you see recent dates?

Heilage
Apr 7, 12:52 AM
Lesson: Don't install preview/beta OS over your original OS when you are relying on that machine.
I thought this was mandatory information. Come on, why would you ever run a beta on your everyday computer?
Makes sense to me..
I thought this was mandatory information. Come on, why would you ever run a beta on your everyday computer?
Makes sense to me..
more...
mif
Apr 27, 02:01 AM
Newer mind, reinstalling Snow Leopard helped (hopefully). No noise from 5770 or Blu-Ray.

TodVader
Dec 4, 01:18 PM
lol, good thing you sold it, but he paid high for a used shuffle. 99$ seems like a great price shipped but I hate the fact that the shuffle shuffles!
jamper
May 4, 04:57 PM
I had this when i got an imac a few weeks back... it's your desk. seriously!
Have a look at my previous threads and you'll find the details of the post and how i fixed it.
edit...... => this post... http://forums.macrumors.com/showthread.php?t=1137139&highlight=
Picked up a new 2011 iMac today and had the same thing, isolate the imac from the desk and it will go.
I had 2x 21,5" on the same desk, at the same spot and none of them made the noise. Just this one, the 3rd 21,5"
Edit: the first 2 imacs were the low 21,5". The 3rd is the high end 21,5". The hdd is different on my 3rd imac(1TB)
I read the thread you linked and i agree that it must be something related with the hdd
Have a look at my previous threads and you'll find the details of the post and how i fixed it.
edit...... => this post... http://forums.macrumors.com/showthread.php?t=1137139&highlight=
Picked up a new 2011 iMac today and had the same thing, isolate the imac from the desk and it will go.
I had 2x 21,5" on the same desk, at the same spot and none of them made the noise. Just this one, the 3rd 21,5"
Edit: the first 2 imacs were the low 21,5". The 3rd is the high end 21,5". The hdd is different on my 3rd imac(1TB)
I read the thread you linked and i agree that it must be something related with the hdd
iThinman
Mar 9, 09:45 AM
lol, who said the page file hack is no longer needed? Like a fool, I believed that comment and did the upgrade and re-jailbreak.
Yes, you no longer need the page file hack....if you enjoy going back to watching your tabs reload because iOS shut down your browser to provide memory to another app.
Can somebody please tell me that the page file hack still works on 4.2.1.
This things is basically useless to me without it.
Yes, you no longer need the page file hack....if you enjoy going back to watching your tabs reload because iOS shut down your browser to provide memory to another app.
Can somebody please tell me that the page file hack still works on 4.2.1.
This things is basically useless to me without it.
mnkeybsness
Jan 20, 09:25 PM
the problem with spymac is a lot of the people... they just aren't as fun as macrumors is...
that and i hate the functionality of their boards. they have too many graphics all over the place with their logo, menu, and chat box.
that and i hate the functionality of their boards. they have too many graphics all over the place with their logo, menu, and chat box.
steve2112
Aug 3, 10:18 AM
Eh, I know where my towel is, and I have an electronic thumb, so I should be fine. I can't seem to find my copy of the Guide, though.
GGJstudios
May 6, 07:29 PM
Just tried a small file. No go. It won't let me get that far. I go to the picture, copy..."clunk". I go to the forum, type in and click paste. Nothing. Why the "clunk" when it wasn't there before?
BTW...I have no trouble with youtube videos or "attachments".
That's not how you do it. Follow these directions:
BTW...I have no trouble with youtube videos or "attachments".
That's not how you do it. Follow these directions:
mdetry
Oct 17, 05:43 AM
I have to Test Illustrator / Quark files for Compatibility (specially fonts,etc)
I think the best way will be with Remote Desktop. I have used Remote Desktop for PC to PC and it�s perfect for what I need and I expect it should work as well in MAC.
Thanks for advice.
I think the best way will be with Remote Desktop. I have used Remote Desktop for PC to PC and it�s perfect for what I need and I expect it should work as well in MAC.
Thanks for advice.
0 comments:
Post a Comment