|
bit_wizard
|
|
September 20, 2012, 07:16:29 PM |
|
Thanks i'll check it out.
|
|
|
|
FactoredPrimes
Newbie
Offline
Activity: 14
Merit: 0
|
|
September 20, 2012, 09:35:23 PM |
|
Interesting. Is there anywhere I could try this out? For perspective, how many bitcoins per week would ~120 khash/s produce?
|
|
|
|
Gabi
Legendary
Offline
Activity: 1148
Merit: 1008
If you want to walk on water, get out of the boat
|
|
September 20, 2012, 09:59:52 PM |
|
Interesting. Is there anywhere I could try this out? For perspective, how many bitcoins per week would ~120 khash/s produce?
Lol If you mine 24/24 it would make 0.02$ per month Wich is 0.0016 bitcoin per month
|
|
|
|
RoboCoder
|
|
September 20, 2012, 10:19:32 PM |
|
Whats the point??? Waste of coding effort if you ask me (which of course you didn't - but hey)
|
|
|
|
Gabi
Legendary
Offline
Activity: 1148
Merit: 1008
If you want to walk on water, get out of the boat
|
|
September 20, 2012, 10:44:25 PM |
|
Whats the point??? Waste of coding effort if you ask me (which of course you didn't - but hey)
this
|
|
|
|
caffeinewriter
|
|
September 20, 2012, 11:16:53 PM |
|
Whats the point??? Waste of coding effort if you ask me (which of course you didn't - but hey)
this Using this to mine Bitcoins is like using a single drop of water to put out a forest fire. Good luck with that XD
|
|
|
|
helloworld
|
|
September 20, 2012, 11:32:29 PM |
|
Maybe someone can modify it to mine Litecoins, that might be like putting out a forest fire with a whole cup of water instead.
|
|
|
|
2GOOD
|
|
September 20, 2012, 11:40:40 PM |
|
Is there a way to use html5 and OpenCL to mine coins with the GPU
|
|
|
|
caffeinewriter
|
|
September 21, 2012, 03:07:42 AM |
|
Is there a way to use html5 and OpenCL to mine coins with the GPU If you're going to do that, you might as well just download a miner.
|
|
|
|
FactoredPrimes
Newbie
Offline
Activity: 14
Merit: 0
|
|
September 21, 2012, 03:28:43 AM |
|
It is a good proof of concept, while not efficient it opens the door to massive amounts of people putting there otherwise idle cpus to use.
|
|
|
|
Gabi
Legendary
Offline
Activity: 1148
Merit: 1008
If you want to walk on water, get out of the boat
|
|
September 21, 2012, 08:48:08 AM |
|
It is a good proof of concept, while not efficient it opens the door to massive amounts of people putting there otherwise idle cpus to use.
CPU better stay idle than to waste energy for this thing. 1 month of mining for $2cent?? And fun fact: in the next months ASIC will arrives. Expect difficulty to skyrocket, like 10 times at least. Then with this system you will need 10 months of mining to get $2cent lol
|
|
|
|
FactoredPrimes
Newbie
Offline
Activity: 14
Merit: 0
|
|
September 21, 2012, 04:07:06 PM |
|
It is a good proof of concept, while not efficient it opens the door to massive amounts of people putting there otherwise idle cpus to use.
CPU better stay idle than to waste energy for this thing. 1 month of mining for $2cent?? And fun fact: in the next months ASIC will arrives. Expect difficulty to skyrocket, like 10 times at least. Then with this system you will need 10 months of mining to get $2cent lol I don't know, if youtube snuck that into their page I bet they would make a good amount of coin.
|
|
|
|
caffeinewriter
|
|
September 21, 2012, 04:09:05 PM |
|
It is a good proof of concept, while not efficient it opens the door to massive amounts of people putting there otherwise idle cpus to use.
CPU better stay idle than to waste energy for this thing. 1 month of mining for $2cent?? And fun fact: in the next months ASIC will arrives. Expect difficulty to skyrocket, like 10 times at least. Then with this system you will need 10 months of mining to get $2cent lol I don't know, if youtube snuck that into their page I bet they would make a good amount of coin. Because it would be distributed computing. The same concept behind mining pools. However, I do agree that it is a good PoC
|
|
|
|
malevolent
can into space
Legendary
Offline
Activity: 3472
Merit: 1724
|
|
September 21, 2012, 04:16:12 PM |
|
|
Signature space available for rent.
|
|
|
caffeinewriter
|
|
September 21, 2012, 05:32:44 PM Last edit: September 21, 2012, 08:56:12 PM by caffeinewriter |
|
Let's do some math. BTC0.0016 per month 60*60*24*30=2,592,000 seconds in a month. BTC0.0016/2592000= BTC0.000000000617283950 per second Visitors to YouTube per month = 800,000,000 = 26,666,667 users per day [1]Average time spent on YouTube per month = 4,000,000,000/800,000,000= 5 hours per month = 18,000 seconds per month = 600 seconds per day [1]BTC0.000000000617283950*26,666,667*600= BTC9.87654332345679 PER DAYSo yeah, that's a lot for a non-WebCL enabled Flash-based Miner. Tried to make a calculator, but failed. So if anyone wants to play around with the code I have so far and host it on PasteHTML, I'll be very happy. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Flash Player Bitcoin Miner Calculator</title> <!--Also Posted to DreamInCode for help, username borninlyoko, verification for moderator modi123_1--> <script type="text/javascript"> calculate(){ var users = document.getElementById('musers').value; var timespent = document.getElementById('timespent').value; var btcps = 0.000000000617283950; var timeday = timespent/30; var userday = users/30; var calcresult = userday*timeday*btcps + 'BTC'; document.getElementById('result').innerHTML = calcresult; } </script> </head> <body> <form action="" id="flashminer"> <label for="musers">Monthly Users</label><input type="text" id="musers"><br> <label for="timespent">Monthly Time Spent (in seconds)</label><input type="text" id="timespent"><br> <input type="button" value="Calculate" onClick="calculate()"><br> <input type="text" id="result" disabled="disabled" value="0.00BTC"> </form> </body> </html>
Sources: [1] http://www.youtube.com/t/press_statistics
|
|
|
|
RoboCoder
|
|
September 21, 2012, 05:34:03 PM |
|
Let's do some math. BTC0.0016 per month 60*60*24*30=2,592,000 seconds in a month.
BTC0.0016/2592000=BTC0.000000000617283950 per second
Visitors to YouTube per month = 800,000,000 = 26,666,667 users per day[1]
Average time spent on YouTube per month = 4,000,000,000/800,000,000= 5 hours per month = 18,000 seconds per month = 600 seconds per day[1]
BTC0.000000000617283950*26,666,667*600=BTC9.87654332345679 PER DAY
So yeah, that's a lot for a non-WebCL enabled Flash-based Miner.
Lot of free time on your hands???
|
|
|
|
caffeinewriter
|
|
September 21, 2012, 05:36:35 PM |
|
Let's do some math. BTC0.0016 per month 60*60*24*30=2,592,000 seconds in a month.
BTC0.0016/2592000=BTC0.000000000617283950 per second
Visitors to YouTube per month = 800,000,000 = 26,666,667 users per day[1]
Average time spent on YouTube per month = 4,000,000,000/800,000,000= 5 hours per month = 18,000 seconds per month = 600 seconds per day[1]
BTC0.000000000617283950*26,666,667*600=BTC9.87654332345679 PER DAY
So yeah, that's a lot for a non-WebCL enabled Flash-based Miner.
Lot of free time on your hands??? Just some weird obsessive desire to solve any problem put before me. I only had an hour long study hall And I was done with my school work
|
|
|
|
allthingsluxury
Legendary
Offline
Activity: 1540
Merit: 1029
|
|
September 21, 2012, 05:43:06 PM |
|
Most definitely interesting, but yah it would have to be a really really big media company like youtube or the like to make it useful.
|
Gold & Silver Financial News: Silver Liberation Army, Gold & Silver News, Geopolitical & Financial News, Jim Rickards Blog, Marc Faber Blog, Jim Rogers Blog, Peter Schiff Blog, David Morgan Blog, James Turk Blog, Eric Sprott Blog, Gerald Celente Blog
|
|
|
caffeinewriter
|
|
September 21, 2012, 05:52:29 PM |
|
Now imagine if ALL Google services (YouTube, Gmail, Search, etc.) implemented it! That would be a massive amount of BTC
|
|
|
|
|