Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re: It's like Venezuela but without all the gun cr (Score 2) 431

That's a good description, but everyone is still missing the actual cause. Firstly, the European Union is founded on an ideology that doesn't allow for an economic crisis. Second, when the crisis hit in 2008, the Greek *private* sector *reduced* their bank borrowing. Their money supply shrank, velocity shrank too, jobs were lost, tax receipts went down. Their government debt ratio went up, not because they were borrowing more, but because GDP fell. But the Euro doesn't allow Greece to run a large deficit, nor to increase their debt level, so they can't stimulate their economy to prevent further job losses.

The Greek government weren't in good shape before, but the combination of a crisis and the rules imposed by the Union have wiped them out.

Comment Re:French citizens should be looking at Greece (Score 1) 334

Have you looked at a graph of Greece's unemployment? It's jumped from <10% to >25% since the crisis began.

They need to increase the flow of money around the economy to stimulate job growth. During a downturn the velocity of money shrinks, so no free win there. It's unlikely they're going to increase exports, so a trade surplus is unlikely. They won't be borrowing more money from the banking sector any time soon. Which only leaves a government deficit to stimulate the economy, which is prevented by the Maastricht treaty.

Without leaving the Euro, Greece is screwed.

Comment Re:Depends (Score 1) 517

Make sure you aren't running out of RAM for some reason. For example, I've seen the "Server" windows service leaking memory like a sieve in Windows 8. I've seen the BIOS limit available memory to 4GB, even though there was 16GB installed. Combined, these issues caused the machine I was using to practically grind to a halt.

Comment Sparkleshare on a git repository (Score 1) 212

Everyone works with their files locally, changes are synced via a common server. Everyone has a compressed backup of the complete history of the entire filesystem for disaster recovery. Everyone should be able to browse and recover any version of any file without adding load to the server, though usability might be slightly lacking. You could also setup a FUSE filesystem on a linux box to browse the history.

You may need to partition the file storage into multiple repositories, so that people don't need to synchronise folders that they don't use.

Comment Re:Does it matter? (Score 4, Insightful) 668

The first study doesn't deal directly with pain, and should never have been published, IMO, it is appallingly bad science. Some (probably not all) of the flaws:

  • - It mixes a range of quite different chronic conditions including headaches, allergies, dermatitis, rhinitis (all of which can be caused by stress or psychosomatic effects as well as physiology);
  • - it doesn't present a list of all the conditions studied, only "the most frequent diagnoses";
  • - the authors "replace" missing data if a patient dropped out (page 3);
  • - the authors make arbitrary assumptions about the models without any explanations for their reasoning (page 3 again);
  • - and, most damningly, the patients were allowed to use conventional medications during the study (page 6). In other words no useful conclusions about the efficacy of homeopathy can be drawn from it.

as I said, I'm surprised it was published, but given that BioMed Central recently retracted 43 papers for fake peer review, perhaps I shouldn't be.

The second paper is not about homeopathy but about acupuncture, which is (a) naturopathy and (b) an actual physical process involving sticking needles into specific parts of the body (AFAIK nerve clusters).

Comment Re:Infinity (Score 1) 1067

And in C not just the result, but the behaviour is undefined. If you divide by zero the compiler, runtime libraries and the CPU can do whatever they like. They could ignore you, crash, format your hard drive or kill your pet.

For speed reasons, this is a good thing. If it looks like you might run into undefined behaviour, the compiler can assume that the inputs to the program won't trigger that behaviour. This allows all kinds of optimisations to be performed, from dead code elimination, to hoisting invariant code out of loops.

At least other high level languages define precisely what a divide by zero should do. That way you run into platform or compiler specific heisenbugs far less frequently.

Slashdot Top Deals

He has not acquired a fortune; the fortune has acquired him. -- Bion

Working...