Search content
Sort by

Showing 20 of 28 results by peedee
Post
Topic
Board Currency exchange
Re: Buying: Pokerstars$USD
by
peedee
on 05/07/2011, 10:45:07 UTC
I have sent a PM to the TS.

If there are more people wanting to exchange, sent me a PM I am buying Bitcoins and in exchange can pay with Poker $.
Post
Topic
Board Pools
Re: $60 Bounty inside! Newbie friendly Miningpool? Join ABCBitcoin.net!
by
peedee
on 27/06/2011, 19:12:53 UTC
BUMP, please post your ABCBitcoin username here when you are competing for the $ Bounty.
Post
Topic
Board Pools
Re: $60 Bounty inside! Newbie friendly Miningpool? Join ABCBitcoin.net!
by
peedee
on 27/06/2011, 18:29:19 UTC
Added a $60 bounty for the first 3 blocks.
Post
Topic
Board Nederlands (Dutch)
Re: Nederlands!
by
peedee
on 26/06/2011, 11:32:28 UTC
Ik ben een Nederlandse Bitcoin Mining Pool begonnen op http://www.abcbitcoin.net en heb dringend MHs/s nodig Smiley. Wie komen er helpen?
Post
Topic
Board Bitcoin Discussion
Re: ABC Bitcoin currency case sparks business security fears
by
peedee
on 26/06/2011, 00:24:15 UTC
Lol, I was actually shocked when I read your title as I am hosting a Mining pool on ABCBitcoin.net since today Smiley.

