Author

Topic: [BitcoinMax.com] Closed - page 112. (Read 190165 times)

legendary
Activity: 1022
Merit: 1000
BitMinter
June 11, 2012, 05:37:08 PM
Thank you for your work.
hero member
Activity: 812
Merit: 1000
June 11, 2012, 05:20:47 PM
this week's payouts are done.

please login and help check for accuracy by viewing the earnings report.

thanks everyone!
hero member
Activity: 504
Merit: 500
Scattering my bits around the net since 1980
June 11, 2012, 06:39:09 AM
Will you be lowering your minimum deposit requirement later on? Once you have things more automated?

Being a small miner, getting 10btc at one time, will take months Smiley

-- Smoov
yeah the plan was always to drop it *after* i got most of the big tasks automated.

micro deposits are being auto-detected now, but there are still a few more things i'd like to automate before dropping the minimum account size from 10 down to 1.
Good enough, will be waiting for that. Smiley

And, thanks for the offer, bitdragon, but to keep things simplest on my own end, I'll just wait for payb.tc to drop the minimum. Will give me time to get a whole coin together in my wallet, I got all my coin scattered around in different exchanges and investments right now Smiley

-- Smoov
hero member
Activity: 812
Merit: 1000
June 11, 2012, 06:34:12 AM
Will you be lowering your minimum deposit requirement later on? Once you have things more automated?

Being a small miner, getting 10btc at one time, will take months Smiley

-- Smoov


yeah the plan was always to drop it *after* i got most of the big tasks automated.

micro deposits are being auto-detected now, but there are still a few more things i'd like to automate before dropping the minimum account size from 10 down to 1.
hero member
Activity: 609
Merit: 501
peace
June 11, 2012, 06:18:23 AM
Will you be lowering your minimum deposit requirement later on? Once you have things more automated?

Being a small miner, getting 10btc at one time, will take months Smiley

-- Smoov


I can add them to my account, ideally put as an automatic reinvest, for 6.9% per week.
I will take whole bitcoins. That is adding one more intermediary but would gladly help you out and do my best.
hero member
Activity: 504
Merit: 500
Scattering my bits around the net since 1980
June 11, 2012, 05:56:00 AM
Will you be lowering your minimum deposit requirement later on? Once you have things more automated?

Being a small miner, getting 10btc at one time, will take months Smiley

-- Smoov
hero member
Activity: 812
Merit: 1000
June 11, 2012, 05:00:28 AM
just a reminder:

anyone wanting to change their re-invest settings, make sure you do so before 21:00 (12 hours from now).
sr. member
Activity: 322
Merit: 250
We are bees, and we hate you.
June 11, 2012, 01:15:37 AM
I just logged in to see that. Thank you!
hero member
Activity: 812
Merit: 1000
June 11, 2012, 01:07:16 AM
the whole thing is a side effect of php's crappy float handling combined with the way blockchain.info outputs numbers in 'base units' instead of decimals... making people like me manipulate them as strings instead* and in doing so, did some lazy check to see if it's at least 8 chars long or something.

i'll get around to fixing it eventually, but for now it's easier just to have a policy of 'no interest on deposits less than 1 btc', and i'll refund or do something about them later when i run out of more important things to take care of.

*i don't trust php to be able to divide by 100,000,000 properly so i did something whack like this:
Code:
$tx_amount = substr($amount, 0, $length - 8) . '.' . substr($amount, $length - 8);

that's where the '1 BTC or above' necessity kicks in.

...definitely room for improvement.
You might want to look at the BC Math functions



thanks, it's all fixed up and detecting micro deposits now.

that includes your two, electricbees.
hero member
Activity: 812
Merit: 1000
June 10, 2012, 07:56:29 PM
also a reminder to everyone:

please do not send ANY deposits less than 1 BTC.

they don't get picked up automatically by my script, and are a hassle to include manually, so they'll be ignored at the moment, until i get around to updating the code again.

thanks.


Oof. Now I read that, after sending in two.  Tongue
I suppose this means waiting until an updated code for the deposits to make any movement?

i'll fix up your two manually tomorrow when i do the payouts.
sr. member
Activity: 322
Merit: 250
We are bees, and we hate you.
June 10, 2012, 05:55:40 PM
also a reminder to everyone:

please do not send ANY deposits less than 1 BTC.

they don't get picked up automatically by my script, and are a hassle to include manually, so they'll be ignored at the moment, until i get around to updating the code again.

thanks.


Oof. Now I read that, after sending in two.  Tongue
I suppose this means waiting until an updated code for the deposits to make any movement?
hero member
Activity: 576
Merit: 514
June 10, 2012, 12:26:19 PM
the whole thing is a side effect of php's crappy float handling combined with the way blockchain.info outputs numbers in 'base units' instead of decimals... making people like me manipulate them as strings instead* and in doing so, did some lazy check to see if it's at least 8 chars long or something.

i'll get around to fixing it eventually, but for now it's easier just to have a policy of 'no interest on deposits less than 1 btc', and i'll refund or do something about them later when i run out of more important things to take care of.

*i don't trust php to be able to divide by 100,000,000 properly so i did something whack like this:
Code:
$tx_amount = substr($amount, 0, $length - 8) . '.' . substr($amount, $length - 8);

that's where the '1 BTC or above' necessity kicks in.

...definitely room for improvement.
You might want to look at the BC Math functions

hero member
Activity: 560
Merit: 500
I am the one who knocks
June 10, 2012, 11:13:57 AM
Honestly you are doing us a favor, we should be making your life difficult.
Typo or freudian slip?

