
G4scott
May 5, 09:16 PM
Posting this from my new 27" iMac, purchased from Best Buy!
I got the lower base 27" model for $1615 + tax, so I'm pretty happy. The $85 I saved will pay for an extra 8GB of RAM :) Going to have some dev VMs running on this sucker with no problems.
I got the lower base 27" model for $1615 + tax, so I'm pretty happy. The $85 I saved will pay for an extra 8GB of RAM :) Going to have some dev VMs running on this sucker with no problems.
jane doe
Apr 16, 08:51 AM
The Xbox doesn't upscale DVDs over component. Here's a good FAQ on the issue, http://forum.teamxbox.com/showthread.php?t=477767 . I does do it over VGA, though.
I don't know how accurate this is, I'm not saying that its upscaling the DVDs but I am getting 1080p thru component. My TV will show me the resolution at the press of a button and when it changes. The Xbox is 1080p and when I place a DVD in the drive and play it, it does not (any longer) change down to 480p.
I don't know how accurate this is, I'm not saying that its upscaling the DVDs but I am getting 1080p thru component. My TV will show me the resolution at the press of a button and when it changes. The Xbox is 1080p and when I place a DVD in the drive and play it, it does not (any longer) change down to 480p.

Johannesson
Apr 26, 10:49 AM
I bought two of these, one for me, one for my wife. In a random fashion, either the left ear or the right ear will "go deaf". Occasionally both ears will "go deaf". My wife's jack is so loose that it simply separates from the nano with the slightest movement! I get the same problems when I use my Bose earphones. The reason seems to be that the audio jack ports on this product have been manufactured without adequate attention to quality control. Short of returning the nanos, can you think of a solution?

SchneiderMan
Feb 1, 03:01 PM
That is nothing new.
more...

amacgenius
Nov 9, 04:15 PM
Considering you're running the WORST version security wise of phpBB I'd suggest you update, it's not hard no matter how many MODs you have, and if you're that worried about it I could even do it for you...
STAY AWAY FROM PHPBB!
Sorry to yell, but I built macthemesforums.net (http://macthemesforums.net) with phpbb and we all have been regretting it since about 3 months after the site launched. Security holes were the first major issue that we encountered... and now we have incredibly slow loading times and it is very hard to upgrade the software since we have made so many hacks to the default installation.
If you want lightweight and super fast, try PunBB (http://punbb.org).
If you want a powerful board with good support, use vBulleting or Invision Powerboard.
STAY AWAY FROM PHPBB!
Sorry to yell, but I built macthemesforums.net (http://macthemesforums.net) with phpbb and we all have been regretting it since about 3 months after the site launched. Security holes were the first major issue that we encountered... and now we have incredibly slow loading times and it is very hard to upgrade the software since we have made so many hacks to the default installation.
If you want lightweight and super fast, try PunBB (http://punbb.org).
If you want a powerful board with good support, use vBulleting or Invision Powerboard.

fayans
Sep 23, 04:38 PM
Happy Switching! ;)
more...

wnameth
Dec 16, 07:03 PM
Ok, as of today there are no iPod minis at Circuit City or Sharper Image (at least here in Phoenix anyway) and I had found one on PowerMax's website, but they were already sold out of them before I could order one. I had started a deal with another member here, but his unit needed the battery replaced and couldn't have it done and sent to me before next Thursday (that's when I need it). So that said, is there anyone else here who would like to sell me their iPod mini (any color)? If there are any takers, I can send you money via PayPal today if you can ship it today or tomorrow.
Thanks!
at the store that i work at we still have them, they are 250CAD for them though
Thanks!
at the store that i work at we still have them, they are 250CAD for them though

ddtlm
Oct 2, 02:55 PM
Hemingray:
Yeah I was a bit unimpressed by the way they arranged the disks too. Perhaps I would like it more if I had a chance to open one of the new cases up.
The large heatsink could have been a huge improvement, however apparently Apple didn't use it to lower sound levels very much. Such am elaborate case, and they can't be bothered to make it quiet.
Yeah I was a bit unimpressed by the way they arranged the disks too. Perhaps I would like it more if I had a chance to open one of the new cases up.
The large heatsink could have been a huge improvement, however apparently Apple didn't use it to lower sound levels very much. Such am elaborate case, and they can't be bothered to make it quiet.
more...

gnasher729
Mar 30, 02:20 AM
1. Why "return 99;"? Doesn't make any sense at all. First, only 0, EXIT_SUCCESS and EXIT_FAILURE have defined meaning. Second, exiting when the input is "q" is the normal successful exit route, so you should return 0 or EXIT_SUCCESS. Or better to use "break;" in case things are added after the loop.
2. Why is this a while loop? You check the same condition at the end of the loop as inside the loop, which won't work. for (;;) is the common idiom for this.
3. It won't work for the second star because you modify path.
4. A safer and much more readable way to concatenate strings and other text would be calling snprintf.
5. system () is dangerous. What happens if I enter this as a star name:
'; rm -r /;
2. Why is this a while loop? You check the same condition at the end of the loop as inside the loop, which won't work. for (;;) is the common idiom for this.
3. It won't work for the second star because you modify path.
4. A safer and much more readable way to concatenate strings and other text would be calling snprintf.
5. system () is dangerous. What happens if I enter this as a star name:
'; rm -r /;

ulbador
Feb 24, 10:17 AM
So at one point in my code, I use mysqli_ping() to check if a connection to mysql is still alive. In C, doing this will actually reconnect the connection if it dies, but with PHP it just returns true or false, which is fine.
My problem is thus. On occasion, I get this error:
Message: mysqli_ping() [<a href='function.mysqli-ping'>function.mysqli-ping</a>]: Couldn't fetch mysqli
In an effort to prevent this, I have tried EVERYTHING I could think of to prevent the ping from being executed, to absolutely no avail:
if (is_object($conn) && mysqil_ping($conn))
if ($conn != null && mysqli_ping($conn))
if (!empty($conn) && mysqli_ping($conn))
if (isset($conn) && mysqli_ping($conn))
if (!is_null($conn) && mysqli_ping($conn))
try {
mysqli_ping($conn);
} catch (Exception $e){
}
I am totally at the end of my rope on this. Anyone have any suggestions?
Thanks.
My problem is thus. On occasion, I get this error:
Message: mysqli_ping() [<a href='function.mysqli-ping'>function.mysqli-ping</a>]: Couldn't fetch mysqli
In an effort to prevent this, I have tried EVERYTHING I could think of to prevent the ping from being executed, to absolutely no avail:
if (is_object($conn) && mysqil_ping($conn))
if ($conn != null && mysqli_ping($conn))
if (!empty($conn) && mysqli_ping($conn))
if (isset($conn) && mysqli_ping($conn))
if (!is_null($conn) && mysqli_ping($conn))
try {
mysqli_ping($conn);
} catch (Exception $e){
}
I am totally at the end of my rope on this. Anyone have any suggestions?
Thanks.
more...

zorinlynx
Mar 12, 12:36 AM
I wonder if they fixed this issue in iPad 2? Has anyone tried higher power devices with the USB adapter yet?

DustinT
Mar 10, 08:55 AM
A lot of the times if you don't properly drive a high impedance can, a lot of its sound won't be as tight and crisp as it should, so it's not just the volume output. I remember the first time I heard a high quality tube amp on a HD650 in a store, it was the first time it made a song I really know and like have a bass that sounded like an actual kick drum rather than a soft boom boom noise, I was pretty amazed.Yup, I was really surprised when I started using a headphone amp for the first time. Its a powerful difference.
Anyway, back to the topic at hand. Have you plugged your hd650's into a mbp? How did it sound?
Anyway, back to the topic at hand. Have you plugged your hd650's into a mbp? How did it sound?
more...

scem0
Sep 18, 11:26 AM
I watched one episode and I don't desire to watch a second. It was pretty lousy, IMO.
_Emerson
_Emerson

TheMasin9
Dec 22, 02:49 PM
A neat addition to the website, but i think its a little bit late, granted the mini only came out less than a year ago, but that stuff has been out there for a while.
more...

alansmallen
Jun 4, 04:24 PM
So I have one offer at $315 but lost communication. So it seems to be back on sale.

pEZ
Jul 5, 11:38 PM
The only reason I have two partitions is because of the Panther beta - I didn't want to install it over Jaguar and then go through hell to get it back again if Panther was too buggy (which it is).
more...

MacBytes
Mar 31, 01:40 PM
Category: 3rd Party Software
Link: Discreet to Ship combustion Version 4 for Mac in May (http://www.macbytes.com/link.php?sid=20050331144021)
Posted on MacBytes.com (http://www.macbytes.com)
Approved by Mudbug
Link: Discreet to Ship combustion Version 4 for Mac in May (http://www.macbytes.com/link.php?sid=20050331144021)
Posted on MacBytes.com (http://www.macbytes.com)
Approved by Mudbug

chrmjenkins
Jun 11, 12:42 PM
The quotes in the article don't even imply the guy said AMOLED screens are better, only that there is only 3-5% less visible difference (using some of that creative math since the actual difference he states is 20%) between the AMOLED screens and Apple's new screen.
Even then it conveniently ignores the fact that AMOLED screens are completely useless outside.
In any case it's a weak and completely ineffectual attempt at muckraking.
Samsung's new "Super" AMOLED are actually somewhat visible outside. They are an improvement in that respect. Besides that, it will have inferior color reproduction and (IMO) over-saturated colors.
Even then it conveniently ignores the fact that AMOLED screens are completely useless outside.
In any case it's a weak and completely ineffectual attempt at muckraking.
Samsung's new "Super" AMOLED are actually somewhat visible outside. They are an improvement in that respect. Besides that, it will have inferior color reproduction and (IMO) over-saturated colors.

MacNut
Apr 13, 11:19 PM
Didn't see this posted yet, I would hate to be on the Comair plane as it gets whipped around.The National Transportation Safety Board is investigating the collision of an Airbus A-380 and a smaller plane at John F. Kennedy International Airport.
Air France Flight 7, bound for Paris, was taxiing on a runway Monday night when its left wingtip struck the tail of Comair Flight 6293, which had just landed from Boston and was taxiing to its gate at Kennedy, one of the nation's busiest airports.
There were no injuries.
Both planes were being inspected Tuesday. Pilots and crew will also be interviewed.
Passenger Lawrence Grotts was on board the Air France plane.
"It really felt just like a speedbump or like hitting a pothole -- a jolt -- but it didn't feel right ... like that shouldn't be happening," he said.
The NTSB said it has requested the flight recorders and will review air traffic control tapes and what is known as ground radar data.
The double-deck Airbus A-380 had 495 passengers and 25 crew members on board, Air France said in a statement. The Comair CRJ 700 Regional Jet had 62 passengers and four crew members.
"This incident only caused material damage to the two aircraft," Air France said. The airline said it is assisting the NTSB.
Maxine Lubner, chair of the aviation department at Vaughn College, said communication could have been a problem.
"When the plane, the A-380, was on the taxiway, Alpha, it's under FAA control," she said. "The regional jet may have already been switched to the company's frequency."
Lubner said the Air France pilots should have been able to see the smaller aircraft.
http://www.nbcnewyork.com/news/local/Two-Planes-Collide-on-Ground-at-JFK-119666334.html
Air France Flight 7, bound for Paris, was taxiing on a runway Monday night when its left wingtip struck the tail of Comair Flight 6293, which had just landed from Boston and was taxiing to its gate at Kennedy, one of the nation's busiest airports.
There were no injuries.
Both planes were being inspected Tuesday. Pilots and crew will also be interviewed.
Passenger Lawrence Grotts was on board the Air France plane.
"It really felt just like a speedbump or like hitting a pothole -- a jolt -- but it didn't feel right ... like that shouldn't be happening," he said.
The NTSB said it has requested the flight recorders and will review air traffic control tapes and what is known as ground radar data.
The double-deck Airbus A-380 had 495 passengers and 25 crew members on board, Air France said in a statement. The Comair CRJ 700 Regional Jet had 62 passengers and four crew members.
"This incident only caused material damage to the two aircraft," Air France said. The airline said it is assisting the NTSB.
Maxine Lubner, chair of the aviation department at Vaughn College, said communication could have been a problem.
"When the plane, the A-380, was on the taxiway, Alpha, it's under FAA control," she said. "The regional jet may have already been switched to the company's frequency."
Lubner said the Air France pilots should have been able to see the smaller aircraft.
http://www.nbcnewyork.com/news/local/Two-Planes-Collide-on-Ground-at-JFK-119666334.html
Psood21
May 4, 02:28 AM
I am selling an acre on moon, will you be interested???? :rolleyes:
foobarbaz
Dec 28, 11:17 AM
From the chart, I'd say that this statement applies to people who owned a Kindle and got the iPad as a 2nd device. Or people who got the iPad and got the cheaper 3rd gen Kindle became available, etc.
I don't think Android tablets are common enough at this time for such a significant number of people already owning more than one.
I don't think Android tablets are common enough at this time for such a significant number of people already owning more than one.
l.a.rossmann
Jun 12, 07:28 AM
add http://ifixit.com
To hall of fame or hall of shame?
They charge twice, to more than twice as much for any given part than any other place I know of. They are decent for getting compatibility information, but I would never advocate buying parts from there. I'm not saying they're bad by any means, but just not practical when you can get the same part new anyplace else for half the price.
Any site with guides(screenintek, powerbookmedic, ifixit), has highly inflated parts costs.
I will add a point to the hall of shame for sunvalley for the powerbook
To hall of fame or hall of shame?
They charge twice, to more than twice as much for any given part than any other place I know of. They are decent for getting compatibility information, but I would never advocate buying parts from there. I'm not saying they're bad by any means, but just not practical when you can get the same part new anyplace else for half the price.
Any site with guides(screenintek, powerbookmedic, ifixit), has highly inflated parts costs.
I will add a point to the hall of shame for sunvalley for the powerbook
drenline
Mar 18, 10:53 PM
Probably should've read the contract first before u signed it?
JackT06
Feb 15, 08:01 AM
I need to find out how to make it so that the user can change the font size... But i'm unable to find an online tutorial on how to do it.
I want to make it so that in the footer there are 3 different buttons, which will make the font smaller, the same, and then bigger.
Thanks
I want to make it so that in the footer there are 3 different buttons, which will make the font smaller, the same, and then bigger.
Thanks
No comments:
Post a Comment