iris_failsafe
Nov 16, 12:37 PM
Besides I don't think there is anything AMD can offer Apple right now. The Core archiecture has proven to be faster than the Athlon Opteron one...
citizenzen
Apr 23, 12:44 PM
Cite?
Thanks CM.
I'd gotten tired of asking bassfingers to back up his assertions with evidence.
His posts are often short-cited.
Thanks CM.
I'd gotten tired of asking bassfingers to back up his assertions with evidence.
His posts are often short-cited.
yoda13
Nov 16, 05:30 PM
DigiTimes' track record is amazingly bad. You'd think they'd be right more often just by guessing.
I thought that is what they were doing...:confused:
I thought that is what they were doing...:confused:
slffl
Oct 3, 12:23 PM
I guess the 'Year of the laptop' was for that year only.

benjayman2
Apr 7, 12:17 AM
About damn time too...
Looking forward to shooting with this new gear...
I am literally glowing green. Hopefully one day I'll I'll be as pro as this pic is. Gah I can't hold it in OMGFJFC that is BAMF canon haul if I ever saw one.
Looking forward to shooting with this new gear...
I am literally glowing green. Hopefully one day I'll I'll be as pro as this pic is. Gah I can't hold it in OMGFJFC that is BAMF canon haul if I ever saw one.
peharri
Sep 12, 07:50 AM
You won't be if Apple are increasing the bitrate of audio tracks as part of the update. It's about time they did.
Yeah, I'm sure he'll be delighted if his iPod suddenly has less capacity in exchange for a imperceptible improvement in quality. ;-)
Now, a reduction in bitrate, as an option, might be good...
Yeah, I'm sure he'll be delighted if his iPod suddenly has less capacity in exchange for a imperceptible improvement in quality. ;-)
Now, a reduction in bitrate, as an option, might be good...
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.
Forever
Sep 12, 07:51 AM
What time does it start GMT?
skunk
Apr 21, 11:49 AM
Apathy would be not clicking anything.If I want to revert to apathy from a previously engaged stance, I can't. I have to actively disapprove or actively approve.
adder7712
Apr 6, 05:32 PM
Who likes looking at ads?
I practically have an equivalent of AdBlock on all browsers that I use regularly...
I practically have an equivalent of AdBlock on all browsers that I use regularly...
elctropro
Jan 1, 01:26 AM
My understanding is that AT&T is pretty far along in its upgrade from HPSA (3G) network to HPSA+ (faster 3G). They're doing this to maximize their existing investment in their infrastructure, and they should be able to employ LTE a little faster than Verizon has been, since LTE is a more streamlined upgrade from HPSA+. They claim that this is best for customers long-term, because when LTE (4G) coverage gives out, users can fall back on widespread HPSA+ coverage with similar performance. Whereas with Verizon, when you move out of an area with 4G coverage, you notice a HUGE drop in speed going to their ancient EV-DO technology.
ucfgrad93
Mar 17, 01:14 AM
Haaaaaaa just shared a launch day story, and the majority of you would have hauled ass with iPad in hand for the price I paid. Haters lmfao
No, I wouldn't have. Unlike you, I don't enjoy ripping people off.
No, I wouldn't have. Unlike you, I don't enjoy ripping people off.
Qwest905
Apr 6, 01:34 PM
for the wife
http://farm6.static.flickr.com/5069/5593508856_f7ddb60cb8_b.jpg
preordered for myself the playbook =)
http://www.phonereleaseinfo.com/wp-content/uploads/2010/11/blackberry-playbook.jpg
http://farm6.static.flickr.com/5069/5593508856_f7ddb60cb8_b.jpg
preordered for myself the playbook =)
http://www.phonereleaseinfo.com/wp-content/uploads/2010/11/blackberry-playbook.jpg
ChaosAngel
Apr 16, 02:18 AM
I've attempted to highlight the main new features that have been leaked for Windows 8. I have to say, things are looking good:
http://bit.ly/gTcS4o
I am especially a fan of "portable workspace" and "factory reset". Hopefully they make the release version.
http://bit.ly/gTcS4o
I am especially a fan of "portable workspace" and "factory reset". Hopefully they make the release version.
Mistrblank
Apr 8, 02:01 PM
I wonder what the special promotion is.
Probably in the form of "bundles" where you're required to buy an iPad with their special accessory packs just so they can push overpriced accessories out of the door.
Probably in the form of "bundles" where you're required to buy an iPad with their special accessory packs just so they can push overpriced accessories out of the door.
Rocketman
Nov 16, 05:50 PM
If you recall, at the 1-06 unveiling of the intel Macs (or maybe it was the conference call Q&A), Steve stated AMD made really good server chips, but Apple makes consumer products.
Perhaps Apple is doing an AMD based blade, or iTV, or some "appliance" product.
The rumour is unlikely to be true however.
Rocketman
Perhaps Apple is doing an AMD based blade, or iTV, or some "appliance" product.
The rumour is unlikely to be true however.
Rocketman