HAHA!!!  Damn iPhone keyboard!  of course we should not be making payb.tc's life difficuilt.
hero member
Activity: 812
Merit: 1000
June 10, 2012, 11:13:05 AM
also a reminder to everyone:

please do not send ANY deposits less than 1 BTC.

they don't get picked up automatically by my script, and are a hassle to include manually, so they'll be ignored at the moment, until i get around to updating the code again.

thanks.



I would suggest saying that you will not include them manually and thy will be returned to sender sans 0.005 TX fee, or considered a donation if below that amount.   Or just a donation period.

Honestly you are doing us a favor, we should be making your life difficult.

the whole thing is a side effect of php's crappy float handling combined with the way blockchain.info outputs numbers in 'base units' instead of decimals... making people like me manipulate them as strings instead* and in doing so, did some lazy check to see if it's at least 8 chars long or something.

i'll get around to fixing it eventually, but for now it's easier just to have a policy of 'no interest on deposits less than 1 btc', and i'll refund or do something about them later when i run out of more important things to take care of.

*i don't trust php to be able to divide by 100,000,000 properly so i did something whack like this:
Code:
$tx_amount = substr($amount, 0, $length - 8) . '.' . substr($amount, $length - 8);

that's where the '1 BTC or above' necessity kicks in.

...definitely room for improvement.
hero member
Activity: 576
Merit: 514
June 10, 2012, 10:50:25 AM
Honestly you are doing us a favor, we should be making your life difficult.
Typo or freudian slip?
hero member
Activity: 560
Merit: 500
I am the one who knocks
June 10, 2012, 10:34:32 AM
also a reminder to everyone:

please do not send ANY deposits less than 1 BTC.

they don't get picked up automatically by my script, and are a hassle to include manually, so they'll be ignored at the moment, until i get around to updating the code again.

thanks.



I would suggest saying that you will not include them manually and thy will be returned to sender sans 0.005 TX fee, or considered a donation if below that amount.   Or just a donation period.

Honestly you are doing us a favor, we should be making your life difficult.
hero member
Activity: 812
Merit: 1000
June 10, 2012, 09:28:26 AM
also a reminder to everyone:

please do not send ANY deposits less than 1 BTC.

they don't get picked up automatically by my script, and are a hassle to include manually, so they'll be ignored at the moment, until i get around to updating the code again.


thanks.

edited this post because deposits less than 1 btc are now being detected properly.

hero member
Activity: 812
Merit: 1000
June 10, 2012, 09:13:15 AM
Hey mate,

I've just noticed there's a slight discrepancy between the actual earnings and the calculated earnings that were paid out for the first week. It's only 0.01BTC, so not a big deal, just wondering if you'd noticed. From what I can tell the calculated earnings is the correct figure.

Cheers



hi fordy, which week are you talking about specifically? how can you see the calculated earnings for the first week? I thought I only put the expected (next week's earnings in the report).

in any case the first week was done totally manually, and any discrepancy would be based on the time that i saw the tx come in, and the time that blockchain.info reports as recorded against the tx. sometimes those times were slightly different. from now on, it always goes off the recorded tx time as reported by blockchain.info.


I'm talking about the Week Ending 2012-06-04 21:00:00, which was the first week. On the earnings reports page you've also added the payment calculations for previous weeks, and I just noticed the discrepancy between the amount that had been calculated as interest, and the payment amount for the first week on the account history page.

Like I said though, 0.01 isn't a big deal, and now that every-things automated there shouldn't be anything to worry about.

Cheers for the service Smiley

oh, i thought i left off those previous weeks.

i had left those reports off initially because i know they are slightly different, having calculated the first week manually (using my own clock when i saw the tx come in).

sometimes for example i saw a tx come in at 11:01 but blockchain.info reports it as 10:59.

since last monday though everything is based off actual times recorded in the blockchain.
hero member
Activity: 812
Merit: 1000
June 10, 2012, 08:52:58 AM
Hey mate,

I've just noticed there's a slight discrepancy between the actual earnings and the calculated earnings that were paid out for the first week. It's only 0.01BTC, so not a big deal, just wondering if you'd noticed. From what I can tell the calculated earnings is the correct figure.

Cheers



hi fordy, which week are you talking about specifically? how can you see the calculated earnings for the first week? I thought I only put the expected (next week's earnings in the report).

in any case the first week was done totally manually, and any discrepancy would be based on the time that i saw the tx come in, and the time that blockchain.info reports as recorded against the tx. sometimes those times were slightly different. from now on, it always goes off the recorded tx time as reported by blockchain.info.
hero member
Activity: 812
Merit: 1000
June 10, 2012, 08:50:27 AM
while you can withdraw principal at any time, interest is only calculated and paid once per week. so that means if you deposit on a wednesday and withdraw it on a friday, the interest for those 48 hours won't be credited to (or withdrawable from) your account until the folllowing monday, after 21:00.

I'm not sure I understand this right. If I deposit some BTC on Wednesday and withdraw it on Friday, will get interest for the 48 hours the BTC was in the account, but I will get it the following Monday, after 21?

What's your opinion on emptying the account every week, and putting some BTC back in the account twice a week?

that's correct, i'm only doing the payouts once per week, no matter when people deposit/withdraw.

i don't see the point of emptying and depositing again. if you did that, you'd just be missing out on interest while the deposits are waiting to confirm again.

Jump to: