Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re:PIN Codes (Score 1) 241

I don't think I want my pin broadcast across a (potentially) insecure local Wifi network. I'd much rather the analog solution in this case (a signature). Yeah, my server could potentially swipe my credit card and steal the account info, but:

  • * since it's credit and not debit, I don't have to fight to get my money back. I simply tell my CC company that the charge isn't mine and let them investigate.
  • * it is a lot easier to catch an employee stealing card numbers than an anonymous geek who hacks the WLAN from across the street.

Comment Re:What's so hard? (Score 1) 119

What's more -- Aardvark doesn't routinely collect information from its users. Apart from the Google Ads, this site is a cookie-free zone -- I probably know nothing at all about you anyway!

I went to your site and Firefox prompted me to accept the following cookie:
name: font_size
content: 0
path: /
domain: aardvark.co.nz
Expires: End Of Session

Not a big deal, really, but it doesn't match up with your policy.

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

And it should be the law: If you use the word `paradigm' without knowing what the dictionary says it means, you go to jail. No exceptions. -- David Jones

Working...