Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Ditto (Score 1) 778

This is my own personal pet peeve.

And don't give me the 'language is evolving' line. This isn't about language evolving, it's about the users of the language devolving.

It's perfectly acceptable to say that it 'raises the question 'or 'asks the question' or 'slams its fists on the table demanding an answer to the question' but begging the question means to simply re-ask the question. You never want to beg the question. The question will tell you to go get a job, hippie.

---Nathaniel, shouldn't drink beer before posting.

Comment n=16 (Score 1) 567

Lessee.. google up 'binomial distribution' with n=16 and m=5 and...

Yup, if we take the null hypothesis that no one could tell the difference, there's a 6% chance of null hypothesis giving this result. This isn't a study, it's some gossip. No meaningful statement can be made, other than 'it's pretty clear that the lower bitrate isn't likely to be PREFERABLE' which is not much of a conclusion.

Comment It's an important thing (Score 5, Insightful) 709

Marijuana decriminalization is not simply a "stoner" issue. It's actually a very important one.

The US has disproportionately crowded jails, filled disproportionately with African-Americans, and a very large fraction of which are there on drug charges. The US "War on Drugs" has led to many many convictions over marijuana and we are paying the social and monetary cost of imprisoning lots of people.

This is not a Cheech and Chong movie - these are people in jail for doing something that is widely regarded as harmless in of itself.

So, I don't think it's any surprise when you have a very vocal segment of the population calling for decriminalization... particularly in this forum! Establishment media and other outlets for vox populi are likely to steer away from this issue due to editorial concerns - no one wants to look "pro drugs", so the issue will be touched very carefully in a newspaper.

Do _I_ think it's the most important issue? No. But then my brother isn't in jail for dealing.

Businesses

Inside Factory China 135

blackbearnh writes "While China is attempting to pull its industry up out of mere manufacturing mode, for now the country is the production workhorse of the consumer electronics industry. Almost anything you pick up at a Best Buy first breathed life across the Pacific Ocean. But what is it like to shepherd a product through the design and production process? Andrew 'bunnie' Huang has done just that with the Chumby, a new Internet appliance. In an interview with O'Reilly Radar, he talks about the logistical and moral issues involved with manufacturing in China, as well as his take on the consumer's right to hack the hardware they purchase."

Comment What are you asking? (Score 4, Informative) 250

Professional experimental physicist here.

There are two main types of software physicists have to deal with: hardware interface, and data analysis.

Hardware interface is often the the tougher one: slow controls, data aquistion, environmental monitoring - these all need to interface to hardware through various drivers. LabView is an obvious candidate for table-top experiments, since it is possible to set up working control and readout systems more or less out of the box. There is really no good open-source solution for this for the same reason that open-source drivers took a long time coming to Linux: the user base is just too small to write the code.

My own experience is that it's far better to write your own code, using whatever drivers you can scrounge - it's far more efficient at getting what YOU want done as quickly as possible once it's running. However, the time to write and debug this code is extensive. It's particularly bad since often students will write this code and then disappear, leaving you with badly-documented half-working code.

However, this is basically true of many LabView installations as well.

On the data analysis side, there are many good packages that serve as starting points. ROOT (http://root.cern.ch) is an excellent package for doing event-based data analysis in nuclear and high-energy physics, including efficient ntuple storage and histogramming. It's really a toolkit, not a program, so it allows you to do your own analysis by writing your own code.

I'm not familiar with other big packages, but I know that I frequently use raw C, C++, gnuplot, perl, and python to do little jobs.

There are other tasks as well. Blogging software can be good for logbooks. Wikis are good for in-house documentation.

It really depends on specifics. But basically it depends on where your project falls on the quick-and-dirty vs long-life vs high-performance judgements.

Slashdot Top Deals

FORTRAN is not a flower but a weed -- it is hardy, occasionally blooms, and grows in every computer. -- A.J. Perlis

Working...