JonYo
Nov 23, 10:46 PM
ok another question...if i go into a retail store and their sold out of hte macbook i want...can i pay and have it shipped...i know i can use the online store its just that i cant use a credit card or have access to one....
so would i still get the same discount?
and also....at the retail store...do u think they'll be SUPER busy with other things and too busy for me?
Nope, the discounts are only going to apply to purchases of stuff that day, no rainchecks for out of stock items or anything like that. Sorry for the bad news!
so would i still get the same discount?
and also....at the retail store...do u think they'll be SUPER busy with other things and too busy for me?
Nope, the discounts are only going to apply to purchases of stuff that day, no rainchecks for out of stock items or anything like that. Sorry for the bad news!
yg17
Mar 4, 11:55 AM
ooops...
gop takes unprecedented 10-point lead on generic ballot (http://www.gallup.com/poll/142718/gop-unprecedented-lead-generic-ballot.aspx)
republicans also maintain wide gap in enthusiasm about voting
princeton, nj -- republicans lead by 51% to 41% among registered voters in gallup weekly tracking of 2010 congressional voting preferences. The 10-percentage-point lead is the gop's largest so far this year and is its largest in gallup's history of tracking the midterm generic ballot for congress.
http://sas-origin.onstreammedia.com/origin/gallupinc/gallupspaces/production/cms/poll/4nitz4hkueaj85zreale-w.gif
2010 != 2012
gop takes unprecedented 10-point lead on generic ballot (http://www.gallup.com/poll/142718/gop-unprecedented-lead-generic-ballot.aspx)
republicans also maintain wide gap in enthusiasm about voting
princeton, nj -- republicans lead by 51% to 41% among registered voters in gallup weekly tracking of 2010 congressional voting preferences. The 10-percentage-point lead is the gop's largest so far this year and is its largest in gallup's history of tracking the midterm generic ballot for congress.
http://sas-origin.onstreammedia.com/origin/gallupinc/gallupspaces/production/cms/poll/4nitz4hkueaj85zreale-w.gif
2010 != 2012
PinkyMacGodess
Apr 8, 08:39 PM
This is STUPID!
Yeah, we got them but na na na na na you can't buy one SUCKER!
What possible positive result can be worth this ********?
Huh Steve?
Unless they are being 'held' because of manufacturing flaws... Like the screen glue not drying enough? Hmm...
Yeah, we got them but na na na na na you can't buy one SUCKER!
What possible positive result can be worth this ********?
Huh Steve?
Unless they are being 'held' because of manufacturing flaws... Like the screen glue not drying enough? Hmm...
tekker
May 3, 09:51 PM
In other words, we're both out of luck.
That's what you think.
That's what you think.
Ygn
Nov 6, 04:55 PM
I've been using World at War for a bit recently mainly for the zombies so I'm looking forward to the new maps on Black Ops. I've never really been able to get into MW2, but the multiplayer of MW2 is really good so I hope Black ops follows, by trailers and videos I've watched it looks like it will.
Multimedia
Oct 4, 07:49 AM
The people I have spoken to who use PC's are not nerds or power users, however, they do have monitors that work perfectly fine and want to use them. Why would someone purchase a 20" iMac when they already have sitting on their desk a 12 month old 19" LCD? They may not all need expandability (or really understand what that means) but they are of the mind set that they must have the option. These people are simply not considering Apple computers because of the lack of an upgradeable computer that is under $1500 (the mini is not easily upgradeable unless you happen to be one of those nerds you are refering to). The gap between the mini and the Mac Pro is enormous in both power and price yet there is nothing in the middle price/power range. Simply dismissing this catagory of people will not convince them to buy an iMac. Further, saying the operating system will convince them to switch is a moot point if they never buy the computer in the first place.
My friends, family, and co-workers are all interested in this "OS X thing" but get turned off at the price of the Pro, the lack of power of the mini, and the all in one of the iMac. This is what I am seeing, and Apple is losing sales because of it.
Bravo. Apple Marketing needs a new Sheriff.You said the exact reasons why I bought a new PC tower and not a Mac, although I wanted to get a Mac.I completely understand your frustration. It's ridiculous what Apple is not doing to fill this obvious product line black hole which is sucking all the potential sales of Macs over to the PC side. :eek: :( :mad:
My friends, family, and co-workers are all interested in this "OS X thing" but get turned off at the price of the Pro, the lack of power of the mini, and the all in one of the iMac. This is what I am seeing, and Apple is losing sales because of it.
Bravo. Apple Marketing needs a new Sheriff.You said the exact reasons why I bought a new PC tower and not a Mac, although I wanted to get a Mac.I completely understand your frustration. It's ridiculous what Apple is not doing to fill this obvious product line black hole which is sucking all the potential sales of Macs over to the PC side. :eek: :( :mad:
wlh99
Apr 26, 08:59 PM
After that I implement a Cancel method pointing to sender (button)
So, my goal is to use 1 start button and 1 cancel button.. and just do their actions. I have set up a the start button to start both timers, obviously both start their countdown at the same time which is not good.
I want to tell one timer to start and if I press cancel, invalidate it. Then If I press start again, call the second timer. (I do this because I read that you can't reuse a timer after you invalidate it).
Some people have suggested to use Booleans like true or false, or conditions. What do you think?
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.
}
So, my goal is to use 1 start button and 1 cancel button.. and just do their actions. I have set up a the start button to start both timers, obviously both start their countdown at the same time which is not good.
I want to tell one timer to start and if I press cancel, invalidate it. Then If I press start again, call the second timer. (I do this because I read that you can't reuse a timer after you invalidate it).
Some people have suggested to use Booleans like true or false, or conditions. What do you think?
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.
}
twoodcc
May 11, 03:27 PM
False alarm it was a single threaded a0 work unit, grrrr :mad:
and now it's back to a3's...
oh man, dang.
well there's still hope that my home built rig is going. a bigadv unit posted today for me, but i'm not sure which machine it should be. i'll find out tomorrow though
and now it's back to a3's...
oh man, dang.
well there's still hope that my home built rig is going. a bigadv unit posted today for me, but i'm not sure which machine it should be. i'll find out tomorrow though
MrNomNoms
May 3, 05:49 PM
I don't really get this... You already pay fees for the data - why do they care for how you use it?
It's funny because nowhere in europe (well, from first hand experience in UK/ Scandanavia), do the carriers prevent tethering, nor do they charge an extra fee for it.
They have data caps (100MB, 500MB, 1GB etc) but they don't care what you use it for. And this makes sense. Thus I can work from cafes through my HTC Desire, and as long as I'm not streaming video or downloading many podcasts then the 1GB/month is more than enough for my phone and occasional tethered usage.
For once Europe seems to be ahead of the curve to the advantage of the consumer when compared to the USA.
Because in the US they differentiate between data from a smart phone and data - it is based on the idea that a pure smart phone user is going to use a whole lot less data (due to the nature of the device itself) when compared to someone tethering it on a computer. In most other countries, such as where I live, there is no differentiation, there is one set of prices for data and whether you do it via smart phone, tethering, or 3G stick the telco doesn't matter because the data is all priced the same.
It's funny because nowhere in europe (well, from first hand experience in UK/ Scandanavia), do the carriers prevent tethering, nor do they charge an extra fee for it.
They have data caps (100MB, 500MB, 1GB etc) but they don't care what you use it for. And this makes sense. Thus I can work from cafes through my HTC Desire, and as long as I'm not streaming video or downloading many podcasts then the 1GB/month is more than enough for my phone and occasional tethered usage.
For once Europe seems to be ahead of the curve to the advantage of the consumer when compared to the USA.
Because in the US they differentiate between data from a smart phone and data - it is based on the idea that a pure smart phone user is going to use a whole lot less data (due to the nature of the device itself) when compared to someone tethering it on a computer. In most other countries, such as where I live, there is no differentiation, there is one set of prices for data and whether you do it via smart phone, tethering, or 3G stick the telco doesn't matter because the data is all priced the same.
leekohler
Apr 17, 02:07 AM
Staying in. It's pouring with 40-50 mph winds. I gots me some sodomy last night though. ;)
Hope you get some too!
I love that video. Cracks me up every time I see it.
Oh, I've been a fan of Randall's Animals for I while. :) The vampire bat and American bullfrog ones are great too.
Because the promotion of homosexuality is detrimental to a society and the people who promote it know this. For example, the mere announcement of a gay history curriculum causes conflicts such as the one in this thread and especially moreso in the real world. Instead of fighting about such stupid things as this, our school system should be heavily decentralized so that you can decide whether or not your child learns about homosexual history by simply selecting a non-political, non-psychologically damaging school in your area and everything would be fine and kept separate, but no, the people who run everything love to just mash everybody into one big public school system and slowly change the rules to cause people to fight all because of what is essentially 4% of the population.
Please explain to me why the promotion of ignorance is a benefit to society. Conflict is part of how we learn. If we are never challenged, how do we grow? Can I also assume you are against all sports? Those involve conflict and fights as well.
And please explain, with evidence, how people learning about the struggles of gay people throughout history psychologically damages anyone. Your assertions get more ridiculous with every post. It's almost surreal.
Hope you get some too!
I love that video. Cracks me up every time I see it.
Oh, I've been a fan of Randall's Animals for I while. :) The vampire bat and American bullfrog ones are great too.
Because the promotion of homosexuality is detrimental to a society and the people who promote it know this. For example, the mere announcement of a gay history curriculum causes conflicts such as the one in this thread and especially moreso in the real world. Instead of fighting about such stupid things as this, our school system should be heavily decentralized so that you can decide whether or not your child learns about homosexual history by simply selecting a non-political, non-psychologically damaging school in your area and everything would be fine and kept separate, but no, the people who run everything love to just mash everybody into one big public school system and slowly change the rules to cause people to fight all because of what is essentially 4% of the population.
Please explain to me why the promotion of ignorance is a benefit to society. Conflict is part of how we learn. If we are never challenged, how do we grow? Can I also assume you are against all sports? Those involve conflict and fights as well.
And please explain, with evidence, how people learning about the struggles of gay people throughout history psychologically damages anyone. Your assertions get more ridiculous with every post. It's almost surreal.
Mac-Mariachi
Apr 16, 12:45 AM
Everyone keeps saying that aluminum will mess with the signal. But what I'm wondering about is how will the iPad 3G will deal with that? Is 3G iPad going to look different than Wifi model thats currently out?
Notice the black bar in the Wi-Fi + 3G image
http://www.marcelacanales.com/wifi.jpg
Notice the black bar in the Wi-Fi + 3G image
http://www.marcelacanales.com/wifi.jpg
cdallen
Mar 20, 07:31 AM
Oh please! I think that statement would be better targeted at the people who engage in this childish behaviour. I was just the recipient, also they weren't total strangers, but they weren't people that I know either.
Also, quite a few people in this thread say that these phones are the same price, well one of the main points of one of these guys was that he paid �100 for his brand new Desire and is on a �18 a month contract. In all honesty, that is a lot cheaper than any iPhone deal out there.
Try going outside for some fresh air. Take a deep breath and enjoy.
It's nice that you enjoy your phone so much but there's more to life than sharing this love on internet forums.
Sunshine can be enjoyed just as much!
Also, quite a few people in this thread say that these phones are the same price, well one of the main points of one of these guys was that he paid �100 for his brand new Desire and is on a �18 a month contract. In all honesty, that is a lot cheaper than any iPhone deal out there.
Try going outside for some fresh air. Take a deep breath and enjoy.
It's nice that you enjoy your phone so much but there's more to life than sharing this love on internet forums.
Sunshine can be enjoyed just as much!
Markleshark
Sep 12, 08:49 AM
Um, Disney owns a ton of companies that don't make cartoons.
See, I thougt iToons was quite clever...
See, I thougt iToons was quite clever...
Lacero
Sep 8, 12:34 PM
Why does everyone REFUSE to Blame this ignorant Mayor?Hmm... that's a toughie. Let me see. Because everyone REALIZES he isn't responsible!!
quagmire
Nov 14, 10:37 PM
Actually a crappy story is held against many movies, tv shows, books, and etc. That's why we call them crappy and they fail. Case in recent point, the drubbing that Skyline is getting, besides it's spectacular trailer. It looks good, but it came in fourth in movies this week, and word of mouth may make that as high as it goes. The complaint? Weak stories, characters, and a truly stupid & frustrating ending.
Like I said, most movies, tv show, etc has some sort of ridiculous illogical event going on to move the storyline along. Just as long as it isn't so ridiculous, they can get away with it. I don't think MW2 storyline had anything that was that ridiculous to make it bad.
I pity anyone trying to figure MW2's story that hasn't played the original MW. I admit I was surprised to find out that MW2's story had something to do with the first one. Not because it was a clever plot twist, but because it was pulled out of thin air. There was no fore shadowing allowing the player a chance to figure things out, as usual stories do, it was just BAM!
Why were you surprised? Black Ops was just a continuation of WaW with a focus on the Cold War this time. Why is it ridiculous to think MW2 would be tied to MW's storyline?
The first MW was more stream lined with only two storylines, eventually dovetailing into one. Things were easier to follow, and the moments far more memorable. That race thru the tilted ship, the crawling thru the grass by the Russian army, holding them off later by yourself, and that final car chase were truly memorable moments. MW2 and now Black Ops are just one forgettable blur, that I only recall the trudging thru, not the fascination of what I saw.
MW2 will be remembered for me at least because of the vivid battle scenes in DC since I am from the DC area and constantly passed by the buildings you see in the game. Then you have No Russian because of the shock of what that mission "made" you do( A) They gave you the option to skip it B) You didn't have to shoot to pass the mission).
Like I said, most movies, tv show, etc has some sort of ridiculous illogical event going on to move the storyline along. Just as long as it isn't so ridiculous, they can get away with it. I don't think MW2 storyline had anything that was that ridiculous to make it bad.
I pity anyone trying to figure MW2's story that hasn't played the original MW. I admit I was surprised to find out that MW2's story had something to do with the first one. Not because it was a clever plot twist, but because it was pulled out of thin air. There was no fore shadowing allowing the player a chance to figure things out, as usual stories do, it was just BAM!
Why were you surprised? Black Ops was just a continuation of WaW with a focus on the Cold War this time. Why is it ridiculous to think MW2 would be tied to MW's storyline?
The first MW was more stream lined with only two storylines, eventually dovetailing into one. Things were easier to follow, and the moments far more memorable. That race thru the tilted ship, the crawling thru the grass by the Russian army, holding them off later by yourself, and that final car chase were truly memorable moments. MW2 and now Black Ops are just one forgettable blur, that I only recall the trudging thru, not the fascination of what I saw.
MW2 will be remembered for me at least because of the vivid battle scenes in DC since I am from the DC area and constantly passed by the buildings you see in the game. Then you have No Russian because of the shock of what that mission "made" you do( A) They gave you the option to skip it B) You didn't have to shoot to pass the mission).
wlh99
Apr 28, 09:13 AM
Your minutes and seconds are thus never reset, so your "timer" is never reset (this is completely a seperate issue from NSTimer, hence why I say you probably don't understand the scope of NSTimer. It has no knowledge of these variables and thus doesn't reset them when you invalidate myTimer or newTimer).
That has been pointed out. The OP is stuck thinking the timer is broken, when it works exactly as it should. I think the OP thinks that those variables are part of the timer. He also first thought "self" was the timer. I asked if/where he was resetting the seconds, and if he wanted a reset function or not. For all we know, he wants a start stop timer that doesn't reset. That would be a normal implementation.
Also, could you please post a screenshot of your Interface Builder associations ? (under File's Owner, the tab in Inspector with all the Outlets and Actions), because I can't quite figure out what buttons are tied to what actions.
That would be very helpful. Also, explain how you want the program to act as the user uses it.
You also still have 2 timers. Why do you believe you need both ? Have you tried simplifying the code to using only 1 ?
He was told elsewhere that he could not reuse a timer. I think he is still stuck on the concept (not necessarily the definition) of a pointer, and of the life-cycle of an object. I'm not sure he grasps that in the posted samples, the NSTimer was not being reused.
None of these are trick questions, It's me trying to understand what you think this code should do vs what it's actually doing. Now, if you don't answer my questions, I can't really help you here short of writing the code for you, which does not help you learn (I have a good idea how to make the code I wrote last night do what you want to do very quickly, but I doubt you can afford me as a consultant at my exorbitant rates!).
I have some code to post to help the OP. But for not, I'm about to get a parking ticket, so I have to leave. But I will post it today.
That has been pointed out. The OP is stuck thinking the timer is broken, when it works exactly as it should. I think the OP thinks that those variables are part of the timer. He also first thought "self" was the timer. I asked if/where he was resetting the seconds, and if he wanted a reset function or not. For all we know, he wants a start stop timer that doesn't reset. That would be a normal implementation.
Also, could you please post a screenshot of your Interface Builder associations ? (under File's Owner, the tab in Inspector with all the Outlets and Actions), because I can't quite figure out what buttons are tied to what actions.
That would be very helpful. Also, explain how you want the program to act as the user uses it.
You also still have 2 timers. Why do you believe you need both ? Have you tried simplifying the code to using only 1 ?
He was told elsewhere that he could not reuse a timer. I think he is still stuck on the concept (not necessarily the definition) of a pointer, and of the life-cycle of an object. I'm not sure he grasps that in the posted samples, the NSTimer was not being reused.
None of these are trick questions, It's me trying to understand what you think this code should do vs what it's actually doing. Now, if you don't answer my questions, I can't really help you here short of writing the code for you, which does not help you learn (I have a good idea how to make the code I wrote last night do what you want to do very quickly, but I doubt you can afford me as a consultant at my exorbitant rates!).
I have some code to post to help the OP. But for not, I'm about to get a parking ticket, so I have to leave. But I will post it today.
twoodcc
Jul 15, 09:23 PM
im on DSL :D it goes alright i guess.
howcome you are getting such pathetic speeds? too many people in the street?
yeah the top dsl speed here is 6 mb/s. not really great, but better than what i'm getting.
i'm really not sure why the speed is so low.
I have Mediacom too, I'm supposed to have really fast service, it's ok most of the time but here is what cnet's speed test (http://reviews.cnet.com/internet-speed-test/) gave me.
:mad:
try http://www.speedtest.net. i just ran it and got 0.81 mb/s. i'm paying for 12.0
howcome you are getting such pathetic speeds? too many people in the street?
yeah the top dsl speed here is 6 mb/s. not really great, but better than what i'm getting.
i'm really not sure why the speed is so low.
I have Mediacom too, I'm supposed to have really fast service, it's ok most of the time but here is what cnet's speed test (http://reviews.cnet.com/internet-speed-test/) gave me.
:mad:
try http://www.speedtest.net. i just ran it and got 0.81 mb/s. i'm paying for 12.0
SPEEDwithJJ
Apr 8, 11:50 AM
@SPEEDwithJJ: Watch the Family Guy episode "New Kidney in Town" and you'll know :D
Thanks for the tips. :D I'll go check out that episode of Family Guy! :D
Thanks for the tips. :D I'll go check out that episode of Family Guy! :D
wordoflife
Mar 17, 05:54 PM
It's probably the lines fed to them by retail employees at point of purchase. This is actually cheaper yet better than the iPhone because *insert random pro here*
It has a kickstand lol
It has a kickstand lol
Matt-M
Apr 15, 02:26 PM
LOL at the perspective on the text in the 3rd photo.
Actually, shooting up close with a wide-angle lens will give you exactly that distortion. Here is a photo I just took of a REAL iPhone with a 17mm lens. Sorry about the fuzziness - handheld and did not use a flash:
http://www.marulla.com/files/perspective.jpg
So I don't think text in the 3rd photo is skewed. That being said, I agree it's a fake.
Actually, shooting up close with a wide-angle lens will give you exactly that distortion. Here is a photo I just took of a REAL iPhone with a 17mm lens. Sorry about the fuzziness - handheld and did not use a flash:
http://www.marulla.com/files/perspective.jpg
So I don't think text in the 3rd photo is skewed. That being said, I agree it's a fake.
roadbloc
Apr 29, 04:54 PM
I liked it how it was before, with the sliders... :(
James17
Oct 12, 07:06 PM
Gizmodo is not credible in my opinion!
goosnarrggh
Nov 17, 10:05 AM
You are obviously not a systems programmer.
Check out the source code for Xen, and then try to tell me that a Xeon and an Opteron have identical instruction sets....
I'm not going to run Xen. In fact, I'm unlikely to ever use virtuialization technology.
I'm going to run QuickTime, and iTunes, and Rosetta, and web browsers, and code spit out by a run-of-the-mill x86_64 variation of GCC.
And none of those sorts of applications require a re-compile. From that perspective, AMD64 and ET64T are close enough to identical to suit my needs.
Check out the source code for Xen, and then try to tell me that a Xeon and an Opteron have identical instruction sets....
I'm not going to run Xen. In fact, I'm unlikely to ever use virtuialization technology.
I'm going to run QuickTime, and iTunes, and Rosetta, and web browsers, and code spit out by a run-of-the-mill x86_64 variation of GCC.
And none of those sorts of applications require a re-compile. From that perspective, AMD64 and ET64T are close enough to identical to suit my needs.
Lennholm
Apr 16, 09:09 AM
People talk about a so-called 'reality distortion field' about Steve Jobs and yet everyday we get people blatantly ignoring truth because it doesn't fit with their own personal world view.
Yes, there were Palms, and Blackberries, Nokia's, Sony-Ericssons, and Panasonics etc before the iPhone but when we all saw the iPhone everyone instantly knew that was the future; touch-screen, icon based, intuitive, with an emphasis on both design and usability.
You might not like the fact that Apple revolutionized the phone market but history says otherwise.
No, when Apple revealed the iPhone most people were thinking something along the line of "Apple seriously need to reconsider leaving out 3G and the ability to install software if they want to make it in the smart phone business", a phone that doesn't let you install new software is by definiton not a smart phone. The iPhone 3G was the real deal, ofcourse the first gen was successful, simply because it was Apple, but the 3G was when it turned into a good product and soared in popularity.
And iPhone is far from the first icon based phone and I personally believe the Sony Ericsson P800 and P900 was a big inspiration for iPhone.
Yes, there were Palms, and Blackberries, Nokia's, Sony-Ericssons, and Panasonics etc before the iPhone but when we all saw the iPhone everyone instantly knew that was the future; touch-screen, icon based, intuitive, with an emphasis on both design and usability.
You might not like the fact that Apple revolutionized the phone market but history says otherwise.
No, when Apple revealed the iPhone most people were thinking something along the line of "Apple seriously need to reconsider leaving out 3G and the ability to install software if they want to make it in the smart phone business", a phone that doesn't let you install new software is by definiton not a smart phone. The iPhone 3G was the real deal, ofcourse the first gen was successful, simply because it was Apple, but the 3G was when it turned into a good product and soared in popularity.
And iPhone is far from the first icon based phone and I personally believe the Sony Ericsson P800 and P900 was a big inspiration for iPhone.
No comments:
Post a Comment