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

 



Forgot your password?
typodupeerror
×

Comment Re:Backwards (Score 4, Informative) 853

Well I've done the research and here's the deal:

The 50 million number comes a Census *mailin survey* which is completely unscientific and therefore invalid.

You've done the research? Care to provide a citation for your claims?

The 50 (sometimes 47) million number that is often quoted comes from SAHIE. A quick glance at the about page will show you that:

The SAHIE program models health insurance coverage by combining survey data with population estimates and administrative records. Our estimates are based on data from the following sources:

* The Annual Social and Economic Supplement (ASEC) of the Current Population Survey (CPS);
* Demographic population estimates;
* Aggregated federal tax returns;
* Participation records for the Supplemental Nutrition Assistance Program (SNAP), formerly known as the Food Stamp program;
* County Business Patterns;
* Medicaid and Children's Health Insurance Program (CHIP) participation records; and
* Census 2000.

If you want to dig deaper then checkout the data inputs section.

BOTTOM LINE: it is not a "mailin" survey or anything of the sort. 47 million is the best, educated guess of the number of uninsured based on data from a wide variety of sources collected in 2005 and compiled by SAHIE; 50 million if you look at the 2006 data.

Comment Re:A what? (Score 1) 300

Just exactly who is going to decide what "... a compelling state interest" is?

A court (the legislative branch).

Let me guess? The same people that will charge you with treason or terrorism?

Nope. That'd be a prosecutor (acting under the authority of the executive branch).

Comment POSIX advisory file locking... (Score 1) 270

int main()
{
int fd, fd2;
struct flock fl;

fd = open(TEST_FILE, O_RDONLY);

if (fd < 0)
perror("open failed");

bzero(&fl, sizeof(fl));

fl.l_type = F_RDLCK;
fl.l_whence = SEEK_SET;
fl.l_len = 1;

if (fcntl(fd, F_SETLK, &fl) < 0)
perror("lock failed");

/* fd is now locked, whoohoo!!! */

fd2 = open(TEST_FILE, O_WRONLY);

if (fd2 < 0)
perror("open failed");

/* fd is now @^%$#ing unlocked!!!! For the love of God, why!?!?!? */

return EXIT_FAILURE;
}

Slashdot Top Deals

The Tao is like a glob pattern: used but never used up. It is like the extern void: filled with infinite possibilities.

Working...