Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×

Comment Re:Too expensive. (Score 2) 255

Nice troll. Here's the real text: (bolded emphasis mine)

A. Preinstalled and Single-Copy Apple Software License. Subject to the terms and conditions of this License, unless you obtained the Apple Software from the Mac App Store or under a volume license, maintenance or other written agreement from Apple, you are granted a limited, nonexclusive license to install, use and run one (1) copy of the Apple Software on a single Apple branded computer at any one time. For example, these single-copy license terms apply to you if you obtained the Apple Software preinstalled on Apple-branded hardware.
B. Mac App Store License. If you obtained a license for the Apple Software from the Mac App Store, then subject to the terms and conditions of this License and as permitted by the Mac App Store Usage Rules set forth in the App Store Terms and Conditions (http://www.apple.com/legal/ itunes/ww/) (“Usage Rules”), you are granted a limited, non-transferable, non-exclusive license: (i) to download, install, use and run for personal, non-commercial use, one (1) copy of the Apple Software directly on each Apple-branded computer running OS X Lion or OS X Snow Leopard (“Mac Computer”) that you own or control;
(ii) If you are a commercial enterprise or educational institution, to download, install, use and run one (1) copy of the Apple Software for use either: (a) by a single individual on each of the Mac Computer(s) that you own or control, or (b) by multiple individuals on a single shared Mac Computer that you own or control. For example, a single employee may use the Apple Software on both the employee’s desktop Mac Computer and laptop Mac Computer, or multiple students may serially use the Apple Software on a single Mac Computer located at a resource center or library; and
(iii) to install, use and run up to two (2) additional copies or instances of the Apple Software within virtual operating system environments on each Mac Computer you own or control that is already running the Apple Software, for purposes of: (a) software development; (b) testing during software development; (c) using OS X Server; or (d) personal, non-commercial use.
The grant set forth in Section 2B(iii) above does not permit you to use the virtualized copies or instances of the Apple Software in connection with service bureau, time-sharing, terminal sharing or other similar types of services.

Source: http://images.apple.com/legal/sla/docs/OSX1082.pdf

Comment Re:It still accomplishes their goal (Score 1) 211

Step two is about approaching companies like Pandora, Netflix, and Google and make them this offer: if you pay us a lot of money, data transferred from your service won't count in the data cap calculation. They want to be paid two times for a single user's network usage. It's so obvious to me that this is what they are working on and it's disgusting.

Indeed. It appears that's exactly what they plan on doing.

"BARCELONA—AT&T Inc. said it is considering a way to let the providers of mobile services pay for the cost of the data traffic associated with things like streaming movies and smartphone applications, opening up a new round of debate over the rules of the mobile Internet. "

AT&T May Try Billing App Makers

Comment Re:Can't run Java on iPhone either... (Score 2, Insightful) 731

Imagine if, along with bundling Opera with the Wii, Nintendo FORBID anyone from running any other browser on their OS at all, and required EVERY game to be approved by Nintendo before it could be allowed to run. Apple's doing EXACTLY THAT.

Funny how nobody complains about game consoles, network appliances, or any other propriety electronic device being a closed platform. It's only evil if Apple does it?

Comment Re:ksh (Score 1) 411

Does ksh have Unicode support? I switched to bash to get that.

In ksh93, you can print unicode characters with printf:

$ echo ${.sh.version}
Version JMP 93t+ 2010-03-05
$ whence -v printf
printf is a shell builtin
$ LANG=en_US.UTF-8 printf "\u[00AE]\n"
®

Comment ksh (Score 2, Informative) 411

For Unix shell scripting purposes (and I know the Slashdot crowd may scoff at this but), nothing compares to KSH. It has many features not found in Bash and most other shells, such as coprocesses, associative arrays, compound variables, floating point arithmetic, discipline functions, etc. It's also fully extensible and posix compliant. For GUI scripts, almost all commercial Unixes include dtksh, which provides access to much of the Xt and Motif APIs. A TK version of ksh also exists.

KSH just gets a bad rep because Unix vendors insist on only supplying an ancient version (ksh88), or its clone (pdksh) that lacks all of the functionality and behavior of the original. As a result most people have never used a modern version of the shell.

Of there's a right tool for the right job. Depending on the nature of the task one might also want to consider perl, python, or some other scripting technology.
Security

OpenSSL 1.0.0 Released 105

hardaker writes "After over 11 years of development since the start of the OpenSSL Project (1998-12-23), OpenSSL version 1.0.0 has finally hit the shelves of the free-for-all store."

Slashdot Top Deals

Old programmers never die, they just hit account block limit.

Working...