kgarner
Sep 16, 04:08 PM
This is being discussed pretty heavily in the games forum. A mod may want to combine this thread with those.
matrix11385
Jun 23, 03:31 AM
that sounds like a plan,only problem is,the store,i have a weird feeling that the 14st store wont be selling them,i havent called any stores,but i do know ppl are already waiting outside the 5th ave store,so to be on the safe side i think the 5th ave store would be best
caspersoong
Apr 7, 07:26 AM
I'll just wait until they start selling music and videos in my country.
mbl42
Dec 6, 09:49 PM
Would love photos. Could you do $650? Seeing as I can get an EDU discounted one for $700.
more...
DarkVinda
Apr 23, 07:06 PM
yes imacsoft do a dvd - audio ripper we use it in work as part of our media conversion bundles...
but it just starts at 0:0:0 till the end....
but it just starts at 0:0:0 till the end....
Lord Blackadder
Jan 21, 02:32 PM
Jetta sales were up in November (http://wot.motortrend.com/new-2011-jetta-helps-vws-us-sales-grow-24-percent-in-november-9546.html), but it remains to be seen if they can maintain that of it was just the halo effect of releasing a new car. It iwll be interesting to see if the new cheaper-n-bigger Passat has similar success.
Regarding the design, personally I rather like the fact that they've gone for a Shooting Brake aesthetic rather than an ungainly 4 door one. Remember, Ferrari's are almost always controversial (entirely unlike Porsche). :)
I'll give you that...although the Sultan of Brunei's 456 "Venice" wagons managed to stay beautiful despite having four doors.
The Panamera and Cayenne are intensely ugly.
Regarding the design, personally I rather like the fact that they've gone for a Shooting Brake aesthetic rather than an ungainly 4 door one. Remember, Ferrari's are almost always controversial (entirely unlike Porsche). :)
I'll give you that...although the Sultan of Brunei's 456 "Venice" wagons managed to stay beautiful despite having four doors.
The Panamera and Cayenne are intensely ugly.
more...
Astro7x
Nov 12, 11:59 AM
The next FCS better be extremely better if they intend on catching up with Adobe. By the time Apple gets FCP out next year, Adobe will be close to releasing CS6 and that will probably be another jump past Apple. I'm not holding my breath for Apple; they only care about their main cash cows now. Those being the consumer device/application markets.
And when FCS4 comes out it will be a year ahead of CS5. What's your point?
Apple probably know that they can't compete in this space, at least profitably. Both Shake and Xserve are gone. The Macpro on price/performance is really poor value. And whilst FCS is brilliant value, it never really leaps ahead in terms of added features or optimisation.
It's possible that Apple in 5 years time will be a purely consumer electronics company, with no 'computers' in the traditional sense in it's line up. If this bears out, Pro Applications and Hardware, don't really figure into that reality.
Please... without pro apps there is no reason for businesses to have pricey Mac setups. There is no need to have a mac if you're just using Microsoft Office and Email
We've been using Mac Pros as servers for years now... it has more function than the Xserve but is just not rack mountable. No big deal. And who used Shake that its loss makes an impact? Apple could cut Motion and I don't think many would care.
And when FCS4 comes out it will be a year ahead of CS5. What's your point?
Apple probably know that they can't compete in this space, at least profitably. Both Shake and Xserve are gone. The Macpro on price/performance is really poor value. And whilst FCS is brilliant value, it never really leaps ahead in terms of added features or optimisation.
It's possible that Apple in 5 years time will be a purely consumer electronics company, with no 'computers' in the traditional sense in it's line up. If this bears out, Pro Applications and Hardware, don't really figure into that reality.
Please... without pro apps there is no reason for businesses to have pricey Mac setups. There is no need to have a mac if you're just using Microsoft Office and Email
We've been using Mac Pros as servers for years now... it has more function than the Xserve but is just not rack mountable. No big deal. And who used Shake that its loss makes an impact? Apple could cut Motion and I don't think many would care.
Applejuiced
Apr 26, 09:25 PM
No, beeing synced/registered using a Mac or another computer has nothing to do with it.
It should be recognized anywhere as long as you have the latest itunes version installed.
It should be recognized anywhere as long as you have the latest itunes version installed.
more...
rdstoll
Apr 7, 12:18 PM
Love the idea but the execution is a joke. So you download the app and get exactly one crappy game, Pong, and you have to wade through dozens of other games just to find it and play it.
Then if you want to get one of the good classics you get is in a "4-pack" that includes 3 games you don't care about. So if you really want all the classics you are essentially forced to buy all 100 games for $20.
Then if you want to get one of the good classics you get is in a "4-pack" that includes 3 games you don't care about. So if you really want all the classics you are essentially forced to buy all 100 games for $20.