But yes, the bad news seems to pile up lately...
Post
Topic
Board Pools
Re: Looking for a newbie friendly Miningpool? Join ABCBitcoin.net!
by
peedee
on 25/06/2011, 20:25:11 UTC
Is the 1% fee on all income or on the 50 BTC only?
Do you distribute transaction fees amongst miners?
Which payout distribution model do you use? (Proportional, Pay per share, Scored with holy-fire's method or other)

Also: What does this strange graph with dates at the end of September mean on your main page?

Allright, I have just re-launched the site as it needed some extra work.

The payout is Proportional.
The graph was one of the things that was fixed. You need JS though to be able to view the graph. It will show the GHs of the last 15 minutes on a 2 minute level.

Post
Topic
Board Beginners & Help
Re: I am a girl who just heard of Bitcoins and came here - Any other gals here?
by
peedee
on 25/06/2011, 09:59:27 UTC
Pictures or it didnt happen.
Post
Topic
Board Project Development
Re: [v4.1.2] Mining Farm ::: [Bug testing Until 1AM central time]
by
peedee
on 24/06/2011, 22:58:26 UTC
There are two other stats that have been broken with 4.1.2 :

accountDetails.php :

Estimated Reward this Round

header.php :

Estimated
 

Huh


...
Post
Topic
Board Project Development
Re: [v4.1.2] Mining Farm ::: [Bug testing Until 1AM central time]
by
peedee
on 24/06/2011, 20:25:24 UTC
Hi all, i just installed the actual Farm 4.1.2 everything works good exept this:

When i should type in the auth code i get wired errors above the code field but to add the code provided in the mail works

then when i login i see in on top left, aswelll on the statistics page and in the percentage field in the administrator section

Warning: mysql_fetch_object(): supplied argument is not a valid MySQL result resource in .../req/functions.php on line 340

guess there is a little mess in the sql file

Smiley


Lol. thats the missing column I just pointed out. It tries to get the serverfeepercentage Smiley

Try :

ALTER TABLE websiteSettings ADD  serverFeePercentage varchar(20) NOT NULL AFTER browserTitle;

Then add a percentage and see if it works.


Post
Topic
Board Project Development
Re: [v4.1.2] Mining Farm ::: [Bug testing Until 1AM central time]
by
peedee
on 24/06/2011, 20:00:11 UTC
Xenland : in the 4.1.2 version the serverFeepercentage column was removed from the SQL script, is that on purpose ?

Post
Topic
Board Project Development
Re: [v4.1.1] Mining Farm ::: Annoying Bugs Sqwished!
by
peedee
on 23/06/2011, 19:39:13 UTC
Estimated Bitcoins does not seem to work for me ?
Post
Topic
Board Project Development
Re: [v4.1.1] Mining Farm ::: Annoying Bugs Sqwished!
by
peedee
on 23/06/2011, 16:43:28 UTC
Can you update the changelog ?
Post
Topic
Board Project Development
Re: [v4.1] Mining Farm #2 | Help donate hashes [Testnet] http://173.212.217.202/
by
peedee
on 23/06/2011, 11:20:04 UTC
Its actually like this :

$fiveMinutesAgo = time();
$fiveMinutesAgo -= 60*5;

$workers = mysql_query("SELECT count(*) FROM `stats_userMHashHistory` WHERE `timestamp` >= $fiveMinutesAgo AND `mhashes` > 0");

// Verify it worked
if (!$workers) echo mysql_error();

$nrworkers = mysql_fetch_array($workers);


Then where ever you want to display the amount of workers :

echo "$nrworkers[0]"


Btw the stats_userMHashHistory table is filling up pretty quickly, especially if the number of workers that have been created increases, I think this will be become a scalability bottleneck.

Just don't use MySQL then. CouchDB or another database type optimized for large databases.

What about purging / summarizing? Some stats don't need to be available up to the lowest timeslice level forever.

For example :
Keep timeslice level data for 1 week
Keep hour data for 1 month
Keep day data for 3 months
Keep month data for 5 years

Can make nice graphs out of that and save A LOT of space. A bottleneck will be reached someday, keep adding resources gets expensive / risky so it's better to start summarizing while it's still the early stage than to find out you'll need hour long running jobs to purge / summarize your data later.

Or am I missing something and do we need to keep everything we collect ?
Post
Topic
Board Project Development
Re: [v4.1] Mining Farm #2 | Help donate hashes [Testnet] http://173.212.217.202/
by
peedee
on 22/06/2011, 22:47:35 UTC
Its actually like this :

$fiveMinutesAgo = time();
$fiveMinutesAgo -= 60*5;

$workers = mysql_query("SELECT count(*) FROM `stats_userMHashHistory` WHERE `timestamp` >= $fiveMinutesAgo AND `mhashes` > 0");

// Verify it worked
if (!$workers) echo mysql_error();

$nrworkers = mysql_fetch_array($workers);


Then where ever you want to display the amount of workers :

echo "$nrworkers[0]"


Btw the stats_userMHashHistory table is filling up pretty quickly, especially if the number of workers that have been created increases, I think this will be become a scalability bottleneck.
Post
Topic
Board Project Development
Re: [v4.1] Mining Farm #2 | Help donate hashes [Testnet] http://173.212.217.202/
by
peedee
on 22/06/2011, 21:02:03 UTC
How would I query for the number of active workers ?
Post
Topic
Board Marketplace
Re: Renting 550 mh/s short term contract
by
peedee
on 21/06/2011, 23:04:26 UTC
Bumpage... The 300 mh/s should be ready by Thursday or sooner.

Just sent you a PM to request the 300 mh/s for the first 2 weeks.
Post
Topic
Board Project Development
Re: [v4.1] Mining Farm #2 | Module Ideas!?
by
peedee
on 21/06/2011, 22:27:24 UTC
Great work guys!
Post
Topic
Board Marketplace
Re: FREE bitcoins from payb.tc - ROUND 2!
by
peedee
on 20/06/2011, 15:10:11 UTC
Post
Topic
Board Pools
$60 Bounty inside! Newbie friendly Miningpool? Join ABCBitcoin.net!
by
peedee
on 19/06/2011, 11:23:39 UTC
ABCBitcoin.net - Beginners & Advanced users miningpool!


$60 Bounty rules :

  • The bounty will be paid to the finder(s) for Block 1, 2 and 3
  • Block 1 : $15
  • Block 2 : $20
  • Block 3 : $25
  • Bounty will be paid through PayPal
  • Block 1 has to be found before the 8th of July!


The gates are open!

Step 1 : Register your account on ABCBitcoin's registration page
Step 2 : Login with your account and create one or more workers
Step 3 : Point your miner(s) to abcbitcoin.net on port 8344 supplying your workers credentials

For a more detailed explanation check http://www.abcbitcoin.net

ABCBitcoin.net has opened its doors to the public. We aim to supply a stable mining pool to the beginners and advanced Bitcoin miners out there. Check out our website for an ABC on how to get started mining them coins! www.abcbitcoin.net

ABCBitcoin.net is maintained by a dutch group of professional enthusiasts. Server is located on Amazon EC2 infrastructure and hosted in Ireland (EU).

What do we offer?

- Live help : Support chat available
- Stability : EC2 hosting uptime garuantee
- Scalability : EC2 hosting scalable computing power
- Long polling, Instant payout
- Proportional Payout

Features being worked on

- In-depth mining statistics (Server-wide & Personal)
- Daily / Weekly / Monthy raffle (Opt-in)
- Donation system (Opt-in)

To be able to host a sustainable infrastructure and pay for the server costs we currently charge a 1% fee.

Follow us on Twitter for the latest updates!

EU/NL - ABCBitcoin.net - New pool from beginners to experts! EC2,Inst Payout,LP
Post
Topic
Board Pools
EU/NL - ABCBitcoin.net - New pool from beginners to experts! EC2,Inst Payout,LP
by
peedee
on 19/06/2011, 11:22:21 UTC
ABCBitcoin.net - Beginners & Advanced users miningpool!

The gates are open!

Step 1 : Register your account on ABCBitcoin's registration page
Step 2 : Login with your account and create one or more workers
Step 3 : Point your miner(s) to abcbitcoin.net on port 8344 supplying your workers credentials

ABCBitcoin.net has opened its doors to the public. We aim to supply a stable mining pool to the beginners and advanced Bitcoin miners out there. Check out our website for an ABC on how to get started mining them coins! www.abcbitcoin.net

ABCBitcoin.net is maintained by a dutch group of professional enthusiasts. Server is located on Amazon EC2 infrastructure and hosted in Ireland (EU).

What do we offer?

- Live help : Support chat available
- Stability : EC2 hosting uptime garuantee
- Scalability : EC2 hosting scalable computing power
- Long polling, Instant payout

Features being worked on

- Finish website texts
- In-depth mining statistics (Server-wide & Personal)
- Daily / Weekly / Monthy raffle (Opt-in)
- Donation system (Opt-in)
- Forums

To be able to host a sustainable infrastructure and pay for the server costs we currently charge a 1% fee.

Follow us on Twitter for the latest updates!

EU/NL - ABCBitcoin.net - New pool from beginners to experts! EC2,Inst Payout,LP