Benedict
Mar 11, 04:18 PM
came by at 9:00 to scope it out and decided to stay... i am about number 25 in line.... this line is going to be huge!
What do u do when you need to go to the bathroom?
What do u do when you need to go to the bathroom?
Alrescha
Mar 1, 12:06 PM
I have an original Mac mini running Leopard. I sleep it every night and wake it up every weekday. It randomly wakes with this Bonjour problem (I've never seen it happen while the machine is awake).
I haven't yet determined a pattern. Note that it's not an IP address problem � this is a Bonjour (or mDNS) naming error. The machine has a fixed IP address acquired via DHCP. I also have an Airport Extreme which can proxy Bonjour.
On the other hand, I have a Macbook running Snow Leopard that is slept/started much more often but has never experienced this problem. I wonder if it is an old Leopard problem which has since been solved.
A.
I haven't yet determined a pattern. Note that it's not an IP address problem � this is a Bonjour (or mDNS) naming error. The machine has a fixed IP address acquired via DHCP. I also have an Airport Extreme which can proxy Bonjour.
On the other hand, I have a Macbook running Snow Leopard that is slept/started much more often but has never experienced this problem. I wonder if it is an old Leopard problem which has since been solved.
A.
Hellhammer
Apr 20, 10:00 AM
BLAAAAA!!!
So I cant do it with a DVD at all? WTH? Seems very inconvenient to need the special USB install media.
That is the case with ALL Macs that ship with newer version of OS X, not just MBAs. The install media is included so you can use it and sometimes it's the only media you can use. Apple didn't include it so you can just throw it away.
So I cant do it with a DVD at all? WTH? Seems very inconvenient to need the special USB install media.
That is the case with ALL Macs that ship with newer version of OS X, not just MBAs. The install media is included so you can use it and sometimes it's the only media you can use. Apple didn't include it so you can just throw it away.
alexkrishnan
Jul 23, 01:18 PM
Has anyone been able to use the "FixIt" feature that they demo'd? When I make a mistake and it gets red-underlined, I can right click on it and choose "Show Fix It�" but nothing happens...
more...
MobiusCreative
Apr 13, 03:04 PM
Nm... found this (http://www.ipadforums.net/ipad-os/20707-cant-upgrade-4-2-4-3-a.html) which was exactly what I was experiencing. Worked like a charm.
Keniff
Mar 30, 05:34 PM
Can anyone give me the right amount to Partition off for Windows XP+Bootcamp+Games?
Thanks in advance...
K.
Thanks in advance...
K.
more...
blueroom
Mar 22, 03:27 PM
Ticket? Didn't know they were handing out tickets.
macfan881
Jul 19, 04:16 PM
Analogy withstanding, he does have a point. The Yankees have ignored Torre as part of their legacy ever since their nasty parting back in 2007.
The Yankees are doing the same with in regards to the Old Stadium.
I think it has to do with the book Ive read some of it and i still think that the book was to soon to be written had Joe written it probably 3 years from now things would have been diffrent.
The Yankees are doing the same with in regards to the Old Stadium.
I think it has to do with the book Ive read some of it and i still think that the book was to soon to be written had Joe written it probably 3 years from now things would have been diffrent.
more...
redman042
Feb 12, 10:28 AM
FOR THE LOVE OF GOD, JUST GET A BUMPER AND BE DONE WITH IT.
I hate new iPhone launches, because they turn the MacRumors forums into a peanut gallery for about two months. Ugh!
I hate new iPhone launches, because they turn the MacRumors forums into a peanut gallery for about two months. Ugh!
cheeserulz
Oct 19, 06:10 AM
Springboard is having a huge party. I say we go there. Then paint the town Red
Meh, my experiences at Springboard haven't been amazing, the people aren't always incredibly friendly. I think I'm going to Ardmore.
Meh, my experiences at Springboard haven't been amazing, the people aren't always incredibly friendly. I think I'm going to Ardmore.
more...
kineticpast
Sep 22, 06:32 PM
Ah, Ok. It's a .mov file. That sounds suspiciously Mac friendly. I presume .avi might be better?
No, .mov is just Quicktime's standard file format/extension. The extension won't be the problem, especially since you've already confirmed that the file is being read by playing sound.
The problem will be the video codec you've used to compress the video, do you know what you've used? If you don't, open the file in Quicktime and hit Command-I, in the new window find the format. Then post that here.
Most likely the PC user (I presume you aren't the one doing the testing since you don't know what the error message says) simply is using an old version of Quicktime and needs to upgrade.
This would have been easier to diagnose had we had a link to the Quicktime file.
Is this for the Trifle video? If so I think your tester just needs to upgrade to at least version 6 (the latest version for Windows, not including the Public Preview of 7).
No, .mov is just Quicktime's standard file format/extension. The extension won't be the problem, especially since you've already confirmed that the file is being read by playing sound.
The problem will be the video codec you've used to compress the video, do you know what you've used? If you don't, open the file in Quicktime and hit Command-I, in the new window find the format. Then post that here.
Most likely the PC user (I presume you aren't the one doing the testing since you don't know what the error message says) simply is using an old version of Quicktime and needs to upgrade.
This would have been easier to diagnose had we had a link to the Quicktime file.
Is this for the Trifle video? If so I think your tester just needs to upgrade to at least version 6 (the latest version for Windows, not including the Public Preview of 7).
fcortese
Aug 22, 08:48 PM
Can anyone say Florida and hanging chads?
more...
Bonch
Jan 18, 01:52 AM
It's worth about $15. In ten years maybe $10.
kuwisdelu
Apr 15, 12:58 PM
> if (any(socscore<=3)) q<-0 else q=1
> q
[1] 0
Why am I only getting 1 answer?
Thanks in advance,
Ernie
One of the hardest things to remember when using R compared to other programming languages, is that almost everything you do is a vector operation. When you do q <- 0, R is going to apply the "<- 0" to the entire vector of q. And if you haven't created q before this, q will just be set equal to either 0 or 1. What you're asking R to do is if any value in socscore is less or equal to than 3, assign 0 to q, otherwise assign 1 to q. I'm assuming you want q to be a vector of 0's and 1's corresponding to whether socscore <= 3 or not?
There are a couple ways to do that. You can either use a loop:
q <- rep(NA, length(socscore))
for ( i in 1:length(socscore) {
more...
Fake eyelashes are my life. (:
false lashes, qamp;a
more...
False Eyelashes Spring 2009
false eyelashes were first
> q
[1] 0
Why am I only getting 1 answer?
Thanks in advance,
Ernie
One of the hardest things to remember when using R compared to other programming languages, is that almost everything you do is a vector operation. When you do q <- 0, R is going to apply the "<- 0" to the entire vector of q. And if you haven't created q before this, q will just be set equal to either 0 or 1. What you're asking R to do is if any value in socscore is less or equal to than 3, assign 0 to q, otherwise assign 1 to q. I'm assuming you want q to be a vector of 0's and 1's corresponding to whether socscore <= 3 or not?
There are a couple ways to do that. You can either use a loop:
q <- rep(NA, length(socscore))
for ( i in 1:length(socscore) {
more...
applemacdude
Apr 27, 12:29 AM
wallmart suckes anyway its way to ghetto:D
peapody
Jun 22, 03:32 PM
I pm'ed but still have not heard anything.
more...
mgipe
Apr 26, 11:00 AM
I've frequently seen this when the plug is not fully inserted into the jack. It can take a fair amount of pressure to overcome that last detent in the jack.
sbb155
Apr 24, 09:12 AM
When I look at the depreciation of MBP, it is much worse than a MP. For example, 2008 models of MP have depreciated by about ~50%, while MBP have depreciated ~75% for similar price starting price point of the computers.
of false eyelashes to try
MisterMe
Jul 21, 06:09 PM
Who is General Sentiment? Is he in charge of the mobile wars? ...You completely misunderstand. General Sentiment is not a who; General Sentiment is a what. What General Motors is to automobiles and General Electric is to electric devices, General Sentiment is to sentiments. However, General Sentiment has taken it on the chin in recent years because Asian manufacturers now produce cheap sentiment imports. GS has fought back by outsourcing sentiments to factories in China, Mexico, and South Africa. However, the unionized American sentiment worker produces world-class sentiments at a competitive price.
altecXP
Apr 1, 09:24 PM
Read the seed notes.
Thats rather daft, why would GPU matter?
Thats rather daft, why would GPU matter?
GFLPraxis
Mar 16, 02:07 PM
I'm thinking of buying some stock in nuclear.
Gators Fan
Oct 27, 10:52 AM
They had 500 t-shirts. I got there at 7:15 and I was # 504. No T for me.:(
I was #407 in line at 6:51 PM. Got a shirt (and a nice one it is).
Staff handled everything smoothly. Very upbeat and cordial, especially the key personnel (managers, etc). There were dedicated lines for those just buying Leopard; the whole process took less than ten minutes. Went downstairs to Starbucks and saw three MacBook users installing their new OS (the mall offers free WiFi through Bright House / Roadrunner).
I was #407 in line at 6:51 PM. Got a shirt (and a nice one it is).
Staff handled everything smoothly. Very upbeat and cordial, especially the key personnel (managers, etc). There were dedicated lines for those just buying Leopard; the whole process took less than ten minutes. Went downstairs to Starbucks and saw three MacBook users installing their new OS (the mall offers free WiFi through Bright House / Roadrunner).
jessica.
Sep 20, 11:23 AM
I'm sure a lot of people here do. I do, badly, but I do.
Chef Medeski
Nov 30, 05:19 PM
The Bluetooth Mouse is still available guys!!
Would you be willing to trade the bluetooth mouse for a bluetooth MacMice?
Would you be willing to trade the bluetooth mouse for a bluetooth MacMice?