Bitcoin Forum
May 09, 2024, 06:13:22 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 [106] 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 ... 538 »
  Print  
Author Topic: [ANN] profit switching auto-exchanging pool - www.middlecoin.com  (Read 829874 times)
glon
Full Member
***
Offline Offline

Activity: 181
Merit: 100


View Profile
December 05, 2013, 09:03:13 PM
 #2101

Guys, what is the average BTC/1MH daily profit on Middlecoin, nowadays? Hashcows has ~0.17BTC/MH ... is Middlecoin better?

Thanks!
1715278402
Hero Member
*
Offline Offline

Posts: 1715278402

View Profile Personal Message (Offline)

Ignore
1715278402
Reply with quote  #2

1715278402
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715278402
Hero Member
*
Offline Offline

Posts: 1715278402

View Profile Personal Message (Offline)

Ignore
1715278402
Reply with quote  #2

1715278402
Report to moderator
Damnsammit
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250



View Profile
December 05, 2013, 09:22:02 PM
 #2102

Guys, what is the average BTC/1MH daily profit on Middlecoin, nowadays? Hashcows has ~0.17BTC/MH ... is Middlecoin better?

Thanks!

Do you mean 0.017BTC/MH?

I can hardly believe that they are getting .17/MH...

But maybe I will try them out since I haven't been able to get Middlecoin working lately... only stupid LTC mining lol
glon
Full Member
***
Offline Offline

Activity: 181
Merit: 100


View Profile
December 05, 2013, 09:56:55 PM
 #2103

Guys, what is the average BTC/1MH daily profit on Middlecoin, nowadays? Hashcows has ~0.17BTC/MH ... is Middlecoin better?

Thanks!

Do you mean 0.017BTC/MH?


Yes:

https://hashco.ws/profits.html
marshcat
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
December 05, 2013, 10:08:06 PM
 #2104

The pool owner has cleared a cool 77 bitcoins from running the pool so far. Even if it costs $1000 a month to run, that's still a whole lot of money in a few months. Totally deserved, though; it's a great service.
ibfr33k
Member
**
Offline Offline

Activity: 75
Merit: 10


View Profile
December 05, 2013, 10:49:58 PM
 #2105

Guys, what is the average BTC/1MH daily profit on Middlecoin, nowadays? Hashcows has ~0.17BTC/MH ... is Middlecoin better?

Thanks!

A little bit.  But every little counts Smiley

http://middlecoin.com/profitgraph.html

I'm a noob just starting, all donations are welcome.  13DXKRXQncUnWAFtemSwNH7boRZfEfsg5a
h2odysee (OP)
Full Member
***
Offline Offline

Activity: 238
Merit: 119


View Profile WWW
December 05, 2013, 11:45:48 PM
 #2106

If possible, could you edit the template that prints:
Code:
<td>address</td> 
to print:
Code:
<td id="address">address</td>
so I can go to http://middlecoin.com/#address
?

Done.

In addition, could you also set the table head in <thead>? It is currently listed in the <tbody>.

Ok, I added thead and tbody tags. I'm not sure what that did though. It looks the same in chrome.

http://middlecoin.com - profit-switching, auto-exchanging scrypt pool that pays out in BTC
TurdHurdur
Full Member
***
Offline Offline

Activity: 216
Merit: 100


View Profile
December 06, 2013, 12:40:54 AM
 #2107

If possible, could you edit the template that prints:
Code:
<td>address</td> 
to print:
Code:
<td id="address">address</td>
so I can go to http://middlecoin.com/#address
?

Done.

Keep up the good work. Also, your pool got me back into some mining.
LightRider
Legendary
*
Offline Offline

Activity: 1500
Merit: 1021


I advocate the Zeitgeist Movement & Venus Project.


View Profile WWW
December 06, 2013, 07:29:10 AM
 #2108

Thanks for running this pool. I've also been away from mining for a long time but this is a great idea.

Bitcoin combines money, the wrongest thing in the world, with software, the easiest thing in the world to get wrong.
Visit www.thevenusproject.com and www.theZeitgeistMovement.com.
KamiN
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
December 06, 2013, 12:01:35 PM
 #2109

If possible, could you edit the template that prints:
Code:
<td>address</td> 
to print:
Code:
<td id="address">address</td>
so I can go to http://middlecoin.com/#address
?

Done.

In addition, could you also set the table head in <thead>? It is currently listed in the <tbody>.

Ok, I added thead and tbody tags. I'm not sure what that did though. It looks the same in chrome.

Hi,

I wanted a way to search addresses. This snippet will give the realtime search functionality. That's why I wanted thead separated, otherwise when filtering the header disappears as well Smiley
It'll work with Tampermonkey - added as a gist here as well.

I might add other functions later.
Code:
// ==UserScript==
// @name Middlecoin utilities
// @namespace http://middlecoin.com/
// @version 0.1
// @description Some extras for middlecoin, i.e. table search filter
// @match http://middlecoin.com/
// @copyright 2012+, KamiNuvini
// @run-at document-end
// @require http://code.jquery.com/jquery-2.0.3.min.js
// ==/UserScript==
 
// Realtime address search
$('table').before('<div id="searchbox"><b>Search address: </b><input id="search" type="search"></div>');
 
// Search snippet, thanks to dfsq at StackOverflow - http://stackoverflow.com/questions/9127498/how-to-perform-a-real-time-search-and-filter-on-a-html-table
var $rows = $('table tbody tr');
 
$('#search').keyup(function() {
    var val = $.trim($(this).val()).replace(/ +/g, ' ').toLowerCase();
 
    $rows.show().filter(function() {
        var text = $(this).text().replace(/\s+/g, ' ').toLowerCase();
        return !~text.indexOf(val);
    }).hide();
});
// End of realtime address search
curioushippie
Newbie
*
Offline Offline

