There's ~47,000,000 Americans without health insurance. Out of a population of ~300,000,000. That's 15.67%, not 50%
I don't know anything about those source numbers, so I'll just go ahead and believe them, but I've gotta call you on those sig figs there. 15.67? 4 sig figs? How about just 20%.
(I'm not sure whether to thank or to blame all of my physics teachers for drilling us in sig figs)
Both 47,000,000 and 300,000,000 are both to two significant digits. Calculations involving those two numbers should have two significant digits in the results. 4.7/30 is.16 to two significant digits, while.2 is only one significant digit. How about actually using what you supposedly learned about significant digits?
Access to records are ruled by the Freedom of Information Act. For non-personal information requests, you need give your name, address, daytime telephone number, information on the records you are looking for, and an agreement on amount of fees you are willing to pay. For personal information, you also need a bunch of info on the person (subject), a notarized signature or Under Penalty of Perjury Statement (see third link), and a statement authorizing you to receive the subject's personal information (assuming you are not the subject).
Except you have broken the code, most likely: if (issue1 || issue2) { needs to become if (!needs_cleanup && (issue1 || issue2)) {. Really, good error handling is hard to get right.
Geez, just as I was about to submit this, I noticed that it was jd142 that made the initial error, and it wasn't caught.
Since I am editing again, I just want to say that the goto as written above really is just a finally clause, as you get in Java. These are really the types of gotos that actually have reason to exist -- or have people not written try {... } finally {... } in Java?
You can not copyright a name. I think the summary writer misread or misunderstood the line in TFA:
The Popeye trademark, a separate entity to Segar's authorial copyright, is owned by King Features, a subsidiary of the Hearst Corporation -- the US entertainment giant -- which is expected to protect its brand aggressively.
Gas is elastic in the long term, but is actually inelastic in the short term.
What affects demand? When there is a long term trend (like what we saw recently), changes in lifestyle occur. People/companies buy efficient cars/equipment, move closer to work or otherwise reduce usage, or avoid the cost almost entirely by buying bus passes and such -- all of these are largely multi-year commitments. That is what happened as a result of the 70's crisis, for example -- in particular, California's energy consumption has not kept up with it's population surge since the 70's.
However, when short term fluctuations occur, people do not rush to change their habits. Instead, they hope prices will go down next week and maybe don't drive as far for vacations. That's why gas prices rocket up and down so fast from day to day -- they could not do that if the prices were elastic (compare e.g. food).
The only copyright that they would have is a compilation copyright -- that is, which poems they chose and how the poems are arranged on the page. Oh yes, and a regular copyright on any original work added. So, there is no copyright on the poem, but there might be on a scanned image of the page containing the poem. Oh, and just because there is no copyright does not mean they can't sue you for it or try to convince you they have one (they seem to have done the latter successfully).
This is going to be the same for any group of prime numbers you pick.
Counter-example: I pick 3 and 5. 3x5+1 is 16 which is not prime. The demonstration is only valid is you pick all the first N prime numbers.
Read the post again:
31 therefore is either a prime number itself, or it can be broken down into a product of prime numbers.
But we've shown that the prime numbers in our list can't be the primes that do that, since none of them can divide into our result cleanly.
So, 16 is either a prime number itself, or it can be broken down into a product of prime numbers, and the the prime numbers in your list can't be the primes that do that. In particular, the prime you are looking for is 2.
I don't understand what the real difference is from other types of embryo screening. Sure, there was a different method of screening here, but otherwise screening like this has been going on for a while. No new ethical implications that I see.
To you and I, this makes sense, but to the great unwashed masses looking at files and configurations inside their PC is about as daunting as trying to fix their tv when the sound stops working. They open up the case, and with screwdriver in hand, start poking around looking at various bits inside the tv.
Then they touch the CRT, get a massive electrical discharge, and earn a Darwin Award.
Yes. The article is about how scientist used to think more particles got in when the magnetic fields of the earth and sun were not aligned, but it turns out the opposite is true. The title and the first line of the summary are bogus.
Especially since the statement is "The students will essentially own the computers." Given that that is the intent, then they need to be managed accordingly. That means minimal controls/intrusion, just enough to satisfy the requirement: "The state mandates web filtering on all machines." There is no way one can stop kids from doing things with the machines, nor does one really want to.
As far as lock down, security assumes no physical access. How do you handle someone who reformats the drive? And disk target mode? Resetting passwords with an install disk? Really, trying to stop someone from doing something to a laptop that they have most of the day every day is not going to work. Do the minimum and forget about it: don't ask don't tell. At home, parents can police. At school, they are watched already.
Naturally you can always comment "Why use a Mac in the first place when you could have a linux desktop?" but I would reply that I don't have a choice, the CEO only buys Macs for workstations. So I have to use what I've got. This would make my life easier.
There's ~47,000,000 Americans without health insurance. Out of a population of ~300,000,000. That's 15.67%, not 50%
I don't know anything about those source numbers, so I'll just go ahead and believe them, but I've gotta call you on those sig figs there. 15.67? 4 sig figs? How about just 20%.
(I'm not sure whether to thank or to blame all of my physics teachers for drilling us in sig figs)
Both 47,000,000 and 300,000,000 are both to two significant digits. Calculations involving those two numbers should have two significant digits in the results. 4.7/30 is .16 to two significant digits, while .2 is only one significant digit. How about actually using what you supposedly learned about significant digits?
Question everything
Why?
Oh, and the request, apparently, needs to be filed on bad old paper.
It creates a better paper trail (no pun intended). Electronic documents are so easily fabricated and destroyed. Most legal stuff is paper based.
Access to records are ruled by the Freedom of Information Act. For non-personal information requests, you need give your name, address, daytime telephone number, information on the records you are looking for, and an agreement on amount of fees you are willing to pay. For personal information, you also need a bunch of info on the person (subject), a notarized signature or Under Penalty of Perjury Statement (see third link), and a statement authorizing you to receive the subject's personal information (assuming you are not the subject).
Sources:
http://www.dhs.gov/xlibrary/assets/privacy/privacy_pia_cbp_ats.pdf (section 7.1)
http://www.state.gov/m/a/ips/
http://www.state.gov/documents/organization/103067.pdf
Except you have broken the code, most likely: if (issue1 || issue2) { needs to become if (!needs_cleanup && (issue1 || issue2)) {. Really, good error handling is hard to get right.
Geez, just as I was about to submit this, I noticed that it was jd142 that made the initial error, and it wasn't caught.
Since I am editing again, I just want to say that the goto as written above really is just a finally clause, as you get in Java. These are really the types of gotos that actually have reason to exist -- or have people not written try { ... } finally { ... } in Java?
I have a hard time believing this. See Tarzan. Many work have been prevented from reaching publication.
The Popeye trademark, a separate entity to Segar's authorial copyright, is owned by King Features, a subsidiary of the Hearst Corporation -- the US entertainment giant -- which is expected to protect its brand aggressively.
The name Popeye is trademarked.
Gas is elastic in the long term, but is actually inelastic in the short term.
What affects demand? When there is a long term trend (like what we saw recently), changes in lifestyle occur. People/companies buy efficient cars/equipment, move closer to work or otherwise reduce usage, or avoid the cost almost entirely by buying bus passes and such -- all of these are largely multi-year commitments. That is what happened as a result of the 70's crisis, for example -- in particular, California's energy consumption has not kept up with it's population surge since the 70's.
However, when short term fluctuations occur, people do not rush to change their habits. Instead, they hope prices will go down next week and maybe don't drive as far for vacations. That's why gas prices rocket up and down so fast from day to day -- they could not do that if the prices were elastic (compare e.g. food).
Let's hope you work in Europe. In the US, midnight UTC is 4-7PM (depending on time zone). Similar statement for lots of Asia.
The only copyright that they would have is a compilation copyright -- that is, which poems they chose and how the poems are arranged on the page. Oh yes, and a regular copyright on any original work added. So, there is no copyright on the poem, but there might be on a scanned image of the page containing the poem. Oh, and just because there is no copyright does not mean they can't sue you for it or try to convince you they have one (they seem to have done the latter successfully).
This is going to be the same for any group of prime numbers you pick.
Counter-example: I pick 3 and 5. 3x5+1 is 16 which is not prime. The demonstration is only valid is you pick all the first N prime numbers.
Read the post again:
31 therefore is either a prime number itself, or it can be broken down into a product of prime numbers.
But we've shown that the prime numbers in our list can't be the primes that do that, since none of them can divide into our result cleanly.
So, 16 is either a prime number itself, or it can be broken down into a product of prime numbers, and the the prime numbers in your list can't be the primes that do that. In particular, the prime you are looking for is 2.
TFA specifically mentions that echolocation was not used.
That's because someone other than the barber is cutting it.
I don't understand what the real difference is from other types of embryo screening. Sure, there was a different method of screening here, but otherwise screening like this has been going on for a while. No new ethical implications that I see.
To you and I, this makes sense, but to the great unwashed masses looking at files and configurations inside their PC is about as daunting as trying to fix their tv when the sound stops working. They open up the case, and with screwdriver in hand, start poking around looking at various bits inside the tv.
Then they touch the CRT, get a massive electrical discharge, and earn a Darwin Award.
Yes. The article is about how scientist used to think more particles got in when the magnetic fields of the earth and sun were not aligned, but it turns out the opposite is true. The title and the first line of the summary are bogus.
The password reset thing isn't on the install disk btw.
It was as of 10.4 (don't know about 10.5). It is a menu choice before you actually start the install. Same place you get to Disk Utility.
Especially since the statement is "The students will essentially own the computers." Given that that is the intent, then they need to be managed accordingly. That means minimal controls/intrusion, just enough to satisfy the requirement: "The state mandates web filtering on all machines." There is no way one can stop kids from doing things with the machines, nor does one really want to.
As far as lock down, security assumes no physical access. How do you handle someone who reformats the drive? And disk target mode? Resetting passwords with an install disk? Really, trying to stop someone from doing something to a laptop that they have most of the day every day is not going to work. Do the minimum and forget about it: don't ask don't tell. At home, parents can police. At school, they are watched already.
Well, the OP says "The state mandates web filtering on all machines." So, "none" doesn't work.
How about printing the glyph outlines. On the old Macs, this was a standard option.
Actually, in my mind, the workman look like people from Pompeii.
I loved this one: http://www.vimeo.com/1109226
Though, seconds 20 to 60 seem pretty pointless.
Here's a copy of the picture: http://toolmans.blogspot.com/2008/12/xmas-platter.html
And in case that does something bad, Google cache: http://www.google.com/search?q=cache:ajUtxPi4cb8J:toolmans.blogspot.com/+http://www.nzgames.com/forums/showthread.php%3Ft%3D81672
Naturally you can always comment "Why use a Mac in the first place when you could have a linux desktop?" but I would reply that I don't have a choice, the CEO only buys Macs for workstations. So I have to use what I've got. This would make my life easier.
And Macs don't run linux?
True. It should have been modded offtopic, not troll.