Anthony T
Apr 15, 04:45 PM
If they're going to go with an aluminum design, it should look like this, but maybe with rounded edges:
http://www.phonesreview.co.uk/2010/03/30/iphone-4g-aka-hd-mock-up-design-and-details-photo/
http://www.phonesreview.co.uk/2010/03/30/iphone-4g-aka-hd-mock-up-design-and-details-photo/

Yvan256
Aug 2, 09:28 AM
The default M4A bit rate used by iTunes is a joke. You have to be 80 years old not to notice the huge difference between a CD and a standard iTunes M4A track.
I'm sorry but most people (I'd say 99.9%) can't hear the difference between a CD and a 128kbps AAC file.
Heck, we got people still using 128kbps MP3 for crying out loud. If they heard any difference (or if it really sounded like crap) we'd see them using 256kbps MP3 instead. Granted, the encoder makes a huge difference, but most files you see on P2P networks are 128kbps.
I'm sorry but most people (I'd say 99.9%) can't hear the difference between a CD and a 128kbps AAC file.
Heck, we got people still using 128kbps MP3 for crying out loud. If they heard any difference (or if it really sounded like crap) we'd see them using 256kbps MP3 instead. Granted, the encoder makes a huge difference, but most files you see on P2P networks are 128kbps.
mrkramer
Jan 15, 11:10 PM
I was very disappointed with the keynote. I have no need for an :apple:TV, I am slightly upset that the iPod touch update costs money. The time capsule may be interesting, but nothing I plan on getting anytime soon. I did get excited when the MacBook air was introduced, but then after the keynote when I was checking prices on the BTO parts to see how long until I would have enough money to buy it I realized that it had a glossy screen which I will never buy so what would have been an otherwise almost perfect powerbook 12" replacement was ruined.
SevenInchScrew
Nov 14, 09:10 PM
The campaign is great, and you really get attached to the characters.
I don't know what you're all talking about.
No, having to replay sections over and over and over and over, just to learn what is killing you is not great. It is crappy 90s game design, that we should not have to deal with in 2010. Crappy checkpoints mixed with crappy enemy and team "AI" (if you can call it that) make for a really crappy game. I'm turning it down to Recruit just to get it over with, so I can flush it from my mind as quick as possible.
I beat both MW games on Hardened, and about half of the levels of each on Veteran. While the plot in both was ludicrous, they were at least fun. Lots of clear objectives, teammates who would stay out of the way, and very few of those "monster closet" moments (grrrrr, Favela :mad:) Those games were fun from start to finish. Black Ops is just a mess of crazy flashbacks cutscenes, messy game design, and terrible direction.
Yeah. I liked MW2's campaign better. It may be because I am from the DC area so it was quite weird seeing it war torn.
How about Fallout 3? I've never been to DC, but I find it really funny how when I see it on TV or in movies now, I recognize so much of it, and where things are, just from my hundreds of hours in that game. :D
I don't know what you're all talking about.
No, having to replay sections over and over and over and over, just to learn what is killing you is not great. It is crappy 90s game design, that we should not have to deal with in 2010. Crappy checkpoints mixed with crappy enemy and team "AI" (if you can call it that) make for a really crappy game. I'm turning it down to Recruit just to get it over with, so I can flush it from my mind as quick as possible.
I beat both MW games on Hardened, and about half of the levels of each on Veteran. While the plot in both was ludicrous, they were at least fun. Lots of clear objectives, teammates who would stay out of the way, and very few of those "monster closet" moments (grrrrr, Favela :mad:) Those games were fun from start to finish. Black Ops is just a mess of crazy flashbacks cutscenes, messy game design, and terrible direction.
Yeah. I liked MW2's campaign better. It may be because I am from the DC area so it was quite weird seeing it war torn.
How about Fallout 3? I've never been to DC, but I find it really funny how when I see it on TV or in movies now, I recognize so much of it, and where things are, just from my hundreds of hours in that game. :D
Scarlet Fever
Jan 8, 08:55 PM
What I want;
-updated ACDs. They're getting on a bit. I predict the 20" display will go at least 1080 HD, iSight and IR in all models, faster response time, contrast, etc.
-MBP updates. Penryn sounds good at the moment. 2GB RAM standard, updated HDDs, maybe 17" LED display?
-Big Mac Mini update. It could turn into the headless iMac we all want so bad. I'm not hedging any bets on this, though. If it is updated, it'll at least go SR
-MacBook Nano; ULV dual core intel chip at 1.2GHz, 802.11n, BT, up to 2GB RAM (one stick), external optical drive, 11.1" LED display. US$1499
-iTunes 7.6 brings movie rentals, games for iPhone/iPod Touch
-updated ACDs. They're getting on a bit. I predict the 20" display will go at least 1080 HD, iSight and IR in all models, faster response time, contrast, etc.
-MBP updates. Penryn sounds good at the moment. 2GB RAM standard, updated HDDs, maybe 17" LED display?
-Big Mac Mini update. It could turn into the headless iMac we all want so bad. I'm not hedging any bets on this, though. If it is updated, it'll at least go SR
-MacBook Nano; ULV dual core intel chip at 1.2GHz, 802.11n, BT, up to 2GB RAM (one stick), external optical drive, 11.1" LED display. US$1499
-iTunes 7.6 brings movie rentals, games for iPhone/iPod Touch
arn
Apr 21, 10:44 PM
Perhaps a "Relevant" button then.
I guess leaving it as a +1 button is pretty much the same thing without using a word.
*shrug*
I just think it may be more troublesome than helpful to have a -1 button. If someone disagrees with a post, they usually respond with an argument. If they agree, unless they have something to add, hitting the +1 button would work, and it would clear up the "Agreed" and "+1" posts.
Well, some places limit the ability to downvote for higher level accounts. Like those who have been around or gained a certain amount of reputation. While others have no downvote ability at all.
arn
I guess leaving it as a +1 button is pretty much the same thing without using a word.
*shrug*
I just think it may be more troublesome than helpful to have a -1 button. If someone disagrees with a post, they usually respond with an argument. If they agree, unless they have something to add, hitting the +1 button would work, and it would clear up the "Agreed" and "+1" posts.
Well, some places limit the ability to downvote for higher level accounts. Like those who have been around or gained a certain amount of reputation. While others have no downvote ability at all.
arn
nem3015
Nov 16, 01:54 PM
I doubt Apple will go with AMD in the near future - at the moment Intel has the performance lead and the AMD/Intel war is so hot Intel would no doubt punish Apple for adding AMD CPUs to their product line.
I'm not holding my breath...but I am interested to see what AMD comes out with in answer to the Core 2 Duo. Maybe if AMD regains its competitiveness there will be pressure for Apple to branch out a little.
Maybe AMDs for the low end lines and Core 2 Duo for the high end? What about a Mac Mini with dual AMD X2 for less than $400 with ATI graphic? :D
I'm not holding my breath...but I am interested to see what AMD comes out with in answer to the Core 2 Duo. Maybe if AMD regains its competitiveness there will be pressure for Apple to branch out a little.
Maybe AMDs for the low end lines and Core 2 Duo for the high end? What about a Mac Mini with dual AMD X2 for less than $400 with ATI graphic? :D
miles01110
Apr 13, 06:37 AM
Don't know what is more ridiculous, the pat down of the little girl or the mother asking for a re-scan. I op out every single time I travel. It is not evident (and the TSA flunkies don't really know) whether a given device is a backscatter scanner or a an active or passive terahertz wave scanner. There is currently no long term evidence that backscatter or active terahertz wave scanners do not have side effects, especially for frequent travelers. Unless they switch all scanners to passive terahertz wave scanners, I will continue to opt out and if they ever make these scans mandatory without the opt out option, I will refuse to fly.
The radiation dosage from any properly maintained active scanner is still orders of magnitude less than what you get from a 4-hour flight at 10 km. Go ahead and opt out of your full-body scans... if you're doing it for the "health" reason you're tilting at a very small windmill.
The radiation dosage from any properly maintained active scanner is still orders of magnitude less than what you get from a 4-hour flight at 10 km. Go ahead and opt out of your full-body scans... if you're doing it for the "health" reason you're tilting at a very small windmill.
No comments:
Post a Comment