Heinekev
Apr 29, 01:36 PM
Yeah, not a lot of stuff has changed from Snow Leopard in the way of user interface, and most of the stuff can be avoided completely, like LaunchPad. There are some annoying things that I've noticed though, like DigitalColor Meter only having the option for RGB colors, and nothing else. Something small that is really annoying.
Spaces behaves completely different due to the fullscreen mode addition, and it's taking some getting used to.
I love the ability double-tap zoom in the browser.
Flash is partially broken.
Spaces behaves completely different due to the fullscreen mode addition, and it's taking some getting used to.
I love the ability double-tap zoom in the browser.
Flash is partially broken.
kiljoy616
Apr 30, 04:36 AM
Thank you, thank you, thank you.
That sliding what ever they call it was a no show. Buttons are everywhere in our word, where are the slider stuff. :rolleyes:
To Apple "if its not broken don't fix it!" :cool:
That sliding what ever they call it was a no show. Buttons are everywhere in our word, where are the slider stuff. :rolleyes:
To Apple "if its not broken don't fix it!" :cool:
nebulos
May 3, 10:21 PM
gross
jayducharme
May 3, 01:52 PM
Maybe to let us know they're not just cracking down on iPhone owners?
And also maybe to suggest that "open" isn't all it's cracked up to be. The promise of an open system doesn't always play out in the real world. It works well for geeks who know what they're doing, but for the average consumer it can create a big headache (inadvertently installing a rogue program, for instance). It's a trade-off: more freedom vx. more stability.
And also maybe to suggest that "open" isn't all it's cracked up to be. The promise of an open system doesn't always play out in the real world. It works well for geeks who know what they're doing, but for the average consumer it can create a big headache (inadvertently installing a rogue program, for instance). It's a trade-off: more freedom vx. more stability.
SimonTheSoundMa
Sep 25, 04:03 PM
I suppose there could be a bit of news here for non-photographers.
As I understand it, Aperture uses OS X's built-in RAW image processing. If I remember rightly, the last Aperture update accompanied an OS X update. So it's possible 10.4.8 could be just around the corner (i.e. sometime this week?)
It still is pretty poor with compatibility when it comes to RAW. For example, it still can't read white balance from the meta data on RAW files off Canon cameras. Great!
Aperture's development also is going slow. Apple pulling out the software?
Perhaps all the developers are spending too much time on Leopard and Logic 8 at the moment.
As I understand it, Aperture uses OS X's built-in RAW image processing. If I remember rightly, the last Aperture update accompanied an OS X update. So it's possible 10.4.8 could be just around the corner (i.e. sometime this week?)
It still is pretty poor with compatibility when it comes to RAW. For example, it still can't read white balance from the meta data on RAW files off Canon cameras. Great!
Aperture's development also is going slow. Apple pulling out the software?
Perhaps all the developers are spending too much time on Leopard and Logic 8 at the moment.
thestaton
Nov 24, 06:19 AM
Huge saving on airport express. New Airport Ultra Express (802.11n) at Macworld!
Confirmed! :)
I find no mention of this anywhere, even did a google search.
Care for a link?
Confirmed! :)
I find no mention of this anywhere, even did a google search.
Care for a link?
peas
Sep 28, 12:56 PM
sweet, guess i need to read between the lines more.
i just noticed on the box cover it had a monster sticker on it that said
NO UPDATES ON ACADEMIC VERSIONS so i figured this .5 update wouldnt be allowed.
thanks for the heads up
i just noticed on the box cover it had a monster sticker on it that said
NO UPDATES ON ACADEMIC VERSIONS so i figured this .5 update wouldnt be allowed.
thanks for the heads up
scotthew1
Nov 23, 06:10 PM
will the sale discounts be added in with outher discounts, such as educator's discounts?
Gem�tlichkeit
Apr 29, 01:12 PM
Hope Lion comes with my sandybridge mba :D
MorphingDragon
Apr 30, 12:24 AM
Hey knock it off with all the off topic Windows drivel. Winrumors forums would be a better place to dispute these matters.
Slight UI tweaks aren't a big topic pool to draw from.
Slight UI tweaks aren't a big topic pool to draw from.
whatever
Oct 11, 12:00 PM
Disagree strongly. There are PLENTY of times when people are doing things that go perfectly with the video iPod (airplane travel, roadtrips, commuting via bus or carpool, just to name a few). Just because it doesn't fit into your lifestyle doesn't mean it won't be the greatest thing since sliced bread to a whole lot of others. When you miss a show you want to see (I still do occassionally, even with a DVR) it is AWESOME to be able to get it quick and easy on iTunes, at a pretty dang good quality.
Also, have you TRIED watching TV on an iPod. Even the current screen at 320x480 looks great with as bright and high resolution (per inch) as they've made the current iPod. If Apple really does go wide screen as so many are hoping, the picture may look nicer than a big screen TV (since any screen gets smaller the further you get from it).
Hey don't you watch Heroes? The Japaneese guy watches his porn on a iPod.
Also, have you TRIED watching TV on an iPod. Even the current screen at 320x480 looks great with as bright and high resolution (per inch) as they've made the current iPod. If Apple really does go wide screen as so many are hoping, the picture may look nicer than a big screen TV (since any screen gets smaller the further you get from it).
Hey don't you watch Heroes? The Japaneese guy watches his porn on a iPod.
tvguru
Sep 12, 08:22 AM
The links from that iTunes Videos thing DO NOT point to any movies. They point to iPod versions of movie trailers. It's just a consolidation of the current content.
But saying that doesn't matter because people aren't reading the thread.
LOL Chundles, looks like your the ring leader for the evening. :p
But saying that doesn't matter because people aren't reading the thread.
LOL Chundles, looks like your the ring leader for the evening. :p
Nekbeth
Apr 26, 10:29 PM
What if after pressing the start button, you create a timer and start it. Then pressing the cancel button invalidates and releases it. Then pressing the start button would create another timer, using the same pointer.
Totally untested and probably broken code below, but should demonstrate the idea:
-(IBAction)startButton:(id) sender {
// myTimer is declared in header file ...
if (myTimer!=nil) { // if the pointer already points to a timer, you don't want to create a second one without stoping and destroying the first
[myTimer invalidate];
[myTimer release];
}
// Now that we know myTimer doesn't point to a timer already..
myTimer = [NSTimer scheduledTimerWithTimeInterval:aTimeInterval target:self selector:@selector(echoIt:) userInfo:myDict repeats:YES];
[myTimer retain];
}
-(IBAction)cancelIt:(id) sender {
[myTimer invalidate];
[myTimer release]; // This timer is now gone, and you won't reuse it.
}
Update *** "I though it worked but the timer kept going on the background.
crashed :confused:
wlh99, do you get an exception in the invalid method " [myTimer Invalidate]" ?
Totally untested and probably broken code below, but should demonstrate the idea:
-(IBAction)startButton:(id) sender {
// myTimer is declared in header file ...
if (myTimer!=nil) { // if the pointer already points to a timer, you don't want to create a second one without stoping and destroying the first
[myTimer invalidate];
[myTimer release];
}
// Now that we know myTimer doesn't point to a timer already..
myTimer = [NSTimer scheduledTimerWithTimeInterval:aTimeInterval target:self selector:@selector(echoIt:) userInfo:myDict repeats:YES];
[myTimer retain];
}
-(IBAction)cancelIt:(id) sender {
[myTimer invalidate];
[myTimer release]; // This timer is now gone, and you won't reuse it.
}
Update *** "I though it worked but the timer kept going on the background.
crashed :confused:
wlh99, do you get an exception in the invalid method " [myTimer Invalidate]" ?
quagmire
Aug 3, 08:44 PM
Never going to happen car dealer have bribe our politcal leaders to the point that nothing will ever be passes against the
As it stands manufactures can not legally open and run there own dealership and the laws make it very difficult for a manufacture to remove an agreement to sell to one dealler ship
I know that and it sucks because all the blame for one bad dealer experience goes to the manufactures.
Dealerships have way too much power. You can thank them for the Pontiac G3 and G5.
As it stands manufactures can not legally open and run there own dealership and the laws make it very difficult for a manufacture to remove an agreement to sell to one dealler ship
I know that and it sucks because all the blame for one bad dealer experience goes to the manufactures.
Dealerships have way too much power. You can thank them for the Pontiac G3 and G5.
Mord
Apr 26, 09:04 AM
Whilst the company shouldn't say 'if you see any fights, jump in the middle of them', those employees should know full well that it isn't ok to watch and laugh as someone is getting the tish kicked out of them! Who was the man in the Blue shirt at the start of the video? he tried to break it up at first but seemed to then let it carry on.
I believe that was the manager, I don't know for sure. He walked a thin line IMO.
This guy was more than capable of defending himself...
As rdowns says, your attitude is simply offensive and is wearing incredibly thin. Have you even watched the video? The victim was not a man, did not have a male physique and was not capable of defending herself. You're just offensive for the sake of being offensive at this point.
I believe that was the manager, I don't know for sure. He walked a thin line IMO.
This guy was more than capable of defending himself...
As rdowns says, your attitude is simply offensive and is wearing incredibly thin. Have you even watched the video? The victim was not a man, did not have a male physique and was not capable of defending herself. You're just offensive for the sake of being offensive at this point.
bmustaf
Dec 13, 05:07 PM
I'm not buying it (either in terms of the story, or in terms of a supposed hybrid phone if it does make it to market).
The baseband chipsets don't exist as mass market components (either in supply or feature set).
If they did, they'd suck down battery faster than you could keep the damn thing charged. I think it is pretty clear where Apple plays - technology that is applicable, relevant, and usable.
I don't think 4G is there yet, unless Qualcomm et al are hiding some major hybrid CDMA/LTE chipsets (the LTE-only chipsets themselves are power hogs - why do you think VZW hasn't rolled out handsets, they've limited 4G use to people hooking USB cards into a 3000mAh battery that can feed that 500mAh - 1000mAh draw).
Battery technology is getting better, and the chipsets are getting better, but not in time for a device in January. Maybe I'll eat crow, but I doubt it. If this happens (and it might), it's not going to be a great device that everyone is expecting (read: keep the 4G radio off and use it as a CDMA iPhone 4) or it's simply not going to exist. It's possible VZW needed a retort to ATT's simultaneous voice & data ploy so they included it to check that off the list and the phone will stick to EVDO for nearly everything...but the EVDO<->LTE carrier handoff isn't transparent (far worse than EDGE<->3G), so that is a usability issue in and of itself that I think Apple would not like.
http://www.macrumors.com/images/macrumorsthreadlogo.gif (http://www.macrumors.com/2010/12/13/4g-verizon-iphone-to-debut-after-christmas/)
MacDailyNews reports (http://www.macdailynews.com/index.php/weblog/comments/exclusive_verizons_iphone_rumored_to_be_lte_device_coming_right_after_xmas/) that it has received information from a "source that we believe to be credible" regarding management training for the Verizon iPhone offered by the company last week. According to the report, the Verizon iPhone will launch immediately after Christmas and is in fact an LTE 4G device.The report also claims that the Verizon iPhone is already shipping to Verizon warehouses, and the carrier will maintain control over all stock until launch in order to control information leaks.
Finally, the source indicates that the iPhone 5 was intended to be LTE-only at its debut next summer, but Steve Jobs and Apple are upset that the carriers are not building out their LTE infrastructure quickly enough to make that happen.
Verizon's 4G network launched last week (http://www.macrumors.com/2010/12/01/verizons-4g-network-to-launch-next-week-no-handsets-until-mid-2011/) for mobile broadband customers, but the carrier noted that it does not expect to debut 4G-capable handsets until the middle of next year.
MacDailyNews is not a frequent source of rumors, and has a mixed record on the information it has published in the past. In addition, we are skeptical that Apple had ever seriously planned for the fifth-generation iPhone 5 to be "LTE-only", given that even the most aggressive LTE build-out schedules from the carriers have long planned for it to be several years before their entire networks are upgraded to the standard. In fact, other sources (http://www.macrumors.com/2010/10/11/mid-2011-iphone-to-utilize-dual-mode-gsm-cdma-chip-skip-4g/) have indicated that the fifth-generation iPhone won't support LTE at all, a move which would follow Apple's precedent with not supporting 3G in the original iPhone as it waited for greater availability and more advanced technology for utilizing the standard.
Consequently, we are publishing this rumor on Page 2 for interest and discussion.
Article Link: 4G Verizon iPhone to Debut After Christmas? (http://www.macrumors.com/2010/12/13/4g-verizon-iphone-to-debut-after-christmas/)
The baseband chipsets don't exist as mass market components (either in supply or feature set).
If they did, they'd suck down battery faster than you could keep the damn thing charged. I think it is pretty clear where Apple plays - technology that is applicable, relevant, and usable.
I don't think 4G is there yet, unless Qualcomm et al are hiding some major hybrid CDMA/LTE chipsets (the LTE-only chipsets themselves are power hogs - why do you think VZW hasn't rolled out handsets, they've limited 4G use to people hooking USB cards into a 3000mAh battery that can feed that 500mAh - 1000mAh draw).
Battery technology is getting better, and the chipsets are getting better, but not in time for a device in January. Maybe I'll eat crow, but I doubt it. If this happens (and it might), it's not going to be a great device that everyone is expecting (read: keep the 4G radio off and use it as a CDMA iPhone 4) or it's simply not going to exist. It's possible VZW needed a retort to ATT's simultaneous voice & data ploy so they included it to check that off the list and the phone will stick to EVDO for nearly everything...but the EVDO<->LTE carrier handoff isn't transparent (far worse than EDGE<->3G), so that is a usability issue in and of itself that I think Apple would not like.
http://www.macrumors.com/images/macrumorsthreadlogo.gif (http://www.macrumors.com/2010/12/13/4g-verizon-iphone-to-debut-after-christmas/)
MacDailyNews reports (http://www.macdailynews.com/index.php/weblog/comments/exclusive_verizons_iphone_rumored_to_be_lte_device_coming_right_after_xmas/) that it has received information from a "source that we believe to be credible" regarding management training for the Verizon iPhone offered by the company last week. According to the report, the Verizon iPhone will launch immediately after Christmas and is in fact an LTE 4G device.The report also claims that the Verizon iPhone is already shipping to Verizon warehouses, and the carrier will maintain control over all stock until launch in order to control information leaks.
Finally, the source indicates that the iPhone 5 was intended to be LTE-only at its debut next summer, but Steve Jobs and Apple are upset that the carriers are not building out their LTE infrastructure quickly enough to make that happen.
Verizon's 4G network launched last week (http://www.macrumors.com/2010/12/01/verizons-4g-network-to-launch-next-week-no-handsets-until-mid-2011/) for mobile broadband customers, but the carrier noted that it does not expect to debut 4G-capable handsets until the middle of next year.
MacDailyNews is not a frequent source of rumors, and has a mixed record on the information it has published in the past. In addition, we are skeptical that Apple had ever seriously planned for the fifth-generation iPhone 5 to be "LTE-only", given that even the most aggressive LTE build-out schedules from the carriers have long planned for it to be several years before their entire networks are upgraded to the standard. In fact, other sources (http://www.macrumors.com/2010/10/11/mid-2011-iphone-to-utilize-dual-mode-gsm-cdma-chip-skip-4g/) have indicated that the fifth-generation iPhone won't support LTE at all, a move which would follow Apple's precedent with not supporting 3G in the original iPhone as it waited for greater availability and more advanced technology for utilizing the standard.
Consequently, we are publishing this rumor on Page 2 for interest and discussion.
Article Link: 4G Verizon iPhone to Debut After Christmas? (http://www.macrumors.com/2010/12/13/4g-verizon-iphone-to-debut-after-christmas/)
spillproof
Apr 6, 05:45 AM
How about an app that displays the apps that have iAds.
But I downloaded it our of curiosity. I couldn't help myself :(:o
But I downloaded it our of curiosity. I couldn't help myself :(:o
Thomas Veil
Mar 3, 08:29 PM
While it's nominally leaving the unions intact, it's telling them that they have no more power over their health care benefits or pensions. Those can be deeply cut or taken away at any time. Other things, like hours worked and days off, will be non-negotiable as well. And while the union is still free to negotiate wages, the single real bargaining tool they have -- striking -- would now be a jailable offense. So they really have no power to negotiate wages either. Everything will essentially be "take it or leave it."
I agree, this is going to swing the state back to the Democrats in 2012. And yes, unless this is defeated in the courts or by a ballot initiative, anybody who wants to be a teacher or a cop or whatever will look elsewhere, outside of Ohio.
This is going to be terrible for our economy.
I agree, this is going to swing the state back to the Democrats in 2012. And yes, unless this is defeated in the courts or by a ballot initiative, anybody who wants to be a teacher or a cop or whatever will look elsewhere, outside of Ohio.
This is going to be terrible for our economy.
overbyte
Jan 10, 07:09 AM
dell are making the latitude xt with mutitouch and stylus support (built by n-trig and notable because both actions are governed by the same hardware rather than 2 competing systems as seen on previous touch/stylus tablets)
it sucks that apple hasn't done anything for it's traditional design audience - i can't believe that i'm actually thinking about going over to pc so that i can do what i want with my hardware rather than waiting for apple to deign to look in my direction
pah
would be nice if they did tho - asus said the tablet was on it's way and n-trig have hinted about 'other hardware manufacturers' being quite keen on their tech
it sucks that apple hasn't done anything for it's traditional design audience - i can't believe that i'm actually thinking about going over to pc so that i can do what i want with my hardware rather than waiting for apple to deign to look in my direction
pah
would be nice if they did tho - asus said the tablet was on it's way and n-trig have hinted about 'other hardware manufacturers' being quite keen on their tech
wilsonlaidlaw
Sep 29, 09:27 AM
Having seen pictures of the Jackling house, in my personal opinion, this is barely an architectural gem worth preserving, being a rather ugly house. I think the spanish colonial revival of the 1920's was a blind alley. I do however hope that if SJ does not want it, the famous pipe organ in the house is not scrapped and will either be donated to an organ preservation society or sold to someone who will restore and use it.
Wilson
Wilson
geoffism
Dec 13, 03:26 PM
We've all be wrong before.
its interesting that Fortune picked up the story as well. The internet is the new home of the written truth.
It would be cool if it happens, but I'm not holding my breath.
its interesting that Fortune picked up the story as well. The internet is the new home of the written truth.
It would be cool if it happens, but I'm not holding my breath.
pete0302
Jan 15, 02:13 PM
The reason I was anticipating a new MacBook Pro is because as of right now, I have someone interested in purhasing my Powerbook. And it would have been perfect timing.
kirky29
Apr 25, 12:24 PM
Looks nice actually.
iPhone 4S has a nice ring to it too.
iPhone 4S has a nice ring to it too.
TrulyYuki
Apr 12, 09:52 PM
I'm quite curious how well this works and if it is worth the hassle. It's not that hard to stick the batter in a pan and toss it in the oven. ;)
I have a small cupcake obsession. I'd rather bake them then eat them it seems because they often go to waste.
Wait......do you guys have a little obsession with cupcakes, or an obsession with little cupcakes?
I just want to be clear, that's all. ;)
Haha. :D That's a good one. I LOL at that! :p
Jessica-
I have to a wait until the weekend to try it out since I'm working all week. Bummer. Well I'm sure they'll turn out great. I'll let you know then
Surely-
A little of both. I have a little obsession with cupcakes and little cupcakes feed that obsession. You know how girls are with little things!
SpeedwithJJ-
Yeah. That was funny.
I have a small cupcake obsession. I'd rather bake them then eat them it seems because they often go to waste.
Wait......do you guys have a little obsession with cupcakes, or an obsession with little cupcakes?
I just want to be clear, that's all. ;)
Haha. :D That's a good one. I LOL at that! :p
Jessica-
I have to a wait until the weekend to try it out since I'm working all week. Bummer. Well I'm sure they'll turn out great. I'll let you know then
Surely-
A little of both. I have a little obsession with cupcakes and little cupcakes feed that obsession. You know how girls are with little things!
SpeedwithJJ-
Yeah. That was funny.
ليست هناك تعليقات:
إرسال تعليق