Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
Transportation

Federal Judge Rules US No-fly List Violates Constitution 276

New submitter dmitrygr sends this news from Reuters: The U.S. government's no-fly list banning people accused of links to terrorism from commercial flights violates their constitutional rights because it gives them no meaningful way to contest that decision, a federal judge ruled on Tuesday. ... "The court concludes international travel is not a mere convenience or luxury in this modern world. Indeed, for many international travel is a necessary aspect of liberties sacred to members of a free society," [U.S. District Judge Anna Brown] wrote in her 65-page ruling (PDF). "Accordingly, on this record the court concludes plaintiff's inclusion on the no-fly list constitutes a significant deprivation of their liberty interests in international travel," Brown said.
Classic Games (Games)

M.U.L.E. Is Back 110

jmp_nyc writes "The developers at Turborilla have remade the 1983 classic game M.U.L.E. The game is free, and has slightly updated graphics, but more or less the same gameplay as the original version. As with the original game, up to four players can play against each other (or fewer than four with AI players taking the other spots). Unlike the original version, the four players can play against each other online. For those of you not familiar with M.U.L.E., it was one of the earliest economic simulation games, revolving around the colonization of the fictitious planet Irata (Atari spelled backwards). I have fond memories of spending what seemed like days at a time playing the game, as it's quite addictive, with the gameplay seeming simpler than it turns out to be. I'm sure I'm not the only Slashdotter who had a nasty M.U.L.E. addiction back in the day and would like a dose of nostalgia every now and then."

Comment Broke this patent two weeks ago (Score 1) 186

I have implemented this two weeks ago in an application for the company i work for.....on the 19th Sept...just checked the repository. Heres the code

<script type="text/javascript">
var CheckBoxMultiSelect = {
        mouseIsDown: false,
        checkBoxIsChecked: false,
        initialCheckBox: null,

        setMouseIsDown: function(elem, event, value) {
                this.mouseIsDown = value;

                if ('INPUT' == elem.nodeName) {
                        this.initialCheckBox = elem;
                        this.checkBoxIsChecked = !elem.checked;
                }
                else
                        this.initialCheckBox = false;
        },

        onCheckboxMouseOver: function(elem, event) {
                if (this.mouseIsDown) {
                        if ((this.initialCheckBox) && (elem != this.initialCheckBox)) {
                                this.initialCheckBox.checked = this.checkBoxIsChecked;
                                this.initialCheckBox = null;
                        }

                        elem.checked = this.checkBoxIsChecked;
                }
        }
}
</script>

<body onmouseup="CheckBoxMultiSelect.setMouseIsDown(this, event, false)"> ....

<input .... onmouseover="CheckBoxMultiSelect.onCheckboxMouseOver(this, event)" onmousedown="CheckBoxMultiSelect.setMouseIsDown(this, event, true)"/> ....
</body>

Do I have to remove this code now?
Wii

Submission + - Wii outsells Xbox 360 worldwide (videogamesblogger.com)

Wowzer writes: "Despite confusing consoles produced, shipped or sold reports, the Nintendo Wii is now the best-selling system worldwide. Its sales exceed that of the Xbox 360 despite Microsoft's console having a year-long head start. And it's way ahead of the PS3. From the article: 'Approximately 9 million Wiis were purchased across the world as of July 31st, which is barely more than the Xbox 360's total worldwide figure of 8.9 million unit sales. The PS3 is dead last with only an estimated 3.7 million units internationally.'"
Supercomputing

Supercomputer On the Cheap 133

jbrodkin writes "You don't need Ivy League-type cash to get a supercomputer anymore. Organizations with limited financial resources are snatching up IBM supercomputers now that Big Blue has lowered the price of Blue Gene/L. Alabama-Birmingham and other universities that previously couldn't afford such advanced technology are using supercomputers to cure diseases at the protein level and to solve equally challenging problems. IBM dropped the price of the Blue Gene/L to $800K late last year before releasing a more powerful model, Blue Gene/P, last month. Sales of Blue Gene/L have more than doubled since then, bringing supercomputing into more corners of the academic and research worlds."
Biotech

Submission + - Building Artificial Bone From Mineralised Collagen

Late-Eight writes: "Researchers from the National University of Singapore, have recently developed a new way to make artificial bone from mineralised collagen.

For some time scientists have tried to make nanosized artificial bone materials using various methods, And have recently turned their attention to mineralised collagen, a nanoapatite/collagen composite. This material is highly biocompatible and has the nanostructure of artificial bone. It could be used in bone grafts and bone-tissue engineering, among other applications."
The Internet

Submission + - China's Open Document Format (zdnetasia.com)

eldavojohn writes: "While there's been a lot of talk of the open document formats in the states, we have to realize that China's facing the same dilemma. And that's nothing to ignore with the largest population of the world under it's governance. The blog starts by pointing out they will most likely merge their current standard with either OOXML or ODF. The bulk of this blog points out why OOXML shouldn't be ISO certified and the biggest problem for Microsoft's standard: "Another Standard, Microsoft does not support, is the specification RFC 3987, which defines UTF-8 capable Internet addresses. Consequently, OOXML does not support, to use Chinese characters within a Web address." This would be problematic for many languages, not just Chinese."

Slashdot Top Deals

Their idea of an offer you can't refuse is an offer... and you'd better not refuse.

Working...