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

 



Forgot your password?
typodupeerror
×

Comment Re:What's wrong with suing shoplifters? (Score 4, Informative) 105

In fact, a judge has already thrown a case that did go to court out on the grounds that it was unclear why the damages were set at the level claimed or that they were in any way proportionate to actual damage.

The retailers (usually big supermarkets) are attempting to recover the entire costs of their losses to shoplifting and extra security from those they catch.

Comment Re:What's wrong with suing shoplifters? (Score 5, Informative) 105

The business model of these companies is particularly pernicious, and relies in the main on the defendants being uninformed and under-resourced.

THe company in question here is actually chasing employees of the Citizens' Advice Bureau - the place where these defendants go for help - often because they can't afford a lawyer.

This is a similar strategy to that used by ACS:Law - which has already felt the wrath of the professional regulator for precisely this kind of tactic. It's quite likely that, as suggested, that they sent a few threats too far.

Comment Re:Not a revolution (Score 1) 140

In fairness to London Underground, they have periodically looked at the possibility of providing mobile coverage in stations and trains, but none of the networks were interested in getting involved (and pay for it).

In the grand scheme of things, LU has more pressing needs for its funds.

Comment Re:Incremental recompilation (Score 1) 711

I'd personally consider myself to be a Engineer rather than a programmer (to be precise, I'm a professionally qualified electronics engineer who engages in software and hardware engineering). Cutting the code is a small fraction of what I do, and I tend to do it a variety of programming languages on multiple platforms.

I'm really not in the business of having a dick-waving contest about how hardcore my tools are (an argument that is usually advanced in terms of their lack of features). Instead I expect them to help me along the way.

Modern, commercially developed IDEs genuinely improve my productivity, and I really notice their absence when working for platforms without them.

Comment Re:Incremental recompilation (Score 2) 711

It's entirely necessary if using the compiler to drive code completion, syntax highlighting and in-edtior display of compiler errors and warnings. All of these are things are highly interactive and users will notice the lag of GCC getting invoked every time they type a character in their editor. GCC's clunky pre-compiled header support really doesn't help matters.

Of course, as I said earlier, lots of tools have provided this kind of functionality without deep integration of the compiler into the editor, but ultimately to do it properly, you'd still be looking at a great deal of effort to implement the first couple of stages of the compiler pipe-line and get an AST (or equivalent).

Comment Re:Dropping the GPL ~= worse. (Score 1) 711

There is another excellent reason why the Linux Kernel is staying on GPLv2: a very large proportion of Linux's market share these days is on ARM SoC in mobile devices. There is truckloads of IP in these devices, and right now the chipset vendors are able to keep this closed and compartmentalised.

It's not a case of these chipset vendors wanting to keep their own IP private - often it's not theirs to start with, having been licensed - probably several times already - from other parties.

You can bet that a GPL3 kernel would cause an enormous fork - or even an industry-wide platform switch to something else.

Comment Re:What's wrong with GCC? (Score 5, Informative) 711

One of the key design objectives of Clang is that it is highly modular, and implemented in such a way that various compilation stages are self-contained, and have clean APIs and data structures. This allows development tools such as IDEs to link directly against the stages of the compilation pipeline then need to implement syntax highlighting, code completion, refactoring tools and so on.

Apple's XCode does precisely this, and licensing and lack of modularity in the GCC source tree would have been major factors in their choice to support Clang and LLVM development.

The traditional way of implementing these functions in IDEs has been to effectively re-implement the front-end of the compiler (often not completely). This is a big deal when developing in C++ against the STL/Boost/TR1 when you find that code completion can't grok template properly. This is something that XCode and Visual Studio (which takes a similar approach) are both capable of doing.

Comment Re:Different kind of anti-social (Score 2) 440

I'd imagine that under the zero-tolerance policing strategy in many US cities, people engaged in almost all of these activities would simply get arrested for petty criminal offences and cleared off the streets.

The point of anti-social behaviour orders is that they are executed under civil - rather than criminal - law. The idea being that a lower burden of proof is required in court to obtain the order in the first place. In practice, the evidence usually consists of a long record of low-level criminality - a possible example being an individual who is clearly dealing drugs, but who the police have never managed to catch with any.

Of course things on in the realm of the criminal law once the order is breached.

Blackberry

Submission + - RIM's future hangs on developer support for "new BlackBerry" (networkworld.com)

alphadogg writes: With its future up for grabs, Research in Motion at its annual BlackBerry World conference next week will focus on simplifying development for its soon-to-be-unveiled BlackBerry 10 operating system. HTML5 is one key technology in that strategy to create a viable ecosystem of applications for a new generation of mobile devices expected to ship by year-end. The simplicity is needed because BB10, based on a real time kernel acquired with RIM's buyout of QNX Software Systems in 2010, is a complete break with the software that runs on standard BlackBerry smartphones. "It's a bit of a challenge," says Tyler Lessard, formerly a RIM vice president in charge of the global developer program, and since October 2011 chief marketing officer at mobile security vendor Fixmo. "There's very little or no compatibility between the old and new operating systems. Existing apps can't be carried forward to QNX and BB 10. The question is, once the BlackBerry 10 smartphones launch, can RIM have an adequate catalog of apps?"

Slashdot Top Deals

"Ninety percent of baseball is half mental." -- Yogi Berra

Working...