Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror

Comment Re:Wrong premise (Score 1) 435

Anyways, it's just too opinionated, from his 4 examples - PHP, JS, Python, Ruby - only PHP and JS are really widespread, with Ruby still rather rare and Python somewhere inbetween.

And then there's this pearl:

From TIOBE http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html :
6. PHP
8. Python
10. Javascript
12. Ruby

From LangPop http://langpop.com/ :
4. PHP
5. Javascript
6. Python
10. Ruby

Just for the record. Certainly they are all very popular languages.

Comment I don't see this working (Score 1) 109

Seams boxing isn't too much of an issue for vanilla python when summing 1000,000 integers.

$ pypy -m timeit "sum(range(1000000))"
10 loops, best of 3: 55.2 msec per loop
$ python -m timeit "sum(range(1000000))"
10 loops, best of 3: 71.5 msec per loop
$ python3 -m timeit "sum(range(1000000))"
10 loops, best of 3: 62.7 msec per loop
$ python -m timeit "sum(xrange(1000000))"
10 loops, best of 3: 26.6 msec per loop
$ pypy -m timeit "sum(xrange(1000000))"
10 loops, best of 3: 132 msec per loop

$ pypy --version
Python 2.7.1 (?, May 02 2011, 19:05:35)
[PyPy 1.5.0-alpha0 with GCC 4.6.0]
$ python --version
Python 2.7.1
$ python3 --version
Python 3.2

Biotech

Scientists Create Programmable Bacteria 117

wilmavanwyk writes "In research that further bridges the biological and digital world, scientists at the University of California, San Francisco have created bacteria that can be programmed like a computer. Researchers built 'logic gates' – the building blocks of a circuit – out of genes and put them into E. coli bacteria strains. The logic gates mimic digital processing and form the basis of computational communication between cells, according to synthetic biologist Christopher A. Voigt."

Submission + - Where to Go When Google Locks You Out? (blogspot.com) 2

Lobais writes: It can be difficult to find out where to head, when a free service suddenly lock you out from your data. A man spent three years trying to find his way back in.

Resume:
After about a year of using Google groups for the PyChess project, I started feeling a problem. When I wrote mails to the list, no one would answer. And when I answered other peoples post, they seamed to ignore them and press for new answers. As I tried to check the online group to see what was happening, I got a 403 Forbidden error. After a short while I realised that this error was given for any page one the groups.google.com sub domain.
The lockout meant that I was unable to manage the PyChess mailing list. I was unable to fight the, at that time, increasing spam level; and more importantly I couldn't reply anybody in my community. I wasn't even able to visit the Google help fora, which are all on groups.google.com.
As the services are free of charge, I never really expected any support options. However I also never really expected the need for them. When things failed, I saw no way to buy the missing support, and the friendly facade suddenly seamed like a tall dark wall.
Perhaps the grief of this issue is in its rareness, but how can we know how often this kind of thing happens? If any admin can lock you all out by a sloppy click, and give you no option to defend yourself, then it is bound to happen once in a while.

Comment Re:I Just Took A Huge Shit (Score 1) 905

Oh please RTFA:

OpenOffice is free software, and has been ever since it appeared under that name.
Firefox is a strange case, since initially the sources were free software but the binaries released by the Mozilla Foundation were not free. They were non-free for two reasons: they included one non-free module, Talkback, for which sources were not available (even to the Mozilla Foundation); and because they carried a restrictive EULA [end-user licence agreement].

I think these two problems have both been corrected, so maybe the distributed Firefox binaries are free software today.

How can that be extremistic? If I was not alowed to give a friend a copy of firefox, then of course it couldn't be concidered free.

Slashdot Top Deals

There's no sense in being precise when you don't even know what you're talking about. -- John von Neumann

Working...