Activity: 21
Merit: 0


View Profile
December 06, 2013, 04:48:49 PM
 #2110

I mined for a few hours yesterday to try this out, and it shows on the site 0.00113072 paid out to my address 1NQKqxXXDmEgVtecjczM6TTtb17DrnC4Tq

I haven't received the BTC, and nothing shows up on blockchain.info either, any ideas why this might be?
KamiN
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
December 06, 2013, 05:18:22 PM
 #2111

I mined for a few hours yesterday to try this out, and it shows on the site 0.00113072 paid out to my address 1NQKqxXXDmEgVtecjczM6TTtb17DrnC4Tq

I haven't received the BTC, and nothing shows up on blockchain.info either, any ideas why this might be?


On the site they don't show up as "paid out" yet. The payout (for me, at least) is around 4AM, Amsterdam time.
BitCoiner2012
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250



View Profile
December 06, 2013, 05:25:30 PM
 #2112

Pool has a very simple address, any fathomable reason I can't connect?

BTC Long.
Damnsammit
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250



View Profile
December 06, 2013, 06:08:22 PM
 #2113

Pool has a very simple address, any fathomable reason I can't connect?

I have the same issue.  I was running it fine for a few weeks and then I can no longer connect.  Going to troubleshoot it some more after Christmas when I get my new toys Cheesy

Until then, just mining LTC
BitCoiner2012
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250



View Profile
December 06, 2013, 06:43:49 PM
 #2114

Pool has a very simple address, any fathomable reason I can't connect?

I have the same issue.  I was running it fine for a few weeks and then I can no longer connect.  Going to troubleshoot it some more after Christmas when I get my new toys Cheesy

Until then, just mining LTC
I'm actually having the same problem on weminecoins. I was able to connect most of the day, the suddenly I no longer registered hashes. and still can't. However I can connect to that pool, and it seems to hash, but nothing registers.

BTC Long.
rallasnackbar
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
December 06, 2013, 06:47:25 PM
 #2115


Is that normal for this pool, with a speed of 400 KH/s

diff is 512 so if this was baseball your card is getting elephants thrown at it.  Every couple minutes you actually manage to hit one back and those accepted shares count for more

So what is the minimum requirements of MH/s for using this pool?

Should have gotten my new cards today, but they were delayed due to bad weather.
rocks
Legendary
*
Offline Offline

Activity: 1153
Merit: 1000


View Profile
December 06, 2013, 08:37:14 PM
 #2116

Holy cow!

It seems every decent AMD card is sold out EVERYWHERE. I could not find a 7950, 290, 290x or anything else remotely similar anywhere. Prices on ebay are absurd.

After mining for a little bit with my measily 5870 in a desktop, I decided today it was time to build a proper 4-5 GPU rig. Looks like that is not happening. It looks that I could also sell the 5870 on ebay for more than I paid 2 years ago, but it's too profitable to let go.
STT
Legendary
*
Offline Offline

Activity: 3906
Merit: 1414


Leading Crypto Sports Betting & Casino Platform


View Profile WWW
December 06, 2013, 08:55:14 PM
 #2117



So what is the minimum requirements of MH/s for using this pool?

depends on the coin.   If the pool mines LTC then you are fine on any card, the blocks on that are really slow so diff doesnt matter.
If you find we are mining a new coin type with a new block is reported every couple of seconds and your accepted shares stays zero for ten minutes then I'd say you need to be mining over 1000kh and see if that works out better.  The alt coin market is more mature now ?
  Also ping can be relevant and your location relative to available servers, all depends.    Keep an eye on the maths

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
Damnsammit
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250



View Profile
December 06, 2013, 09:30:58 PM
 #2118

Holy cow!

It seems every decent AMD card is sold out EVERYWHERE. I could not find a 7950, 290, 290x or anything else remotely similar anywhere. Prices on ebay are absurd.

After mining for a little bit with my measily 5870 in a desktop, I decided today it was time to build a proper 4-5 GPU rig. Looks like that is not happening. It looks that I could also sell the 5870 on ebay for more than I paid 2 years ago, but it's too profitable to let go.

Yeah, GPUs are selling like crazy.

I need to buy some stock in AMD.

NeonRonin
Newbie
*
Offline Offline

Activity: 31
Merit: 0



View Profile WWW
December 06, 2013, 10:27:56 PM
 #2119

Holy cow!

It seems every decent AMD card is sold out EVERYWHERE. I could not find a 7950, 290, 290x or anything else remotely similar anywhere. Prices on ebay are absurd.

After mining for a little bit with my measily 5870 in a desktop, I decided today it was time to build a proper 4-5 GPU rig. Looks like that is not happening. It looks that I could also sell the 5870 on ebay for more than I paid 2 years ago, but it's too profitable to let go.

Everything I have read says the 7950s are still the best price / power / performance.  That being said, they're next to impossible to find at decent prices and even the couple I have had to RMA to Gigabyte recently are coming back as 7970's now.
nachius
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500


View Profile
December 06, 2013, 10:38:45 PM
 #2120

For the past 2 days middlecoin seems to be stealing, not reporting, or rejecting 30-40% of my hash rate that I have had over the past.  I have about 1.5-1.65 MHash and its been only showing 800-900KHash for 2 days which has typically reported 1.2-1.4MHash and I checked my rig everything is running fine and reporting normal rates with standard small amount of HW/Rejections.  Is there something going on like this for anyone else?  Or a known issue going on with the pool?
Pages: « 1 ... 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 [106] 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 ... 538 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!