Analog Kid
Oct 5, 09:10 PM
I did, in fact, mean using JavaScript on page load to disable the user from changing the size of the textarea, not within my browser. It's like using CSS to disable the dotted border Firefox puts around links when they are active.
Form elements, and the divs that contain them, often need either fixed widths or have widths that are proportional to their containers.
Take Google (http://www.google.com). Depending on how the layout is set up (this is just hypothetical), resizing the search box would push those three links next to it off into oblivion if they were all in a div that was fixed or proportional to the page width. It doesn't matter if Safari "dynamically redraws the page" since the div would still be calculated to be the same. Worse yet, depending on its overflow attribute, they could be pushed onto a new line.
I'd really not like to see Safari become the next IE 5. It already has its share of JavaScript bugs. This would just mean us designers would have to spend that much more time envisioning what would happen if a user resized every form element on every page and incorporating it into our layouts. This is why I hope there's a way to disable it outright.
Funny, this was the feature from the list I thought would be most useful. In particular, it would be useful when posting to MacRumors-- I'd love to make this little box bigger...
I hear where you're coming from though. Hopefully Apple would honor CSS clues that the field should remain fixed-- for example if you've set up pixel accurate sizing, you probably don't want it resized.
If nothing else, remember that the user is the one that resized it, not the browser. Even if the other elements get shoved around and the layout made ugly, the user will have seen their actions responsible for pushing things around.
Form elements, and the divs that contain them, often need either fixed widths or have widths that are proportional to their containers.
Take Google (http://www.google.com). Depending on how the layout is set up (this is just hypothetical), resizing the search box would push those three links next to it off into oblivion if they were all in a div that was fixed or proportional to the page width. It doesn't matter if Safari "dynamically redraws the page" since the div would still be calculated to be the same. Worse yet, depending on its overflow attribute, they could be pushed onto a new line.
I'd really not like to see Safari become the next IE 5. It already has its share of JavaScript bugs. This would just mean us designers would have to spend that much more time envisioning what would happen if a user resized every form element on every page and incorporating it into our layouts. This is why I hope there's a way to disable it outright.
Funny, this was the feature from the list I thought would be most useful. In particular, it would be useful when posting to MacRumors-- I'd love to make this little box bigger...
I hear where you're coming from though. Hopefully Apple would honor CSS clues that the field should remain fixed-- for example if you've set up pixel accurate sizing, you probably don't want it resized.
If nothing else, remember that the user is the one that resized it, not the browser. Even if the other elements get shoved around and the layout made ugly, the user will have seen their actions responsible for pushing things around.
more...
igouroum
Feb 28, 02:50 PM
Hi,
Recently, I've been using guitar rig pro with the Aggregate audio device created in Audi MIDI setup. This Aggregate audio device was composed of the built-in input and the airphones app to output the audio to my ipod, which was connected to my audio system. However, I wasn't happy with the noticable latency, so, I went out and bought a usb sound card, and now, whenever I'm trying to delete the old Aggregate a. device to make a new one, It doesn't do a thing except deselect itself.
It seems as if I cannot modify the Aggregate audio device in any possible way.
HELP!
marc
Recently, I've been using guitar rig pro with the Aggregate audio device created in Audi MIDI setup. This Aggregate audio device was composed of the built-in input and the airphones app to output the audio to my ipod, which was connected to my audio system. However, I wasn't happy with the noticable latency, so, I went out and bought a usb sound card, and now, whenever I'm trying to delete the old Aggregate a. device to make a new one, It doesn't do a thing except deselect itself.
It seems as if I cannot modify the Aggregate audio device in any possible way.
HELP!
marc
Hastings101
Apr 1, 04:48 PM
Don't even use Android but I thought the wallpaper was cute :D.
Got it from http://www.wallpaper4me.com/wallpaper/Peek-A-Boo-Droid/
Got it from http://www.wallpaper4me.com/wallpaper/Peek-A-Boo-Droid/
more...
Much Ado
Jan 10, 10:42 AM
Bah Humbug to all the unbelievers!
Apple know Vista's been coming for years, so they'll have Leopard ready. They've been working on the iPhone since before Tiger, so it's not like their R+D is suddenly going to drop in Mac development.
All of this 'what about the Mac' stuff is a little harsh. If Steve's got an Octo-Core Mac Pro coming in a few weeks, then he's not going to say so now.
Also, if Leopard isn't ready yet, and will be out in a few months, then not mentioning it is an awesome mind game. Bill gates was propbrably watching going "Uh...but- Vista and, err... what?"
Just have faith.
If nothing's changed in three months then quote me and pelt me with rotten fruit.
MA.
Apple know Vista's been coming for years, so they'll have Leopard ready. They've been working on the iPhone since before Tiger, so it's not like their R+D is suddenly going to drop in Mac development.
All of this 'what about the Mac' stuff is a little harsh. If Steve's got an Octo-Core Mac Pro coming in a few weeks, then he's not going to say so now.
Also, if Leopard isn't ready yet, and will be out in a few months, then not mentioning it is an awesome mind game. Bill gates was propbrably watching going "Uh...but- Vista and, err... what?"
Just have faith.
If nothing's changed in three months then quote me and pelt me with rotten fruit.
MA.
jessica.
Jun 1, 02:17 PM
Oh man that's funny.
The shirt at shirt.woot.com tributes this as well.
The shirt at shirt.woot.com tributes this as well.
more...

Doctor Q
Aug 21, 11:12 AM
Why does this remind me of the great submarine sandwich scene in the movie "Coneheads" where Chris Farley says "My mom's the only person I ever knew that could take a sandwich like that! (http://www.moviequotes.com/fullquote.cgi?qnum=40437)" ?
WildCowboy
Oct 19, 05:42 PM
Nice...catchy tune. Way over the 30 second limit though. :)
more...
LGShepherd
Jun 19, 10:20 AM
It is nice and easy to get to, plus there is a 24 hours mcdonalds on the way in. Having a maccys breakfast whilst waiting will help.
bkushner
May 6, 09:49 AM
Nobody wants to try gps on their wifi iPad?
I3eXa
Apr 19, 12:48 AM
not a car persay....but great nonetheless :D
jonnysods
Apr 6, 02:27 PM
Wonder if they run Windows Server 2000.
That is one butt load of memory. Wonder what Amazon needs?
That is one butt load of memory. Wonder what Amazon needs?
Cybix
Apr 1, 03:13 AM
Went to this expo yesterday, it wasnt bad, not as good as I thought it would be. Mainly computer shops, some game shops, a massive 600+ LAN fest, etc.
took a few snaps, on my blog:
http://www.invertedreality.com/
took a few snaps, on my blog:
http://www.invertedreality.com/
Kelzorz
May 6, 05:45 PM
How do i put button detection in an if statement, here is my code where IBActionA is a button...
- (IBAction)A: (id)sender {
- (IBAction)A: (id)sender {
skinnly
Jun 12, 07:05 AM
http://www.burzs.com/edit/arg.php?id=39283
withnail
Nov 1, 10:39 PM
You should only use that option to convert AIFF CD Audio files NOT mp3 files. Your quality will go in the toilet if you try to convert mp3 directly to AAC at any bit rate. Plus it does take a long time to make that crappy conversion.
True - I imagine that it would indeed. I already turned the option off because it didn't seem like it would be too helpful...
True - I imagine that it would indeed. I already turned the option off because it didn't seem like it would be too helpful...
0 comments:
Post a Comment