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

 



Forgot your password?
typodupeerror
×
United Kingdom

UK MPs: Google Blocks Child Abuse Images, It Should Block Piracy Too 348

nk497 writes "If Google can block child abuse images, it can also block piracy sites, according to a report from MPs, who said they were 'unimpressed' by Google's 'derisorily ineffective' efforts to battle online piracy, according to a Commons Select Committee report looking into protecting creative industries. John Whittingdale MP, the chair of the Committee — and also a non-executive director at Audio Network, an online music catalogue — noted that Google manages to remove other illegal content. 'Google and others already work with international law enforcement to block for example child porn from search results and it has provided no coherent, responsible reason why it can't do the same for illegal, pirated content,' he said."
Shark

South African Research Team Creates World's First Digital Laser 81

smi.james.th writes in with news about new laser technology developed in South Africa. "The Council for Scientific and Industrial Research (CSIR) announced in Pretoria on Tuesday that it had developed the world's first digital laser. 'I am always very cautious about using the term "breakthrough",' noted Science and Technology Minister Derek Hanekom. 'We scrutinized this very carefully before we said that this is really new! South African scientists are once again making noteworthy contributions to the world.'... A normal laser contains two mirrors, opposed to each other and at opposite ends of the instrument. One is highly reflective and the other is a curved, partially reflective mirror. In the digital laser, the curved mirror is replaced by a liquid crystal display (LCD) system. The LCD is connected to a computer and monitor."

Comment Is that a serious question? (Score 1) 276

Try googling. :0)

Visual COBOL? Fujitsu did that - I have a demo disk from somewhere around 2001.

COBOL++? Well, OO COBOL has been in existence since 1996/7 that I'm aware of and doubtless from before that. Microfocus were the first to do it that I came across, but the above-mentioned fujitsu compiler also did OO.

Did you also know that COBOL.NET exists? Oh yes. Be afraid...
Biotech

Reversible Male Contraception With Gold Nanorods 160

MTorrice writes "Men's options for birth control have significant downsides: Condoms are not as effective as hormonal methods for women, and vasectomies require surgery and are irreversible. Doctors and scientists have for decades searched for more effective and desirable male contraception techniques. Researchers in China now propose a nonsurgical, reversible, and low-cost method. They show that infrared laser light heats up gold nanorods injected into mice testes, leading to reduced fertility (abstract) in the animals."

Comment Re:Ding dong ... (Score 2) 539

And of course, despite the damage she caused both the UK and the world at large, she will be given a state funeral...

You might want to try checking your facts before posting. Here's a hint: No she won't.

And of course, despite the damage she caused both the UK and the world at large, the Labour Party hacks will be out in force with nary a bad word to be said. (That's 'cause "New" Labour is just another party of capitalism, no longer socialism, if it ever was.)

She did some damage, she did some good (generally speaking, the ones who claim nothing beyond the damage are those who didn't suffer the three day working week and its ilk). Such is the way of politicians. She made some tough decision that had to be made, she made some bloody awful decisions that we are still feeling the repercussions of today.

In the end, she made a large impact on world politics exactly when a large impact was required. Hindsight is a wonderful thing, but I'm not sure what the world stage would be like now if we'd had one of the current spineless idiots in charge in the latter days of the cold war.

Comment Re:I don't think there will be a shortage. (Score 2) 318

Sorry, but I'm going to have to disagree with you. You can learn basic cobol in a week, sure. You can probably even learn all the useful keywords in a month, but almost certainly won't learn all their options or the best way to use them or the caveats of using some of them. You won't learn the various gotchas waiting in the wings when defining data structures either, whether in memory, or on disk.

A month might make you able to write fairly complex stuff, but it won't give you time to learn the best ways to write efficient fast code and COBOL, despite its apparent simplicity, is remarkably easy to write nasty (self modifying if you wish) resource-hogging evilness. If you're on mainframes, it'll be longer than that before you've figured the full intrigues of things like Expediter, or, if you're really unlucky, core dumps, which can be your only way to debug.

I've worked with COBOL since the mid 90s, so I'm still considered a noob in the field, but I've seen some horrors written by people with twice the experience I have and I've rarely seen *good* code written by people with anything less than a year of it on their CV.

Bear in mind also that most COBOL is mainframe still, so chances are that as well as the language itself, you're going to have to learn DB2, JCL, CICS and suchlike. Mainframe assembly will also likely crop up in your radar and in certain financial institutions, PL/1 - all linked into one big horrible mess. You might think you'll learn COBOL in a week, but almost no company using it for mission-critical stuff will let you within a mile of their production systems until you've a couple of years under your belt.

Comment Re:"Stealthy" is misleading (Score 1) 451

That may work now, but it certainly wasn't the case at the beginning of last week.

My other half has a remote desktop system so she can work from home if required that uses a java plugin. Last week, all of a sudden, it didn't work, with just a 'plugin inactive' message on screen. Clicking on that took you to software update, which showed no available updates, because this is on a Snow Leopard machine that there wasn't an update for yet.

There was no explanation of what was going on (plugins showed as allowed in the preferences pane) or whether it was an issue with the remote desktop provider or Apple, or anything. Somewhat frustrating and took me far longer than it needed to have done to sort, including raising a ticket with remote desktop software provider, which we now have to cancel.

I do like Apple hardware and software under most circumstances, but this wasn't one of their better moves.

Comment Re:No (Score 1) 878

Sure, what's wrong with recursion?

int factorial( int n )
{
return (n > 1)? n * factorial( n - 1 ) : n ;
}


Either high or sober, that's what I'd have gone for. That aside, I think it's fairly obvious that the mantra would be 'design high, code sober'...
Bug

Intel CEO Tells Staff Windows 8 Is Being Released Prematurely 269

An anonymous reader writes with this excerpt from Geek.com: "Intel CEO Paul Otellini may be getting an angry phone call from Steve Ballmer today after it was revealed he told staff in Taiwan Windows 8 isn't ready for release. Otellini's comments were made at an internal meeting in Taipai, and he must have naively thought they would never become public knowledge. We don't know if he went into detail about what exactly is unfinished about Windows 8, but others have commented about a lack of reliable driver support and supporting applications. For many who have picked up previous versions of the Windows desktop OS early, this probably isn't coming as a surprise."

Comment Re:Raspberry Pi? (Score 2) 137

The fixed hardware and low power of the Pi is just begging for a lightweight, low footprint OS

There is one already. It's called RISCOS. Sure, it needs some work (like pre-emptive multitasking and SMP, okay a *lot* of work), but it's small (the OS uses 6Mb of RAM) and it's very fast. And there's already a reasonable amount of software available for it, plus a working GCC implementation, so more can be ported.

It just needs volunteers. Preferably ones who will happily write hand optimised ARM assembler...

Slashdot Top Deals

One man's constant is another man's variable. -- A.J. Perlis

Working...