Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:Hot Damn! (Score 1) 730

Apple is a marketing company, not a technology company. They have brazenly stolen others ideas and (quite successfully) marketed them.

That's a ludicrous conclusion. If they're to be reduced to something other than a technology company, then let them be an industrial design firm. While everyone else is concentrating on specs and feature bullet lists, Apple seems to this day to be the only company focusing on UI and usability. Their goal is to make things that people enjoy using - ignoring the specs and feature bullet lists - and sell bazillions of them.

There are already smartwatches on the market. Check out Samsung's product page: Powered by Google Android Wear! 1.63" Super AMOLED® display!. Now check out Apple's product page, which focuses on its design. Even the technology page describes how each feature should make you want to have one.

Non-geek people I know couldn't care less about a 1.63" Super AMOLED® display. They understand why they'd like to "glimpse the weather forecast, check out what’s next on your calendar, or find your current location on a map". You can probably do the same things with a Samsung, but know knows? They'd rather tell you about which OS is installed on the thing.

Comment Re:Apple is solidifing their fashion brand appeal. (Score 5, Informative) 730

Sign up for what? Xcode is a free download from the app store, and you can use it to install Homebrew and be a single command away from having gcc4[345789] installed. There's almost literally nothing they could do to make that easier other than shipping Xcode with OS X, but that would be a waste of storage for the 99.9% of users who wouldn't ever use it.

Comment Re:A watch? (Score 1) 87

According to the rumors (so you know it must be true!), Apple's watch is likely to have a built in step counter and pulse meter. That would instantly let it replace all the Fitbits, UP bands, Nike FuelBands, etc. that people are wearing with something attractive that has more functionality. I'd wear a watch if it did sufficiently interesting things that normal watches don't.

Comment Re:Python False = True (Score 1) 729

Python didn't originally have True and False probably for the same reason C didn't: they already had well-defined truthy and falsey values. Besides, you don't often need them. Instead of writing if expr is True:, you'd just write if expr:. To this day, the most common use I see for them is as default values for keyword arguments.

By making True and False variables with preset values, they could be added to the language without breaking code that already used those names for other things. By the time Python 3 rolled around, such code would probably have to be re-written for other reasons anyway and there was no longer a compelling backward compatibility story for not making them actual keywords.

Comment Re:Python False = True (Score 4, Informative) 729

In Python 3, they're keywords:

Python 3.4.1 (default, Aug 24 2014, 21:32:40)
[GCC 4.2.1 Compatible Apple LLVM 5.1 (clang-503.0.40)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> True = False
File "<stdin>", line 1
SyntaxError: can't assign to keyword

Slashdot Top Deals

Genetics explains why you look like your father, and if you don't, why you should.

Working...