If Amazon concedes that states and localities have enforcement powers beyond their borders for taxing purposes, will Amazon also need to be subject to ALL of the sales regulations imposed by their customers' jurisdictions? Will I get a big pop-up saying that a switchknife of the length I've chosen isn't legal in my city? Will they have to check ID for M-rated games?
You're right, strictly speaking, but what I was referring to was commutivity of the algorithm, not necessarily the result. You want to know that whatever decides (a gt b) is also going to decide whether (b gt a).
Operators imply commutivity (a+b = b+a). You can't guarantee that if the function is implemented by a or b. It's a bad idea that leads to subtle errors down the road.
Non-profits can and often do take in revenue in excess of their costs (they wouldn't be very stable otherwise!) The difference is what tax law allows them to do with those profits (reinvest in their business vs. distribute to the owners).
The value of goods and services is in the eye of the beholder. Parties engage in trade (and employment) because the perception is that both sides stand to gain.
It's all a wash as long as total revenue as a percentage of GDP remains the same, right? You're just collecting it from somewhere else (incentivizing/disincentivizing different things).
That said, all the taxes you've listed are probably better for society than sales tax. Disincentivizing consumption and targeting the poor are two things that generally aren't great for an economy.
But what about in a corporate environment, where the OWNER is distinct from the person in physical possession of the device? Can we at least have some basic infrastructure to ensure that when a device is going to be permitted to access sensitive resources/material, it has some verifiability of its state?
If you only allow a subset you don't get native speed, you get the speed that your subset of instructions allows.
The inner sandbox uses static analysis to detect security
defects in untrusted x86 code. Previously, such analysis
has been challenging for arbitrary x86 code due to such
practices as self-modifying code and overlapping instruc-
tions. In Native Client we disallow such practices through a
set of alignment and structural rules that, when observed,
insure that the native code module can be disassembled
reliably, such that all reachable instructions are identified
during disassembly. With reliable disassembly as a tool, our
validator can then insure that the executable includes only
the subset of legal instructions, disallowing unsafe machine
instructions.
The inner sandbox further uses x86 segmented memory
to constrain both data and instruction memory references.
Leveraging existing hardware to implement these range
checks greatly simplifies the runtime checks required to con-
strain memory references, in turn reducing the performance
impact of safety mechanisms.
As long as you weren't trying to write self-modifying code (and note most compilers won't do this), your performance impacts are basically restricted to checking non-local jumps. Not strictly native, but close enough.
not native speed as to sandbox you must create a vm like system.
That's provably untrue. See AppArmor and SE-Linux, both of which operate without creating a virtual machine (only implementing replacement system calls).
Differential Geometry will give you the mathematical foundation for expressing non-flat spaces. From there, GR is "just" the Einstein Field Equations and the implications thereof. And compared to, say, quantum mechanics, there's very few solvable exact solutions to make case studies out of (black holes and possible evolutions of the universe, really).
Springer has an OK book on Differential Geometry, and then you want to move on to Gravitation, by Misner, Thorne, and Wheeler.
(I am reminded of the time in college when as a grader in a physics class, the students were asked to find how high a pressurized leak on a water tank would shoot into the air. Two student's answers had the water at escape velocity speeds, sending them into orbit the earth.)
I get your point re: reality checking, but as an aside, any velocity straight up without a sustaining acceleration will eventually come back down. Escape velocity is the speed tangential to the surface of the earth (i.e. on the least energetic orbital trajectory) that is in excess of what gravity can keep pulled to the surface (g $lt; v^2/r). And you still have to fight against air resistance trying to decelerate you while you're inside the atmosphere.
Do you have evidence there's monopoly forces at work? From an outsider's perspective it appears to be a classic supply and demand problem with too many people who want to be interns.
That's the "strict constructionist" point of view. Many people (most?) hold a more moderate point of view that the Constitution shouldn't be interpreted in such strict black and white, and that if the Constitution held every exception to the rule the framer's had in mind, and WOULD have had in mind if they could predict all new situations, it would be as long as some of the bills congress passes, printed on 7000 sheets of paper.
You might want to change your Downloads folder to/tmp. It enables you to forget about the file once you're done using it (and encourages you to put it somewhere more meaningful than "Downloads" if you want to keep it).
It's in their interest to come up with a solution that could feasibly be purchased. Too cheap and not enough profit, but too expensive and Congress doesn't pay for it.
I'm not from the united states, and I wasn't talking specifically about them.
But you were responding to a comment that DID specifically refer to the US Constitution, and you called it "the most uninformed comment I've ever seen". You owe the author some evidence for that statement.
Right. Google challenged Bing to a no-win scenario and now is getting all upset and accusing Bing's winning strategy as "cheating" because it didn't fall within their box of how they thought search engines were supposed to operate.
Isn't a little much to editorialize in the title itself? I understand the referenced article is an opinion piece, but can the editors please clarify that this isn't an event that's actually happened or been established as true, perhaps with a more appropriate title like "Blogger claims New Corp's The Daily is doomed"?
Because as far as I can tell, E17 isn't actually out yet. This article is about a set of libraries E17 will depend on, none of which contain widgets or other graphical components.
If you're in a business situation and you're using AOL dial-up to guarantee Internet access, you're doing it wrong. Get a (tethering) smartphone or a WiMax modem. Or have a dial-up access line on the business premises at much lower cost.
If Amazon concedes that states and localities have enforcement powers beyond their borders for taxing purposes, will Amazon also need to be subject to ALL of the sales regulations imposed by their customers' jurisdictions? Will I get a big pop-up saying that a switchknife of the length I've chosen isn't legal in my city? Will they have to check ID for M-rated games?
You're right, strictly speaking, but what I was referring to was commutivity of the algorithm, not necessarily the result. You want to know that whatever decides (a gt b) is also going to decide whether (b gt a).
Yes. At least for me with Cpp, using + for string concatenation leads to more headaches than it's worth. I prefer to use boost::format.
Operators imply commutivity (a+b = b+a). You can't guarantee that if the function is implemented by a or b. It's a bad idea that leads to subtle errors down the road.
Non-profits can and often do take in revenue in excess of their costs (they wouldn't be very stable otherwise!) The difference is what tax law allows them to do with those profits (reinvest in their business vs. distribute to the owners).
The value of goods and services is in the eye of the beholder. Parties engage in trade (and employment) because the perception is that both sides stand to gain.
It's all a wash as long as total revenue as a percentage of GDP remains the same, right? You're just collecting it from somewhere else (incentivizing/disincentivizing different things).
That said, all the taxes you've listed are probably better for society than sales tax. Disincentivizing consumption and targeting the poor are two things that generally aren't great for an economy.
But what about in a corporate environment, where the OWNER is distinct from the person in physical possession of the device? Can we at least have some basic infrastructure to ensure that when a device is going to be permitted to access sensitive resources/material, it has some verifiability of its state?
If you only allow a subset you don't get native speed, you get the speed that your subset of instructions allows.
The inner sandbox uses static analysis to detect security defects in untrusted x86 code. Previously, such analysis has been challenging for arbitrary x86 code due to such practices as self-modifying code and overlapping instruc- tions. In Native Client we disallow such practices through a set of alignment and structural rules that, when observed, insure that the native code module can be disassembled reliably, such that all reachable instructions are identified during disassembly. With reliable disassembly as a tool, our validator can then insure that the executable includes only the subset of legal instructions, disallowing unsafe machine instructions. The inner sandbox further uses x86 segmented memory to constrain both data and instruction memory references. Leveraging existing hardware to implement these range checks greatly simplifies the runtime checks required to con- strain memory references, in turn reducing the performance impact of safety mechanisms.
As long as you weren't trying to write self-modifying code (and note most compilers won't do this), your performance impacts are basically restricted to checking non-local jumps. Not strictly native, but close enough.
not native speed as to sandbox you must create a vm like system.
That's provably untrue. See AppArmor and SE-Linux, both of which operate without creating a virtual machine (only implementing replacement system calls).
Differential Geometry will give you the mathematical foundation for expressing non-flat spaces. From there, GR is "just" the Einstein Field Equations and the implications thereof. And compared to, say, quantum mechanics, there's very few solvable exact solutions to make case studies out of (black holes and possible evolutions of the universe, really).
Springer has an OK book on Differential Geometry, and then you want to move on to Gravitation, by Misner, Thorne, and Wheeler.
(I am reminded of the time in college when as a grader in a physics class, the students were asked to find how high a pressurized leak on a water tank would shoot into the air. Two student's answers had the water at escape velocity speeds, sending them into orbit the earth.)
I get your point re: reality checking, but as an aside, any velocity straight up without a sustaining acceleration will eventually come back down. Escape velocity is the speed tangential to the surface of the earth (i.e. on the least energetic orbital trajectory) that is in excess of what gravity can keep pulled to the surface (g $lt; v^2/r). And you still have to fight against air resistance trying to decelerate you while you're inside the atmosphere.
Or at least they've managed to make a large number of people, including you, think so. Surely for their purposes, that's good enough.
Do you have evidence there's monopoly forces at work? From an outsider's perspective it appears to be a classic supply and demand problem with too many people who want to be interns.
That's the "strict constructionist" point of view. Many people (most?) hold a more moderate point of view that the Constitution shouldn't be interpreted in such strict black and white, and that if the Constitution held every exception to the rule the framer's had in mind, and WOULD have had in mind if they could predict all new situations, it would be as long as some of the bills congress passes, printed on 7000 sheets of paper.
Well, that all depends.
You might want to change your Downloads folder to /tmp. It enables you to forget about the file once you're done using it (and encourages you to put it somewhere more meaningful than "Downloads" if you want to keep it).
It's in their interest to come up with a solution that could feasibly be purchased. Too cheap and not enough profit, but too expensive and Congress doesn't pay for it.
You're not a True *nix Geek until you graduate to MPD and managing your playlist with an intelligent randomizer daemon.
I'm not from the united states, and I wasn't talking specifically about them.
But you were responding to a comment that DID specifically refer to the US Constitution, and you called it "the most uninformed comment I've ever seen". You owe the author some evidence for that statement.
Right. Google challenged Bing to a no-win scenario and now is getting all upset and accusing Bing's winning strategy as "cheating" because it didn't fall within their box of how they thought search engines were supposed to operate.
Isn't a little much to editorialize in the title itself? I understand the referenced article is an opinion piece, but can the editors please clarify that this isn't an event that's actually happened or been established as true, perhaps with a more appropriate title like "Blogger claims New Corp's The Daily is doomed"?
Because as far as I can tell, E17 isn't actually out yet. This article is about a set of libraries E17 will depend on, none of which contain widgets or other graphical components.
Many used cars end up in Mexico, where they can be turned around for a significant profit thanks to NAFTA.
http://www.sfgate.com/cgi-bin/article.cgi?f=/c/a/2008/02/24/MN99V44MC.DTL
You can't use passwordless public-key authentication on stock Telnet. Also the lack of X tunneling might be an issue if there's a firewall in the way.
If you're in a business situation and you're using AOL dial-up to guarantee Internet access, you're doing it wrong. Get a (tethering) smartphone or a WiMax modem. Or have a dial-up access line on the business premises at much lower cost.