Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Comment Re:If you have something that you don't want (Score 1) 186

Care to provide citations? Especially considering the legal status of Wi-Fi.

Because a) it might fall under general transmission and not require any special permission to receive (just as it doesn't require any special permission to transmit), and b) your interpretation makes even just scanning for networks around you criminal - as in that screen which shows available networks in your phone settings and such. You see, I didn't give your phone a permission to receive my SSID and protection state - even though they are transmitted in the clear. I transmit them only for my laptop and phone.

Comment Re:False choice (Score 2) 439

Yeah, did you notice how Nokia's the only maker under "windows phone"?.. Oh, right, they're still in there with same HTC, LG and Samsung. But while HTC, LG and Samsung Android phones all look different - at least to some degree, HTC, LG, Samsung and Nokia WinPhones all look the same. So, from whom exactly are they differentiating there?

Comment Re:Here we go again... (Score 1) 715

We should just forbid any communications on non-work related themes. All communication should be done in text form or using a speech synthesizer to avoid possibility of others made feel unwelcome by your voice - may be it's your accent (hispanic, southern american or Queen's English, or any other), creepy heavy breathing or unpleasant lisp.

We should also prohibit any personal contact, lest somebody gets offended by someone's appearance or manners. Everyone should work in a completely isolated personal space, leave and arrive at work separately.

This way we'll create completely unbiased, gender-, race- and culture- neutral environment, equally (un)welcoming for everyone.

Comment Re:Have you ever been to a Ruby conference? (Score 4, Insightful) 715

Because there's difference between coding style and significant whitespace.

// Somebody pasted a few lines, but didn't reindent last line.
// Still correct syntax, still does the same, Reindent All fixes the formatting and everybody's happy.
  if (x) {
    statement1
    statement2
  statement3
}
 
# Somebody pasted a few lines, but didn't reindent last line.
# Still correct syntax, statement3 errorneously executes every time, IDE doesn't help (it could reindent _when pasting_, not after the fact). Have fun debugging!
  if x:
    statement1
    statement2
  statement3

Comment Re:What About Machine Language and Assembly? (Score 2) 316

First, your BNF example is lame because it describes only grammar of a language - but grammar alone doesn't make a language and there's no standard notations for all the rest of what makes a language.

Second, yes, language expressed in these forms is an expression of idea. That is, you can copyright a BNF description of grammar, and even specification of your language, but they're _expressions of idea of a language_, but not the language itself.

Saying that copyright on specification is copyright on the language is like saying copyright on a book is copyright on its plot.

Comment Re:Nothing new (Score 1) 235

But of course they have to be paid more now that they work more efficiently and provide more skills to the company.

The proper solution would be a kind of subsidized loan on the training - send them to study, raise the pay and then recover the training costs from the wages.

Want to jump ship? Return the loan. Gonna stay with us after the loan ends? Great, enjoy your raised pay.

Comment Re:Must be Lisp under the hood (Score 1) 103

Capital letters mean variables, evaluation is by rewriting and pattern matching.

Seems like it's trying to substitute every mention of Factorial for "if (Number

factorial Number = if (Number <=1 ) then 1 else (Number * factorial (Number -1))

this works

As well as this:

Number! = if (Number <=1 ) then 1 else (Number * (Number -1)!)
 
5!

You can even write something like "X plus Y minus Z = X+Y-Z" and ask it for "5 plus 4 minus 9"

Comment Re:Real world microkernels? (Score 1) 120

They do. Filesystems and device drivers are on the kernel side in monolithic OSes, FUSE/CUPS/SANE/graphics drivers with minimal kernel mode parts/etc. muddy the difference.

It's easy to declare an OS as microkernel or _not_ microkernel, but "monolithic" is pretty much meaningless term, unless you just define anything non-microkernel to be monolithic.

Comment Re:No comparison whatsoever (Score 1) 200

> why is one place saddled with search engine results that are negative and another not?

Because one place is famous for bad thing happening there and another is not. Searching for Jane Q. Celebrity will turn up her personal site first, as she's famous by herself, but searching for brutally murdered John Smith will turn up news reports, not his facebook page.

Your definition of "relevance" is strange. If most people looking for "Nuremberg" or "Bhopal" are interested in trials and chemical plant disaster, filling top page with tourist spots would be irrelevant.

Slashdot Top Deals

It is easier to write an incorrect program than understand a correct one.

Working...