This assumes that 100% of the moochers would have paid for an account if they didn't mooch. I don't know what proportion of people would actually have paid for an account, but I'm guessing more than 10% and less than 50%? Still a lot, but the presence of that glaring error in the conclusions makes me wonder how much the study authors are biasing their assumptions to make the most headline-grabbing number possible, rather than engaging in a good-faith effort to find out how much money these companies are really losing.
"A single person could receive up to about $17,000 a year, minus half of any income he or she earns"
UBI is a sum of money unconditionally given to all citizens. This is a grant that comes with a 50% effective tax rate on your first earnings, massively disincentivising people from finding jobs.
Bearing in mind that all this is just a fun exercise, and there's no reason to believe that the 1.2 mN/kW thrust will scale to megawatts of power, here's how long it would take to get to Mars if this finding scales to a practical spaceship drive:
Assume solar panels in space can give you 2.5kW per square meter, and a hypothetical spacecraft has a 20 x 40 meter solar array giving 2 MW
1.2 mN/kW == 1.2 N/MW, so at 2MW you're getting 2.4 Newtons of thrust.
Let's say that the craft weighs 100 tonnes, that gives an acceleration of 0.000024 meters per second squared, or about 20 hours to get to walking speed.
Mars is 225 million km away.
Putting those numbers into this nifty space travel calculator, it'll take 6 years to get to mars, including acceleration and deceleration. Or 2 years if you can get the craft mass down to 10 tonnes.
There's a history of visionaries predicting utopian scenarios including a greater share of leisure time as a result of automation. John Maynard Keynes famously predicted a 15 hour working week.
It's based on the idea that there's a certain amount of work that needs to be done, and once it's automated people have nothing to do. However, the work that really that "needs" to be done was automated away during the Agricultural Revolution in the 1700's and 1800's. 90% of the work we're doing now (and probably closer to 100% of slashdotters' work) doesn't *need* to be done, but we do it anyway.
What the visionaries don't take into account is that the top two levels of Maslow's Hierarchy of Needs don't work like the bottom two levels. The first small part of our work fulfils the basic needs like food water and shelter, then we carry on working in pursuit of higher needs, such as prestige and a sensation that we're fulfilling our potential. These needs are relative to what everyone else is accomplishing.
This is why people will carry on working long weeks long after automation takes away their manual labour jobs. In fact, automation has lead to longer working weeks, as manual labour is replaced with office work that can physically be done for longer. People will work for as long as they can to compete with their peers
Back to Elon's preiction. What will actually happen is that in the short term, people laid off as a result of automation will suffer and be angry, and in the long term the economy will adjust to the excess supply of cheap labour and invent new ways to use it, not necessarily as pleasant as the old manual jobs.
All modern NAND flash memory does "quasi-RAID". Writes are split across all chips in parallel, so the larger the capacity, the more chips, the faster the write speed. Check out any USB thumb drive with various capacities - larger models of the same line will be faster.
That said, 128GB should only be 4 times faster than 32GB, so if these figures are correct then the 32GB units are also using lower spec memory.
This article is just a list of game-changing technologies coupled to unsourced assertions that these were derided as toys when they were first introduced.
I don't recall a widespread opinion that color monitors, sound cards, digital cameras, wireless networking or AI were "toys" when first introduced. If anything, I recall and endless stream of over-hyped articles about how they heralded the second coming of Christ.
It's a somewhat 50's point of view that an "advanced civilisation" would produce massive amounts of waste heat. Surely an even more advanced civilisation would be so efficient as to be undetectable?
It certainly is a problem! Before you publish, one hostile country's government knew. After you publish, every other hostile country, sympathiser group or random nutjob who feels like making a statement knows.
Sure, have a healthy suspicion of anything you hear from the government, but these complaints just don't make sense.
>> These hidden officials also claim that American and British agents were unmasked and had to be rescued, but not a single one is identified
What, so you expect the government to publish the names of former covert agents previously operating in hostile countries? How about their home address while we're at it?
>> There is speculation that Russia and China learned things from obtaining the Snowden files, but how could these officials possibly know that, particularly since other government officials are constantly accusing both countries of successfully hacking sensitive government databases
One of the whole points of an intelligence organisation is to know what the 'enemy' knows and how they got that information. There are loads of ways you can find out how knowledge came about, such as observing coincidental timing (china discovers several things at the same time what were all in unreleased snowden files), asking your source, or obtaining secret documents from your opponent describing how the information was obtained.
The linux seccomp feature provides application sandboxing. Chrome uses it to sandbox tabs from each other and native plugins from the rest of the system.
Seccomp is accessed through the seccomp (2) system call. The SECCOMP_FILTER_FLAG_TSYNC flag is an option to seccomp (2) that transparently synchronises the effect of the call across all sandboxed threads.
The age of the exoplanet is not independently derived, but instead, taken from the age of the host star. This too can be difficult to determine. For isolated stars, there are precious few methods (such as gyrochronology) and they generally have large errors associated with them. Thus, instead of looking for isolated stars, astronomers searching for young exoplanets have tended to focus on clusters which can be dated more easily using the main sequence turn off method.
How do astronomers calculate the age of a distant planet? I can see how they'd get distance from host star (orbital period) and mass (displacement of host star) but how on earth do you work out the age?
Except that GCHQ is a UK government organisation, and in the UK Sovereign Immunity only protects the monarchy. People can and do sue the government for not adhering to the law, in a process called judicial review: http://en.wikipedia.org/wiki/Judicial_review_in_English_law
That said, I don't think any lawsuit would be successful.
TFA states that the $460 million was lost by Knight Capital themselves. If they'd been fined $12M for stealing $460M, I'd be as outraged as the article author, but from where I'm standing it looks like the SEC turned a $460M loss into a $472M loss.
I recently successfully persuaded the company that I freelance for to open source a core part of their product line. The part we open sourced was essentially the engine that powers several other products. I had a whole page of benefits prepared, but the main one was this:
"Your developers don't seem to realise that the core engine is supposed to be a general purpose platform, almost like an operating system - it needs to be very well documented, and it absolutely can't have any code in it that is specific to one of the applications that runs on it. If you open source it and give it its own website and code repo, your developers will finally understand what it is, and stop dumping application specific code into it when then need to implement a new application-level feature. This will save you time because you won't have to be constantly refactoring application code out of the platform."
Also, "open source is cool, and having an open source product will make it easier hiring new developers" seemed to go down well.
Google is obsessive about reducing HTML size for fast delivery, and that explains two of your observations.
The JS obfuscation is code reduction - all the variable names are replaced with a single letter and the white space stripped in all of google's JS code to reduce the script length (though no doubt they like the fact that this makes reverse engineering hard too.)
Adding the events after the page loads means you can loop over the array of links returned by document.getElementsByTagName("A"), instead of adding the handler as text to every link.
DocBook has GUI editors when you need them, and an XML source if you want to tweak the underlying structure either in a text editor or generic XML editing tool.
Depending on the renderer you use it can support SVG, TeX or MathML for equations.
Learning electronics is easier with a project that means something to you. I'm into photography, so I learned by building a sound trigger for my camera for high speed photography.
The kit comes with instructions and a circuit diagram. All else you need is a book like Starting Electronics by Keith Brindley to help you interpret the diagram.
Once Defendant converted Plaintiffs' recording into the compressed.mp3 format and they are in his shared folder, they are no longer the authorized copies distributed by Plaintiffs. Moreover, Defendant had no authorization to distribute Plaintiffs' copyrighted recordings from his KaZaA shared folder.
In other words, they're complaining about sharing the MP3s, not making them. The fight against corporate copyright bullies will not be helped by intellectual dishonesty and exaggeration.
Dean Edwards' javascript syntax highlighter handles several languages (you can easily add your own) and operates via DHTML behaviors so you don't even need to include the script files in the page. It works in most browsers.
What you need to use it is a blog that will let you post files to the server or create your own custom HTML templates, and then let people post HTML code. Code wrapped in <pre class="javascript"> gets highlighted correctly.
If you can't post files, a bit of hacking around with the source code and you can embed it in a template and invoke it manually with javascript.
Wordpress lets you post your own HTML templates with script - either install it on your own server or go for their free hosted service at wordpress.com.
This assumes that 100% of the moochers would have paid for an account if they didn't mooch. I don't know what proportion of people would actually have paid for an account, but I'm guessing more than 10% and less than 50%? Still a lot, but the presence of that glaring error in the conclusions makes me wonder how much the study authors are biasing their assumptions to make the most headline-grabbing number possible, rather than engaging in a good-faith effort to find out how much money these companies are really losing.
"A single person could receive up to about $17,000 a year, minus half of any income he or she earns"
UBI is a sum of money unconditionally given to all citizens. This is a grant that comes with a 50% effective tax rate on your first earnings, massively disincentivising people from finding jobs.
Babies have been getting bigger for a long time.
This is well documented in medical literature:
- "These findings suggest that US and Canadian babies are getting bigger" https://www.ncbi.nlm.nih.gov/p...
- "We conclude that Canadian infants are getting bigger" https://www.ncbi.nlm.nih.gov/p...
- "Results presented in this study demonstrate that even when migratory effects are eliminated, a secular increase in birth weight is observed" https://www.ncbi.nlm.nih.gov/p...
Bearing in mind that all this is just a fun exercise, and there's no reason to believe that the 1.2 mN/kW thrust will scale to megawatts of power, here's how long it would take to get to Mars if this finding scales to a practical spaceship drive:
There's a history of visionaries predicting utopian scenarios including a greater share of leisure time as a result of automation. John Maynard Keynes famously predicted a 15 hour working week.
It's based on the idea that there's a certain amount of work that needs to be done, and once it's automated people have nothing to do. However, the work that really that "needs" to be done was automated away during the Agricultural Revolution in the 1700's and 1800's. 90% of the work we're doing now (and probably closer to 100% of slashdotters' work) doesn't *need* to be done, but we do it anyway.
What the visionaries don't take into account is that the top two levels of Maslow's Hierarchy of Needs don't work like the bottom two levels. The first small part of our work fulfils the basic needs like food water and shelter, then we carry on working in pursuit of higher needs, such as prestige and a sensation that we're fulfilling our potential. These needs are relative to what everyone else is accomplishing.
This is why people will carry on working long weeks long after automation takes away their manual labour jobs. In fact, automation has lead to longer working weeks, as manual labour is replaced with office work that can physically be done for longer. People will work for as long as they can to compete with their peers
Back to Elon's preiction. What will actually happen is that in the short term, people laid off as a result of automation will suffer and be angry, and in the long term the economy will adjust to the excess supply of cheap labour and invent new ways to use it, not necessarily as pleasant as the old manual jobs.
All modern NAND flash memory does "quasi-RAID". Writes are split across all chips in parallel, so the larger the capacity, the more chips, the faster the write speed. Check out any USB thumb drive with various capacities - larger models of the same line will be faster.
That said, 128GB should only be 4 times faster than 32GB, so if these figures are correct then the 32GB units are also using lower spec memory.
The number of people predicting the death of Moore’s law doubles every two years.
This article is just a list of game-changing technologies coupled to unsourced assertions that these were derided as toys when they were first introduced.
I don't recall a widespread opinion that color monitors, sound cards, digital cameras, wireless networking or AI were "toys" when first introduced. If anything, I recall and endless stream of over-hyped articles about how they heralded the second coming of Christ.
It's a somewhat 50's point of view that an "advanced civilisation" would produce massive amounts of waste heat. Surely an even more advanced civilisation would be so efficient as to be undetectable?
It certainly is a problem! Before you publish, one hostile country's government knew. After you publish, every other hostile country, sympathiser group or random nutjob who feels like making a statement knows.
Sure, have a healthy suspicion of anything you hear from the government, but these complaints just don't make sense.
>> These hidden officials also claim that American and British agents were unmasked and had to be rescued, but not a single one is identified
What, so you expect the government to publish the names of former covert agents previously operating in hostile countries? How about their home address while we're at it?
>> There is speculation that Russia and China learned things from obtaining the Snowden files, but how could these officials possibly know that, particularly since other government officials are constantly accusing both countries of successfully hacking sensitive government databases
One of the whole points of an intelligence organisation is to know what the 'enemy' knows and how they got that information. There are loads of ways you can find out how knowledge came about, such as observing coincidental timing (china discovers several things at the same time what were all in unreleased snowden files), asking your source, or obtaining secret documents from your opponent describing how the information was obtained.
The linux seccomp feature provides application sandboxing. Chrome uses it to sandbox tabs from each other and native plugins from the rest of the system.
Seccomp is accessed through the seccomp (2) system call. The SECCOMP_FILTER_FLAG_TSYNC flag is an option to seccomp (2) that transparently synchronises the effect of the call across all sandboxed threads.
OK I answered my own question with some googling.
http://www.universetoday.com/76495/the-hunt-for-young-exoplanets/
Nice article, but that only says how they get the age of a star. I suppose that puts an upper limit on the age of the planet.
How do astronomers calculate the age of a distant planet? I can see how they'd get distance from host star (orbital period) and mass (displacement of host star) but how on earth do you work out the age?
Except that GCHQ is a UK government organisation, and in the UK Sovereign Immunity only protects the monarchy. People can and do sue the government for not adhering to the law, in a process called judicial review: http://en.wikipedia.org/wiki/Judicial_review_in_English_law That said, I don't think any lawsuit would be successful.
It seems that people are deliberately creating millions of fake identities and putting them online just to screw with the bulk data collectors.
Read the explanation on this page: http://xdduk.org/nino/BT889440D
TFA states that the $460 million was lost by Knight Capital themselves. If they'd been fined $12M for stealing $460M, I'd be as outraged as the article author, but from where I'm standing it looks like the SEC turned a $460M loss into a $472M loss.
Sure, they're idiots, they've punished themselves amply!
I recently successfully persuaded the company that I freelance for to open source a core part of their product line. The part we open sourced was essentially the engine that powers several other products. I had a whole page of benefits prepared, but the main one was this:
"Your developers don't seem to realise that the core engine is supposed to be a general purpose platform, almost like an operating system - it needs to be very well documented, and it absolutely can't have any code in it that is specific to one of the applications that runs on it. If you open source it and give it its own website and code repo, your developers will finally understand what it is, and stop dumping application specific code into it when then need to implement a new application-level feature. This will save you time because you won't have to be constantly refactoring application code out of the platform."
Also, "open source is cool, and having an open source product will make it easier hiring new developers" seemed to go down well.
Google is obsessive about reducing HTML size for fast delivery, and that explains two of your observations.
The JS obfuscation is code reduction - all the variable names are replaced with a single letter and the white space stripped in all of google's JS code to reduce the script length (though no doubt they like the fact that this makes reverse engineering hard too.)
Adding the events after the page loads means you can loop over the array of links returned by document.getElementsByTagName("A"), instead of adding the handler as text to every link.
DocBook has GUI editors when you need them, and an XML source if you want to tweak the underlying structure either in a text editor or generic XML editing tool. Depending on the renderer you use it can support SVG, TeX or MathML for equations.
Learning electronics is easier with a project that means something to you. I'm into photography, so I learned by building a sound trigger for my camera for high speed photography.
You can get kits containing the components you need here: http://www.hiviz.com/
And use them to make pictures like this: http://www.flickr.com/photos/bernieandjude/2578082432/
The kit comes with instructions and a circuit diagram. All else you need is a book like Starting Electronics by Keith Brindley to help you interpret the diagram.
Once Defendant converted Plaintiffs' recording into the compressed .mp3 format and they are in his shared folder, they are no longer the authorized copies distributed by Plaintiffs. Moreover, Defendant had no authorization to distribute Plaintiffs' copyrighted recordings from his KaZaA shared folder.
In other words, they're complaining about sharing the MP3s, not making them. The fight against corporate copyright bullies will not be helped by intellectual dishonesty and exaggeration.
There are plenty of good open source CMS systems in Java.
At the bank I work at we use OpenCMS.
Magnolia Community Edition is probably better.
Apache Lenya is another CMS written by a well known group but I can't vouch for it
JBoss Nukes is poorly documented but written by JBoss so should be good.
Dean Edwards' javascript syntax highlighter handles several languages (you can easily add your own) and operates via DHTML behaviors so you don't even need to include the script files in the page. It works in most browsers.
http://dean.edwards.name/my/examples/star-light/
What you need to use it is a blog that will let you post files to the server or create your own custom HTML templates, and then let people post HTML code. Code wrapped in <pre class="javascript"> gets highlighted correctly.
If you can't post files, a bit of hacking around with the source code and you can embed it in a template and invoke it manually with javascript.
Wordpress lets you post your own HTML templates with script - either install it on your own server or go for their free hosted service at wordpress.com.