xlight
Aug 1, 02:00 PM
First you bitch about MS then when Apple does the same thing it is not wrong.
Come on ...
Come on ...
jezza63
Jan 12, 12:04 AM
AppleTV to include wireless operation of another mac similar to screen sharing but much faster and including audio. Can operate AppleTV with wireless keyboard.
yg17
Oct 6, 12:41 PM
AT&T in my area doesn't drop 30% of the calls either, ... and 3G is faster than Verizon, too. Thankfully I don't travel out of my area often. :)
For whatever reason, Sprint and Verizon started deploying their 3G networks about three years before T-Mobile and AT&T did. Nothing T-Mobile and AT&T can do about that now, except let Verizon gloat while they continue to try to play catch-up.
There's a reason for that, less work is required to upgrade a tower from CDMA to EvDO than to upgrade a tower from GSM to UMTS. That's why Verizon and Sprint are ahead in the 3G rollout. But that doesn't change the fact that overall, UMTS is a better technology than EvDO. SIM cards, simultaneous voice and data, global compatibility, etc. Of course, Verizon will never admit that unless you buy one of their expensive world phones, it'll be a worthless brick if you travel outside the US or Canada. With AT&T even their cheapest phones will work just about anywhere in the world.
For whatever reason, Sprint and Verizon started deploying their 3G networks about three years before T-Mobile and AT&T did. Nothing T-Mobile and AT&T can do about that now, except let Verizon gloat while they continue to try to play catch-up.
There's a reason for that, less work is required to upgrade a tower from CDMA to EvDO than to upgrade a tower from GSM to UMTS. That's why Verizon and Sprint are ahead in the 3G rollout. But that doesn't change the fact that overall, UMTS is a better technology than EvDO. SIM cards, simultaneous voice and data, global compatibility, etc. Of course, Verizon will never admit that unless you buy one of their expensive world phones, it'll be a worthless brick if you travel outside the US or Canada. With AT&T even their cheapest phones will work just about anywhere in the world.
sunfast
Sep 25, 12:43 PM
The reasons people HATE this new version so much:
1. It adds a lot of features and answers requests.
2. It's a free update.
3. This is a photography event, and people were caught off guard when Apple showed their photography product, despite the Aperture image right on the invitation.
4. Apple never releases hardware on Tuesdays, so there is no hope for any MacBook Pro updates tomorrow.
5. There will never be another chance for new MacBook Pros. We now know that the current models will be sold forever and ever, even after Apple goes out of business, which will happen by the end of the year.
:p
This is a FANTASTIC post.
1. It adds a lot of features and answers requests.
2. It's a free update.
3. This is a photography event, and people were caught off guard when Apple showed their photography product, despite the Aperture image right on the invitation.
4. Apple never releases hardware on Tuesdays, so there is no hope for any MacBook Pro updates tomorrow.
5. There will never be another chance for new MacBook Pros. We now know that the current models will be sold forever and ever, even after Apple goes out of business, which will happen by the end of the year.
:p
This is a FANTASTIC post.
Macula
Jan 7, 06:41 PM
Is it possible to download the entire keynote file (.avi) to my hard disk instead of viewing it streamed? Is it possible at all with Safari, or do I need Firefox and some extension/plugin?
Thanks.
Thanks.
KnightWRX
Apr 28, 09:42 AM
So, please don't take everything I typed and generalize it, because it's not for everyone.
I do understand where Dejo, Balamw and the others are coming from though. And frankly, they are probably better suited to help you than I am. I don't have a lot of experience with Objective-C and Cocoa, not like they do, having mostly come into it recently.
Back to the code, here is a photo of my connections (ignore canceBigtimer). What you say is true I don't know how NSTimer works entirely , just some parts, I realize that and it is one of the reason I postpone my timer for a future update (need to study it).
I have two timers, because, like I said.. I don't have full knowledge of timers. I know now that 1 timer is enough, even if I use two timers and start them at the same time, the log only shows 1 loop and the countdown in separate labels show e.g. 59 in one and 58 in another and so on.
Ok, how about we work on making 1 timer work then ? The code you posted is very complicated and I don't think it has to be this complicated. Going 1 timer would simplify this.
I see your Start Button is associated to 3 actions. Is this really what you want ? Let's simplify this. As an exercise, make 1 method, call it startTimer (like I did) and have only that action associated with your start button. From there, you can call the other methods yourself as needed.
Once you have modified the code in this way, post again what you have in full, what it is doing and what you think it should be doing. We'll go from there.
You mention my two global variables, It makes sense that the timer does not stop because the variables are outside the method that creates the timer. is that whats going on?
No, the variables are "fine" where they are. They would be better positionned in the @interface block and declared as instance variables, but implementation scope globals work too.
What you need to do however is reset those if you want your timer to start back at 0. Somewhere in your "stop/reset" code, there needs to be an initialization of those back to 0 :
seconds = 0;
minutes = 0;
If your Cancel button is what should reset it, then this should be right now in newActionTimer. But ideally, we'll get rid of that function when you simplify the code down to 1 timer.
Look at my NSLog outputs in my screenshot earlier. There's 3 methods there. updateLabel, cancelTimer, startTimer. This should have given you a big indication of how not complicated you should have made this.
If you want 3 buttons, start, reset, stop, you'd technically need 4 methods, as follows :
-(IBAction) startTimer: (id) sender;
-(IBAction) stopTimer: (id) sender;
-(IBAction) resetTimer: (id) sender;
-(void) updateLabel;
One to update the label as needed, one to start the timer, one to stop it and one to reset it.
Also, NSTimer is not your timer. The timer is what you are creating with ATimerViewController. You need to grasp this. NSTimer simply calls methods, in this case, it should be update label. That's about all it should be doing. Both the stop and reset methods should release the NSTimer object instance. startTimer should always create a new one. However, reset should be the one to set back seconds/minutes to 0.
I do understand where Dejo, Balamw and the others are coming from though. And frankly, they are probably better suited to help you than I am. I don't have a lot of experience with Objective-C and Cocoa, not like they do, having mostly come into it recently.
Back to the code, here is a photo of my connections (ignore canceBigtimer). What you say is true I don't know how NSTimer works entirely , just some parts, I realize that and it is one of the reason I postpone my timer for a future update (need to study it).
I have two timers, because, like I said.. I don't have full knowledge of timers. I know now that 1 timer is enough, even if I use two timers and start them at the same time, the log only shows 1 loop and the countdown in separate labels show e.g. 59 in one and 58 in another and so on.
Ok, how about we work on making 1 timer work then ? The code you posted is very complicated and I don't think it has to be this complicated. Going 1 timer would simplify this.
I see your Start Button is associated to 3 actions. Is this really what you want ? Let's simplify this. As an exercise, make 1 method, call it startTimer (like I did) and have only that action associated with your start button. From there, you can call the other methods yourself as needed.
Once you have modified the code in this way, post again what you have in full, what it is doing and what you think it should be doing. We'll go from there.
You mention my two global variables, It makes sense that the timer does not stop because the variables are outside the method that creates the timer. is that whats going on?
No, the variables are "fine" where they are. They would be better positionned in the @interface block and declared as instance variables, but implementation scope globals work too.
What you need to do however is reset those if you want your timer to start back at 0. Somewhere in your "stop/reset" code, there needs to be an initialization of those back to 0 :
seconds = 0;
minutes = 0;
If your Cancel button is what should reset it, then this should be right now in newActionTimer. But ideally, we'll get rid of that function when you simplify the code down to 1 timer.
Look at my NSLog outputs in my screenshot earlier. There's 3 methods there. updateLabel, cancelTimer, startTimer. This should have given you a big indication of how not complicated you should have made this.
If you want 3 buttons, start, reset, stop, you'd technically need 4 methods, as follows :
-(IBAction) startTimer: (id) sender;
-(IBAction) stopTimer: (id) sender;
-(IBAction) resetTimer: (id) sender;
-(void) updateLabel;
One to update the label as needed, one to start the timer, one to stop it and one to reset it.
Also, NSTimer is not your timer. The timer is what you are creating with ATimerViewController. You need to grasp this. NSTimer simply calls methods, in this case, it should be update label. That's about all it should be doing. Both the stop and reset methods should release the NSTimer object instance. startTimer should always create a new one. However, reset should be the one to set back seconds/minutes to 0.
turbobass
Apr 5, 03:31 PM
"doesn't apply to me so it's useless" mentality. guess the world revolves around them :rolleyes:
Thanks for the passing insult however I think I was pretty clear that your use for it was one I hadn't considered and also a rare case that made this app actually useful. I apologize for recognizing your rare and interesting situation.
Thanks for the passing insult however I think I was pretty clear that your use for it was one I hadn't considered and also a rare case that made this app actually useful. I apologize for recognizing your rare and interesting situation.
jonnysods
Apr 6, 07:57 AM
I didn't think that there could be a bigger time waster than Facebook.
But here it is, congratulations iAd app!
But here it is, congratulations iAd app!
cpucrash0
Mar 17, 01:39 AM
Your probably on camera and your probably going to get Banned from Best buy or if the see you in their they will ask for their money or call the cops. You knew you were getting it cheaper then the price it sells for so it's basically you stole from them. so if I were you I would not go into that Best buy ever again. The security guy probably knows who you are now.
CFreymarc
Mar 28, 06:44 PM
It's a little cheeky, sure, but the Design Award isn't really anything but marketing opportunity for the devs.
What needs to happen for these awards to mean anything is for an non-profit industry consortium to take the votes and not be biased with several in the industry that matters voting for it. That is how the Oscars, Emmies and Grammys all came about. Wired tried it with the "Webbies" but the marketing types had too much influence.
In summary, these awards should be retitled, "Third Party App Most Contributing to our Product's Bottom Line."
What needs to happen for these awards to mean anything is for an non-profit industry consortium to take the votes and not be biased with several in the industry that matters voting for it. That is how the Oscars, Emmies and Grammys all came about. Wired tried it with the "Webbies" but the marketing types had too much influence.
In summary, these awards should be retitled, "Third Party App Most Contributing to our Product's Bottom Line."
steadysignal
Apr 10, 06:59 PM
I refuse to buy anything from Best Buy because of their ethics and practices.
+1. been done with best buy for a long time. the markup on hdmi cables alone is enough to make me want to throw up in my mouth.
rats.
+1. been done with best buy for a long time. the markup on hdmi cables alone is enough to make me want to throw up in my mouth.
rats.
azentropy
Jan 9, 12:18 PM
What I want:
Ultra Portable MacBook: < 2.5lbs, 11.1" LCD, 10+ hours battery, a SSD option, starting at < $1500
Consumer Expandable mini-tower using DESKTOP processors, starting at <$1200.
What I predict:
That I won't be happy
:(
Ultra Portable MacBook: < 2.5lbs, 11.1" LCD, 10+ hours battery, a SSD option, starting at < $1500
Consumer Expandable mini-tower using DESKTOP processors, starting at <$1200.
What I predict:
That I won't be happy
:(
benjayman2
Apr 9, 01:21 AM
280390
reported the website misprint
So how much did you nab it for with the misprint if you don't mind telling? I wish that happened to me. I've been looking a for a good m4/3 for a while, but they are all so expensive that I might as get a dslr.
reported the website misprint
So how much did you nab it for with the misprint if you don't mind telling? I wish that happened to me. I've been looking a for a good m4/3 for a while, but they are all so expensive that I might as get a dslr.
sleepingworker
Apr 9, 01:39 AM
That was painful to watch. Sort of like Jack Ass: The Geek Edition. Of course they should be banned. Gizmodo was interfering with companies trying to present their products.
Wizard of Woz
Jan 15, 08:32 PM
Ahahaha. While some of you have some true criticisms, (and correct IMO) of the keynote, some of you are acting like spoilt little children.
Personally I enjoyed the keynote, except for the $20 iPod touch upgrade, which is a bit of a slap in the face.
The MBA is a complimentary machine to me. I have a C2D 20' iMac on my desk, but need something ultra-portable and light to carry at school. Something that could fit in a tiny little satchel - even a MB is too big - therefore the MBA is perfect for me. It's a machine to take notes, write reports etc on. I'd simply transfer work off using my 2GB Flash drive.
I would like to see an app that could use the touch gestures to draw diagrams - that would be great for Science, Maths etc.
Personally I enjoyed the keynote, except for the $20 iPod touch upgrade, which is a bit of a slap in the face.
The MBA is a complimentary machine to me. I have a C2D 20' iMac on my desk, but need something ultra-portable and light to carry at school. Something that could fit in a tiny little satchel - even a MB is too big - therefore the MBA is perfect for me. It's a machine to take notes, write reports etc on. I'd simply transfer work off using my 2GB Flash drive.
I would like to see an app that could use the touch gestures to draw diagrams - that would be great for Science, Maths etc.
dethmaShine
Apr 12, 08:45 AM
It's certainly possible that the next version of iLife that will ship with Lion-based Macs will be ad supported and provide a link to MAS to get rid of the ads, but we aren't there yet. ;)
B
Not possible.
But yes, we aren't there yet. :P
B
Not possible.
But yes, we aren't there yet. :P
Sounds Good
Apr 21, 09:23 PM
When is Windows 8 due out?
SevenInchScrew
Nov 28, 05:16 PM
But think of it this way. The average amount of kills you get per napalm strike, mortar team and valkyrie rockets are get on average same amount of kills as rc-xd.
I disagree. At least in the many games I've played so far, getting multi-kills with the RC-XD is pretty rare, whereas the Napalm and Valkyrie are pretty much a 2-3 kill, at least.
Getting 3 kills per rc car is also nothing rare in a domination or hq game.
Then my previous statement is given more credence. If 3-4 people on a team are still standing around, all huddled up, even AFTER the call-out for the RC-XD, then they deserve to get multi'd.
....and how it guarantees kills
They can be stopped, in many ways, whereas most other killstreaks can't. Plus, there really isn't any other offensive Killstreaks in the lower kill range, as they are mostly only defensive. If they made it a 4-5 killstreak, people who aren't as good at the game would never get to do anything fun like that. And then, as well, only the people who ARE good at the game would get to possibly add kills to their total.
I think it all really boils down to how people play the game. Despite the size of the maps, you can't just run around on the offensive all the time. Listen for the call-outs from the other teams killstreaks, and respond defensively when appropriate. Spy planes or choppers coming? Shoot them down. RC, Napalm, Mortar, Dogs or Valkyrie Rockets? Get indoors and hide, and defend your position for a few seconds.
The only killstreak with a limited counter is the SR71. If someone has a Counter Spy Plane, they can jam the Blackbird, otherwise nothing can stop it. But really, that person has already killed your team 7-8 times, so you've sort of brought it upon yourself.if we are talking about killstreaks: the huey chopper gunner red highlighting needs to go
Make a Custom Class with Ghost, problem solved. Hell, equip that same class with the Strela, and not only will the various Choppers not shoot you, but you can then bring it down so it stops killing your team as well.
I disagree. At least in the many games I've played so far, getting multi-kills with the RC-XD is pretty rare, whereas the Napalm and Valkyrie are pretty much a 2-3 kill, at least.
Getting 3 kills per rc car is also nothing rare in a domination or hq game.
Then my previous statement is given more credence. If 3-4 people on a team are still standing around, all huddled up, even AFTER the call-out for the RC-XD, then they deserve to get multi'd.
....and how it guarantees kills
They can be stopped, in many ways, whereas most other killstreaks can't. Plus, there really isn't any other offensive Killstreaks in the lower kill range, as they are mostly only defensive. If they made it a 4-5 killstreak, people who aren't as good at the game would never get to do anything fun like that. And then, as well, only the people who ARE good at the game would get to possibly add kills to their total.
I think it all really boils down to how people play the game. Despite the size of the maps, you can't just run around on the offensive all the time. Listen for the call-outs from the other teams killstreaks, and respond defensively when appropriate. Spy planes or choppers coming? Shoot them down. RC, Napalm, Mortar, Dogs or Valkyrie Rockets? Get indoors and hide, and defend your position for a few seconds.
The only killstreak with a limited counter is the SR71. If someone has a Counter Spy Plane, they can jam the Blackbird, otherwise nothing can stop it. But really, that person has already killed your team 7-8 times, so you've sort of brought it upon yourself.if we are talking about killstreaks: the huey chopper gunner red highlighting needs to go
Make a Custom Class with Ghost, problem solved. Hell, equip that same class with the Strela, and not only will the various Choppers not shoot you, but you can then bring it down so it stops killing your team as well.
BenRoethig
Oct 2, 03:39 PM
"Unnamed company"
We all know who that is....Real.
Or microsoft
We all know who that is....Real.
Or microsoft
Sesshi
Jan 12, 07:24 PM
I'm quite surprised that the fact that Jobs is a smug, egotistical sociopath is news. You have to be, to be that good.
fidelisimo
May 3, 10:01 PM
Wirelessly posted (Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_2 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Mobile/8H7)
I really like the tone of these commercials.
Also, I enjoy that they keep saying magic or magical; only because I know how angry people (trolls, mostly) here get about it.
Apple commercials are bright, uplifting and show how technology enhances the human experience. They show people using iPads, iPhones, MacBooks, etc in everyday situations. However Android Zoom, BB Playbook, Tab are dark, joyless with people abducted by aliens, enveloped and overpowered by machines, etc.
I really like the tone of these commercials.
Also, I enjoy that they keep saying magic or magical; only because I know how angry people (trolls, mostly) here get about it.
Apple commercials are bright, uplifting and show how technology enhances the human experience. They show people using iPads, iPhones, MacBooks, etc in everyday situations. However Android Zoom, BB Playbook, Tab are dark, joyless with people abducted by aliens, enveloped and overpowered by machines, etc.
skye12
Oct 6, 10:39 AM
The 30% figure was for users in the NYC METRO area. People just don't read anything anymore except snippets and headlines.
Also, very recently another frequency spectrum was rolled out in certain markets, Including NYC which should improve
performance.
Verizon has its own problems too. And iphone users actually surf the net lol.
Also, very recently another frequency spectrum was rolled out in certain markets, Including NYC which should improve
performance.
Verizon has its own problems too. And iphone users actually surf the net lol.
Al Coholic
May 2, 11:02 AM
iSteve caves to the likes of Al Franken. Yep. Too Funny.
Maybe Al can get Apple to put a real GPU back in the MBP13? I'm off to email him. Wish me luck!
Maybe Al can get Apple to put a real GPU back in the MBP13? I'm off to email him. Wish me luck!
Simgar988
Mar 17, 01:33 AM
You're actually breaking the law by knowingly paying less. Especially breaking the law by acknowledging it online.
Smart.... And honest... Congrats
Smart.... And honest... Congrats
No comments:
Post a Comment