jayducharme
Apr 29, 06:49 PM
The main problem with the "slider" idea is that it wasn't intuitive which selection was active (since we're so used to a depressed icon indicating selection). I like the concept of a slider; it reminds me of the old tile games. Perhaps a compromise would have been to have the selected item's text glow, as if a little LED were behind it. That would have made it really clear which item was active.
James17
Oct 12, 07:06 PM
Gizmodo is not credible in my opinion!
Kwill
Apr 6, 05:56 PM
Novel concept: Non-stop commercials. Perhaps actual movies will be played during intermission.
WeegieMac
Mar 18, 04:59 PM
I'm all for people loving their apple products. I love my iPhone too. But unlike some of these apple fans, I don't consider my iPhone to be the holy grail of smartphones.
True, however it's like watching two people with tiny peckers argue about who's is biggest ... in other words, it's pointless.
The iPhone users being overly enthusiastic does not give Android users the right to come on and literally, and this is exactly what the do, TELL the iPhone users that they are wrong, like it's factual. Having an opinion is one thing, but coming onto a forum created for a certain product and telling users of that product what their opinion SHOULD be, isn't on.
I have yet to see one Android forum with as big an influx of rabid iPhone users who come on to do nothing but argue and disagree, as there are Android users on here.
Now, I am fully aware and appreciative that there are Mac users who own Android devices. However, if someone states that the Retina Display (super dooper marketing name and all) is the best display of any smartphone (and I happen to think it is, but that's my own preference) then who the hell is anyone to openly quote and say they're WRONG?
You'd get a more mature argument from two toddlers sitting tossing sand at one another in a playbox.
True, however it's like watching two people with tiny peckers argue about who's is biggest ... in other words, it's pointless.
The iPhone users being overly enthusiastic does not give Android users the right to come on and literally, and this is exactly what the do, TELL the iPhone users that they are wrong, like it's factual. Having an opinion is one thing, but coming onto a forum created for a certain product and telling users of that product what their opinion SHOULD be, isn't on.
I have yet to see one Android forum with as big an influx of rabid iPhone users who come on to do nothing but argue and disagree, as there are Android users on here.
Now, I am fully aware and appreciative that there are Mac users who own Android devices. However, if someone states that the Retina Display (super dooper marketing name and all) is the best display of any smartphone (and I happen to think it is, but that's my own preference) then who the hell is anyone to openly quote and say they're WRONG?
You'd get a more mature argument from two toddlers sitting tossing sand at one another in a playbox.
more...
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.
ssdeg7
May 2, 02:24 PM
I preferred the slide tabs than the old ones. I hope we get back to them soon.
more...
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.
}
Eidorian
Nov 16, 04:22 PM
Maybe the AMD laptops are coming today :eek:
The store is currently down...
http://images.apple.com/r/store/backsoon/title_backsoon1.gifVery interesting! :D
I have a test so tell me what the updates are when I get back. :p
The store is currently down...
http://images.apple.com/r/store/backsoon/title_backsoon1.gifVery interesting! :D
I have a test so tell me what the updates are when I get back. :p
more...
iMikeT
Oct 29, 01:45 AM
I'm glad that Apple did this.
I'm tired of the people who argue that Mac OS X should be like Windoze. That is, to be able to install Mac OS X on any system other than a Macintosh.
Good job Apple.
I'm tired of the people who argue that Mac OS X should be like Windoze. That is, to be able to install Mac OS X on any system other than a Macintosh.
Good job Apple.
partyBoy
Apr 10, 09:09 PM
- Lavender polo
- Red t-shirt with this batman old skool comic print
- Red t-shirt with this batman old skool comic print
more...
GoKyu
Apr 12, 07:24 AM
Do you really think MS will ever do that?
As stupid as they are, probably not. They're happy with having the most market share, why should they bother changing anything?
But, when it's as easy to get a virus as downloading a banner ad from a website that you visit ( sometimes even legitimate ones) using IE with ActiveX enabled, then *maybe* a stronger security model is called for.
These days, if you're running Windows and don't have at least a good antivirus, antispyware and (can't hurt) firewall, you're almost assured of getting infected somehow. I see it all the time at work - we have people coming in paying hundreds to have us remove viruses and to install a new antivirus program, because they didn't know the old one expired.
If Microsoft was smart, they'd even *consider* doing this - I hate to say it, but look at Mac users - even though we're not immune to potential viruses in the future, how long has OS X been around, and how much malware is out there to infect it? Maybe 5-10 programs? UNIX just has that stronger security model...
As stupid as they are, probably not. They're happy with having the most market share, why should they bother changing anything?
But, when it's as easy to get a virus as downloading a banner ad from a website that you visit ( sometimes even legitimate ones) using IE with ActiveX enabled, then *maybe* a stronger security model is called for.
These days, if you're running Windows and don't have at least a good antivirus, antispyware and (can't hurt) firewall, you're almost assured of getting infected somehow. I see it all the time at work - we have people coming in paying hundreds to have us remove viruses and to install a new antivirus program, because they didn't know the old one expired.
If Microsoft was smart, they'd even *consider* doing this - I hate to say it, but look at Mac users - even though we're not immune to potential viruses in the future, how long has OS X been around, and how much malware is out there to infect it? Maybe 5-10 programs? UNIX just has that stronger security model...
Rocksaurus
Oct 28, 05:37 PM
Isn't a healthy chunk of OS X based on FreeBSD? A free, open source Unix distro? In a sense, if they use FreeBSD and do not contribute back to the very open source community they're borrowing from, doesn't that make Apple a thief? Maybe I'm missing something :o
more...
sanford
Jan 11, 06:27 PM
Bloggers often struggle to gain acceptance as a valid and legitimate source of news, and with this stunt (see link) Gizmodo have helped to undermine those who have worked so hard to gain credibility within an elitist industry.
I'm not without a sense of humour, but when Giz started screwing with a live presentation they crossed a line. This type of behaviour shouldn't be condoned in my opinion and a strong signal should be sent out to those responsible. Who's to say that they wouldn't interfere with an Apple event? What do you make of their actions?
http://gizmodo.com/343348/confessions-the-meanest-thing-gizmodo-did-at-ces
Games and gadgets, the concept of the fourth estate is a joke. Gadgets, it's primarily the online media. Games, it's both print and online, in general tone and especially in game reviews.
A goofball walks into CES and does this, it's a practical joke, and he faces his own personal consequences. Find it funny or not, it's your own personal taste. Guys wearing press badges do this, anyone actively involved, they should all be fired by the parent company. Immediately. Period. No second chances. But Nick Denton is so afraid of not appearing cool and hip, he suborns what he probably thinks, or tells himself, is "gonzo" journalism, but it's really just a complete lack of respect for the profession; and he also panders to so-called "futurist" rhetoric as spouted by numerous thirty-year-old "cultural visionaries" with not so much as an undergrad degree in elementary education to their names.
Not to mention that what they did is probably some state or federal higher-end misdemeanor; that is, a criminal act for which they could serve jail time.
And no, I'm not a stiff or a prude: I love practical jokes. But members of the press *do not* interfere with events they are covering in their official capacities, while checked in under press credentials of all things. If Denton doesn't formerly apologize to the CES coordinators and the individual exhibitors affected, and then fire each member of his staff involved, he should not retain a single shred of public or industry credibility. Advertisers should boycott, and he should be put out of business, his whole operation.
I'm not without a sense of humour, but when Giz started screwing with a live presentation they crossed a line. This type of behaviour shouldn't be condoned in my opinion and a strong signal should be sent out to those responsible. Who's to say that they wouldn't interfere with an Apple event? What do you make of their actions?
http://gizmodo.com/343348/confessions-the-meanest-thing-gizmodo-did-at-ces
Games and gadgets, the concept of the fourth estate is a joke. Gadgets, it's primarily the online media. Games, it's both print and online, in general tone and especially in game reviews.
A goofball walks into CES and does this, it's a practical joke, and he faces his own personal consequences. Find it funny or not, it's your own personal taste. Guys wearing press badges do this, anyone actively involved, they should all be fired by the parent company. Immediately. Period. No second chances. But Nick Denton is so afraid of not appearing cool and hip, he suborns what he probably thinks, or tells himself, is "gonzo" journalism, but it's really just a complete lack of respect for the profession; and he also panders to so-called "futurist" rhetoric as spouted by numerous thirty-year-old "cultural visionaries" with not so much as an undergrad degree in elementary education to their names.
Not to mention that what they did is probably some state or federal higher-end misdemeanor; that is, a criminal act for which they could serve jail time.
And no, I'm not a stiff or a prude: I love practical jokes. But members of the press *do not* interfere with events they are covering in their official capacities, while checked in under press credentials of all things. If Denton doesn't formerly apologize to the CES coordinators and the individual exhibitors affected, and then fire each member of his staff involved, he should not retain a single shred of public or industry credibility. Advertisers should boycott, and he should be put out of business, his whole operation.
MacRumors
May 3, 01:41 PM
http://www.macrumors.com/images/macrumorsthreadlogo.gif (http://www.macrumors.com/2011/05/03/u-s-carriers-cracking-down-on-android-hotspot-tethering-apps/)
http://images.macrumors.com/article/2011/05/03/144012-android_market_pdanet.jpg
more...
Download Black Swan 2010 Movie
Photo
more...
Movie Black Swan
Black Swan Wallpaper Movie.
Natalie Portman Black Swan
http://images.macrumors.com/article/2011/05/03/144012-android_market_pdanet.jpg
more...
Dr.Gargoyle
Aug 2, 06:53 AM
Loosing Denmark, or Norway or both, doesn't matter one bit. It is a courtesy that Apple even allowed these small and meaningless countries to join in on the fun.
Since you claim you work in Denmark, you should know Denmark, as well as Sweden, is a part of European Union (EU). If you had done your homework, you should also know that EU implies that all non-nation specific laws should be idential for all countries in EU (very much the same as in US). That is, if the French and the scandinavians find that Apples DRM violates consumer rights, it has a very good chance to become accepted all over EU. Furthermore, since EU has about 460 million people whereas US only have 296 milion people, it should according to your argumentation about minor markets imply that Apple rather should dump the US market than the european market. :rolleyes:
You should know by now that a company sole purpose is to make money for the shareholders, and nothing else. I very much doubt that board of Apple or its partners even would consider dumping a close to half a billion potential customers.
Since you claim you work in Denmark, you should know Denmark, as well as Sweden, is a part of European Union (EU). If you had done your homework, you should also know that EU implies that all non-nation specific laws should be idential for all countries in EU (very much the same as in US). That is, if the French and the scandinavians find that Apples DRM violates consumer rights, it has a very good chance to become accepted all over EU. Furthermore, since EU has about 460 million people whereas US only have 296 milion people, it should according to your argumentation about minor markets imply that Apple rather should dump the US market than the european market. :rolleyes:
You should know by now that a company sole purpose is to make money for the shareholders, and nothing else. I very much doubt that board of Apple or its partners even would consider dumping a close to half a billion potential customers.
idanchez
Apr 15, 05:36 PM
I hope this is a fake.What is the long slot on the side? Is it a spot for a memory card?
I think this is for the Volume Button... not memory card slot... It will probably look like the new iPad volume button.
I think this is for the Volume Button... not memory card slot... It will probably look like the new iPad volume button.
more...
KnightWRX
Mar 7, 10:45 AM
Perhaps. You may well be right. But the point was that Apple was the first to seriously use USB and the first to remove floppy drives -- so they get to take the credit for "being innovative", and when everyone else follows suit, whether they were actually being copycats or for whatever other reason, they get credit for "being the leader" and "everyone copies them".
USB was an Intel initiative, not an Apple one. It was all over the tech news if you read PC rags back then, way before the Bondi blue plastic was a pipe dream at Apple.
And adopting someone else's interconnect and removing an internal floppy drive is innovative how ? Especially the removing part...
USB was an Intel initiative, not an Apple one. It was all over the tech news if you read PC rags back then, way before the Bondi blue plastic was a pipe dream at Apple.
And adopting someone else's interconnect and removing an internal floppy drive is innovative how ? Especially the removing part...
munkery
Apr 17, 10:13 PM
GNOME 3 looks like more of an OS X copy than Windows 8
Gnome desktops always looked more Mac-esque because of the menubar being at the top of the screen. It actually functions a lot differently than OS X despite the similar appearance.
Gnome desktops always looked more Mac-esque because of the menubar being at the top of the screen. It actually functions a lot differently than OS X despite the similar appearance.
Karnivore
Apr 26, 08:34 AM
3.7" ain't going to cut it, sorry
Mechinyun
Mar 17, 01:08 AM
haters gonna...
Popeye206
May 3, 11:11 PM
Or you know, the more obvious conclusion - iOS 5.
Agreed... seemed like a teaser for iOS 5.
Agreed... seemed like a teaser for iOS 5.
Chundles
Sep 12, 07:50 AM
i thought the event started at 7est
10am San Francisco time. So 1pm East Coast, 6pm London, 3am Wednesday in Sydney.
10am San Francisco time. So 1pm East Coast, 6pm London, 3am Wednesday in Sydney.
zephxiii
Dec 13, 12:32 PM
lol there is no LTE in the next iPhone.
124151155
Sep 29, 07:14 AM
Here's Bill Gates' house for comparison. (http://www.youtube.com/watch?v=9738CIiY41k)
No comments:
Post a Comment