It actually continues to work for you even after you leave. Adding renewable energy generation and high efficiency heating/cooling (geothermal) to your home increases your property value, which gives you the option to do the same again, or buy one with the work already done.
It looks like I can buy solar modules for a minimum cost of $1/Watt.
Assume an energy cost of $0.1/kWh. Assume an average of 12 hours of sunlight per day and a 50% of maximum average intensity. $0.1/kWh * 1 year / 12 * 50% * 12 hours/24 hours = $0.01826
The monthly value that a solar cell generates is $0.01826/watt month.
Assume a yearly interest rate of 5% (monthly is 0.4074%)
Since the cost of a solar cell is $1/watt, work out the number of months that a 1W solar cell must run for to generate $1. PV = A/i (1-1/(1+i)^n) PV = $1, A = $0.01826, i = 0.004074
n = 62 months = 5.17 years
The warranty on the reference cell is 10 years product workmanship, 25 years linear power.
So the value of the cell over its 25-year life span is $3.15/watt, with a cost of $1/watt.
This all neglects installation and grid-tie costs, but 50% average illumination per daylight-hour is conservative in most areas. Solar cells ARE worthwhile TODAY and WITHOUT government subsidies.
Efficiencies in solar cells are irrelevant. The only thing that matters is the $/Watt. Reference Solar Cell: http://www.affordable-solar.com/store/solar-panels/CSI-CS6P-245P-245W-Solar-Panel-STD-Frame
While I'm with you on the question of performance, I'd also question the suitability of FPGAs, both as an "open source" platform and as a learning tool for anything below university level courses. FPGAs are about as closed as it gets when it comes to hardware platforms. The verilog/VHDL compilers are, generally, closed source. I know there's an open one or two, but Mentor Graphics, Xilinx, and Altera all ship closed source compilers. The place and route algorithms that are used are all patented and closed source. The architecture of the FPGA itself is patented and closed source.
So, what, exactly, is the point of using an "open" processor on an FPGA? To make everything harder to do?
If you're really looking for a Free/Open processor, then your best bet is to put your money where your mouth is and back opencores.org in producing an ASIC version of the OpenRISC 1000. Even then, it's still built on a proprietary process in a fab, where you can't even get the technology files required to layout the processor without signing an NDA.
Here's the sad truth of it. You're dealing with a proprietary process anywhere from the chip level down. You simply cannot complain about not having open silicon and be taken seriously. Here's how it works:
If you want to make a chip, the first thing you have to do is find a design. Now you can make your own, and open source it, or you can get a pre-made design. If you choose to use an open-source design, then you're good--so far--but you'll have a significant performance lag behind the proprietary options. This goes double for video processing, memory controllers, buses, etc., etc.
Next, you need to find a fab who will make the chips for you. Here's where it gets bad. Even 180nm fabs consider their processes to be trade secrets, so that you have to sign an NDA just to get a process description file from the fab--this means your layout is, perforce, closed source.
Even if you somehow find a fab which will allow you to open the technology file, the placement and routing software for VLSI design is all closed source and patented. This is because place & route is a HARD problem. NP Hard, in fact.
So what it comes down to is this: until the homecmos people get their process going, you're stuck with something proprietary at some level. So then how much proprietary stuff is tolerable?
The Raspberry Pi Foundation had the goal of being bringing computing in a low cost package for education. The tradeoffs required to use open designs for the processor are quite steep: e.g. it would be a colossal time investment to get Linux running on a non-standard--read: non-proprietary--SoC. Using some proprietary chips to get there seems reasonable, so long as the OS doesn't become proprietary. The GPU blob is unfortunate, but not unexpected, particularly if you want decent performance.
How does your laptop computer calculate remaining battery life?
Two possibilities: 1) it has a voltage measurement, 2) it has a "fuel gauge" chip. For 1), It measures the voltage on the battery and compares that to a calibrated charge remaining vs. voltage curve. For 2), the chip reports the remaining capacity. Then divide by a sliding frame average of current consumption.
How does your browser calculate remaining download time?
It divides the remaining file size by a sliding frame average of the download speed.
How does your tablet distinguish between gestures?
It records all the points of a given "touch" (the point of a touch is the vector average of the whole touch zone. Think of it as the centre of gravity). It then does linear regression on the points, giving it a line which matches the average. It compares the linear regression and the actual data to find an error level, and divides the line segment up into smaller segments until they are all within some acceptable error level. It then passes this information off to a topological processing system, which could be as simple as a set of table lookups, but more likely is just a bunch of vector arithmetic.
The point here is not whether any of these examples is accurate or not, it's that each of them is plausible. You can do an enormous amount in programming without calculus.
But is it necessary? I'd argue it's field and application dependent. It's remarkably necessary for numerical methods (both for error and complexity); but those only matter if you're writing your own algorithms and you can get a long way without understanding the error in a system. It's necessary for simulation software, and there are more examples. Anywhere that a system is critical, and connected to the physical world, I'd want them to know the calculus required to accurately model their interface.
Another point, is that Computer Algebra Systems are faster and more accurate at most calculus than you will ever be; however they still require you to set up the problem so that they can do the algebra, integration, and differentiation for you.
The internet will be largely unaffected: the amorphous network of routers which makes up the internet is specifically designed to route around damage like this. The internet will be fine. The web, on the other hand, could suffer a large loss of access to content.
In 2009, I did the same search. Back then, HP was still making table PCs. A stylus-based tablet PC with onenote is a really good system for taking notes. It makes your handwriting searchable and it handles diagrams more cleanly than any regular laptop solution.
Now, with tablet PCs on the way out--HP doesn't even make them, last I checked--you could try a galaxy note, or the Eee Slate, though both of those options leave you without a keyboard.
I know everyone loves Arduino, but I don't get it. If you think you can explain it to me, first read specs of Raspberry Pi($35 and runs Linux, has Ethernet, USB, etc.) and STM32F4DISCOVERY ($15, 210 DMIPS, FPU, 1MB of flash, 192kB of SRAM, has USB host/device/otg, onboard 3-axis accelerometer, mic, stereo DAC with speaker driver, JTAG debugger also built in).
With those two on the market, I don't see what Arduino is for...
If you're working on Linux, then just download gcc-arm-linux-gnueabi with your package manager, or build from source. If you're working on Windows, it's a little more complex; I have used OpenOCD.
You can order the STM32F4Discovery from Digikey, Mouser, Arrow, Avnet, Element14, Newark, etc. They're pretty widely available.
Olimex has some good references in the software section of their USB JTAG page.
Bus Pirate: good for looking at communication waveforms to debug problems. ($35)
Logic Sniffer: For more complex problems than the above, allows looking at parallel signals.($50)
Raspberry Pi: Tiny ARM11 700MHz CPU with powerful graphics, 10/100 ethernet, USB2.0 host (2 ports), HDMI out, and GPIO connector. Boots from SD card. ($35)
MSP430 Launchpad: inexpensive microcontroller development platform ($4.30)
STM32F4Discovery: Development platform for powerful microcontroller. ARM Cortex M4 with FPU, 168MHz (210DMIPS), Ethernet MAC, 2xUSB host/device/OTG, etc. etc. Board has stereo audio DAC with speaker driver, USB Micro-AB connector, 3-axis accelerometer, digital mic, 4 user LEDs, two pushbuttons (one is reset), and onboard debugger which is supported by open source tools. ($15) <--- take that, arduino
Sadly, this is not always possible. In many places, high tech industry has a specific exemption from overtime compensation laws, or provides the employer with the option of mandating time off in lieu.
10,000 times the biggest fields that can be generated on Earth
is complete bullshit. Superconducting MRIs produce 3T fields just fine. And check out the National High Magnetic Field Laboratory; they have the record field strength of 100.75T
Yes, I am incapable of editing my own comment prior to posting. That should have been:
I've noticed that too. I can never figure out why daytime soap operas look so much different than prime-time shows. Is it the framerate that does it? I was beginning to think that the crappy dialogue and crappy plot were becoming visible.
I've noticed that too. I can never figure out why daytime soap operas look so much different than prime-time shows. Is it the framerate that does it? I was beginning to think that the , not just the crappy dialogue and crappy plot were becoming visible.
Apple's speciality is in seamless UI's. While people seem to like this for mobile phones and tablets, it's not the right solution for a car. Cars require tactile interfaces so that they can be navigated using touch while the driver keeps his eyes on the road. Apple has the potential to bypass this concern using Siri, but that comes with additional problems.
Siri and the maps used by Apple for GPS navigation are both delivered via cellular connection, which would imply that a driver would lose all voice recognition while driving outside the range of cellphone towers--e.g. through the mountains. The GPS navigation is a similar problem. Since the navigation data is delivered via cellular data, you would lose navigation in the mountains.
Much as I hate to admit it, I would prefer the Microsoft self-contained automotive voice recognition system to getting Apple iCars. Ford has demonstrated those in the past. I've also seen a reasonable implementation (non-Microsoft) on an Acura about five years ago. I'm not sure that this is a market where we should care about fragmentation. Just don't buy a car with a UI you don't like.
One in five Apple Macs is infected with malware, according to Sophos. But most of that is harmless to the Mac... it is Windows malware ready to be transmitted to the Windows population. OnlyOne in 36 Macs has OS X specific infections.
FTFY. A 2.8% infection rate is pretty significant.
To be fair, TFA is titled "Aviva Investors Accidentally Fires Entire Company Via Email [FULL TEXT]." But, TFA links to another article as its source. But that source isn't the origin of the story either. It came from Reuters. Honestly, if you're submitting a story to a news aggregator like Slashdot, take the time to send a link for the ORIGINAL story...
Put two of these cards next to eachother, and they won't read. Put them in an aluminium card case, and they won't read. Move more than about 5 cm away from the card and it won't read.
There are numerous ways around this problem. It shouldn't stop people from using the technology.
It would seem to me, then, that the charge should be fraud, not antitrust.
Back-slash-dot? Is that where you don't bother reading TFA? I read before I comment, anyway.
It actually continues to work for you even after you leave. Adding renewable energy generation and high efficiency heating/cooling (geothermal) to your home increases your property value, which gives you the option to do the same again, or buy one with the work already done.
It looks like I can buy solar modules for a minimum cost of $1/Watt.
Assume an energy cost of $0.1/kWh. Assume an average of 12 hours of sunlight per day and a 50% of maximum average intensity.
$0.1/kWh * 1 year / 12 * 50% * 12 hours/24 hours = $0.01826
The monthly value that a solar cell generates is $0.01826/watt month.
Assume a yearly interest rate of 5% (monthly is 0.4074%)
Since the cost of a solar cell is $1/watt, work out the number of months that a 1W solar cell must run for to generate $1.
PV = A/i (1-1/(1+i)^n)
PV = $1, A = $0.01826, i = 0.004074
n = 62 months = 5.17 years
The warranty on the reference cell is 10 years product workmanship, 25 years linear power.
So the value of the cell over its 25-year life span is $3.15/watt, with a cost of $1/watt.
This all neglects installation and grid-tie costs, but 50% average illumination per daylight-hour is conservative in most areas. Solar cells ARE worthwhile TODAY and WITHOUT government subsidies.
Efficiencies in solar cells are irrelevant. The only thing that matters is the $/Watt.
Reference Solar Cell: http://www.affordable-solar.com/store/solar-panels/CSI-CS6P-245P-245W-Solar-Panel-STD-Frame
And I was thinking of a mechanism to let me play Rick Astley clips without anyone being able to fight back.
While I'm with you on the question of performance, I'd also question the suitability of FPGAs, both as an "open source" platform and as a learning tool for anything below university level courses. FPGAs are about as closed as it gets when it comes to hardware platforms. The verilog/VHDL compilers are, generally, closed source. I know there's an open one or two, but Mentor Graphics, Xilinx, and Altera all ship closed source compilers. The place and route algorithms that are used are all patented and closed source. The architecture of the FPGA itself is patented and closed source.
So, what, exactly, is the point of using an "open" processor on an FPGA? To make everything harder to do?
If you're really looking for a Free/Open processor, then your best bet is to put your money where your mouth is and back opencores.org in producing an ASIC version of the OpenRISC 1000. Even then, it's still built on a proprietary process in a fab, where you can't even get the technology files required to layout the processor without signing an NDA.
Here's the sad truth of it. You're dealing with a proprietary process anywhere from the chip level down. You simply cannot complain about not having open silicon and be taken seriously. Here's how it works:
If you want to make a chip, the first thing you have to do is find a design. Now you can make your own, and open source it, or you can get a pre-made design. If you choose to use an open-source design, then you're good--so far--but you'll have a significant performance lag behind the proprietary options. This goes double for video processing, memory controllers, buses, etc., etc.
Next, you need to find a fab who will make the chips for you. Here's where it gets bad. Even 180nm fabs consider their processes to be trade secrets, so that you have to sign an NDA just to get a process description file from the fab--this means your layout is, perforce, closed source.
Even if you somehow find a fab which will allow you to open the technology file, the placement and routing software for VLSI design is all closed source and patented. This is because place & route is a HARD problem. NP Hard, in fact.
So what it comes down to is this: until the homecmos people get their process going, you're stuck with something proprietary at some level. So then how much proprietary stuff is tolerable?
The Raspberry Pi Foundation had the goal of being bringing computing in a low cost package for education. The tradeoffs required to use open designs for the processor are quite steep: e.g. it would be a colossal time investment to get Linux running on a non-standard--read: non-proprietary--SoC. Using some proprietary chips to get there seems reasonable, so long as the OS doesn't become proprietary. The GPU blob is unfortunate, but not unexpected, particularly if you want decent performance.
Two possibilities: 1) it has a voltage measurement, 2) it has a "fuel gauge" chip. For 1), It measures the voltage on the battery and compares that to a calibrated charge remaining vs. voltage curve. For 2), the chip reports the remaining capacity. Then divide by a sliding frame average of current consumption.
It divides the remaining file size by a sliding frame average of the download speed.
It records all the points of a given "touch" (the point of a touch is the vector average of the whole touch zone. Think of it as the centre of gravity). It then does linear regression on the points, giving it a line which matches the average. It compares the linear regression and the actual data to find an error level, and divides the line segment up into smaller segments until they are all within some acceptable error level. It then passes this information off to a topological processing system, which could be as simple as a set of table lookups, but more likely is just a bunch of vector arithmetic.
The point here is not whether any of these examples is accurate or not, it's that each of them is plausible. You can do an enormous amount in programming without calculus.
But is it necessary? I'd argue it's field and application dependent. It's remarkably necessary for numerical methods (both for error and complexity); but those only matter if you're writing your own algorithms and you can get a long way without understanding the error in a system. It's necessary for simulation software, and there are more examples. Anywhere that a system is critical, and connected to the physical world, I'd want them to know the calculus required to accurately model their interface.
Another point, is that Computer Algebra Systems are faster and more accurate at most calculus than you will ever be; however they still require you to set up the problem so that they can do the algebra, integration, and differentiation for you.
The internet will be largely unaffected: the amorphous network of routers which makes up the internet is specifically designed to route around damage like this. The internet will be fine. The web, on the other hand, could suffer a large loss of access to content.
In 2009, I did the same search. Back then, HP was still making table PCs. A stylus-based tablet PC with onenote is a really good system for taking notes. It makes your handwriting searchable and it handles diagrams more cleanly than any regular laptop solution.
Now, with tablet PCs on the way out--HP doesn't even make them, last I checked--you could try a galaxy note, or the Eee Slate, though both of those options leave you without a keyboard.
I know everyone loves Arduino, but I don't get it. If you think you can explain it to me, first read specs of Raspberry Pi($35 and runs Linux, has Ethernet, USB, etc.) and STM32F4DISCOVERY ($15, 210 DMIPS, FPU, 1MB of flash, 192kB of SRAM, has USB host/device/otg, onboard 3-axis accelerometer, mic, stereo DAC with speaker driver, JTAG debugger also built in).
With those two on the market, I don't see what Arduino is for...
If you're going that way, don't discount the XuLA-200.
If you're working on Linux, then just download gcc-arm-linux-gnueabi with your package manager, or build from source. If you're working on Windows, it's a little more complex; I have used OpenOCD.
You can order the STM32F4Discovery from Digikey, Mouser, Arrow, Avnet, Element14, Newark, etc. They're pretty widely available.
Olimex has some good references in the software section of their USB JTAG page.
Bus Pirate: good for looking at communication waveforms to debug problems. ($35)
Logic Sniffer: For more complex problems than the above, allows looking at parallel signals.($50)
Raspberry Pi: Tiny ARM11 700MHz CPU with powerful graphics, 10/100 ethernet, USB2.0 host (2 ports), HDMI out, and GPIO connector. Boots from SD card. ($35)
MSP430 Launchpad: inexpensive microcontroller development platform ($4.30)
STM32F4Discovery: Development platform for powerful microcontroller. ARM Cortex M4 with FPU, 168MHz (210DMIPS), Ethernet MAC, 2xUSB host/device/OTG, etc. etc. Board has stereo audio DAC with speaker driver, USB Micro-AB connector, 3-axis accelerometer, digital mic, 4 user LEDs, two pushbuttons (one is reset), and onboard debugger which is supported by open source tools. ($15) <--- take that, arduino
Sadly, this is not always possible. In many places, high tech industry has a specific exemption from overtime compensation laws, or provides the employer with the option of mandating time off in lieu.
I need a +1 cranky mod option.
You're correct, but even so, the statement
is complete bullshit. Superconducting MRIs produce 3T fields just fine. And check out the National High Magnetic Field Laboratory; they have the record field strength of 100.75T
First, there's Mondo Spider. The same guys are also working on Titanoboa, which is a ridable robot snake.
And both of those are electric. No propane forklift engines, which makes them much quieter.
It'll likely be manufactured under heavy vacuum, then sealed, and never exposed to any O2.
Yes, I am incapable of editing my own comment prior to posting. That should have been:
I've noticed that too. I can never figure out why daytime soap operas look so much different than prime-time shows. Is it the framerate that does it? I was beginning to think that the crappy dialogue and crappy plot were becoming visible.
I've noticed that too. I can never figure out why daytime soap operas look so much different than prime-time shows. Is it the framerate that does it? I was beginning to think that the , not just the crappy dialogue and crappy plot were becoming visible.
Apple's speciality is in seamless UI's. While people seem to like this for mobile phones and tablets, it's not the right solution for a car. Cars require tactile interfaces so that they can be navigated using touch while the driver keeps his eyes on the road. Apple has the potential to bypass this concern using Siri, but that comes with additional problems.
Siri and the maps used by Apple for GPS navigation are both delivered via cellular connection, which would imply that a driver would lose all voice recognition while driving outside the range of cellphone towers--e.g. through the mountains. The GPS navigation is a similar problem. Since the navigation data is delivered via cellular data, you would lose navigation in the mountains.
Much as I hate to admit it, I would prefer the Microsoft self-contained automotive voice recognition system to getting Apple iCars. Ford has demonstrated those in the past. I've also seen a reasonable implementation (non-Microsoft) on an Acura about five years ago. I'm not sure that this is a market where we should care about fragmentation. Just don't buy a car with a UI you don't like.
One in five Apple Macs is infected with malware, according to Sophos. But most of that is harmless to the Mac... it is Windows malware ready to be transmitted to the Windows population. OnlyOne in 36 Macs has OS X specific infections.
FTFY. A 2.8% infection rate is pretty significant.
To be fair, TFA is titled "Aviva Investors Accidentally Fires Entire Company Via Email [FULL TEXT]." But, TFA links to another article as its source. But that source isn't the origin of the story either. It came from Reuters. Honestly, if you're submitting a story to a news aggregator like Slashdot, take the time to send a link for the ORIGINAL story...
This just in! Emergency responders must now be certified to work near nuclear equipment!
Put two of these cards next to eachother, and they won't read. Put them in an aluminium card case, and they won't read. Move more than about 5 cm away from the card and it won't read.
There are numerous ways around this problem. It shouldn't stop people from using the technology.