Bitcoin Forum
May 11, 2024, 03:55:17 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Economy / Currency exchange / Re: Buying: Pokerstars$USD on: July 05, 2011, 10:45:07 AM
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 $.
2  Bitcoin / Pools / Re: $60 Bounty inside! Newbie friendly Miningpool? Join ABCBitcoin.net! on: June 27, 2011, 07:12:53 PM
BUMP, please post your ABCBitcoin username here when you are competing for the $ Bounty.
3  Bitcoin / Pools / Re: $60 Bounty inside! Newbie friendly Miningpool? Join ABCBitcoin.net! on: June 27, 2011, 06:29:19 PM
Added a $60 bounty for the first 3 blocks.
4  Local / Nederlands (Dutch) / Re: Nederlands! on: June 26, 2011, 11:32:28 AM
Ik ben een Nederlandse Bitcoin Mining Pool begonnen op http://www.abcbitcoin.net en heb dringend MHs/s nodig Smiley. Wie komen er helpen?
5  Bitcoin / Bitcoin Discussion / Re: ABC Bitcoin currency case sparks business security fears on: June 26, 2011, 12:24:15 AM
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...
6  Bitcoin / Pools / Re: Looking for a newbie friendly Miningpool? Join ABCBitcoin.net! on: June 25, 2011, 08:25:11 PM
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.

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

accountDetails.php :

Estimated Reward this Round

header.php :

Estimated
 

Huh


...
9  Bitcoin / Project Development / Re: [v4.1.2] Mining Farm ::: [Bug testing Until 1AM central time] on: June 24, 2011, 08:25:24 PM
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.


10  Bitcoin / Project Development / Re: [v4.1.2] Mining Farm ::: [Bug testing Until 1AM central time] on: June 24, 2011, 08:00:11 PM
Xenland : in the 4.1.2 version the serverFeepercentage column was removed from the SQL script, is that on purpose ?

11  Bitcoin / Project Development / Re: [v4.1.1] Mining Farm ::: Annoying Bugs Sqwished! on: June 23, 2011, 07:39:13 PM
Estimated Bitcoins does not seem to work for me ?
12  Bitcoin / Project Development / Re: [v4.1.1] Mining Farm ::: Annoying Bugs Sqwished! on: June 23, 2011, 04:43:28 PM
Can you update the changelog ?
13  Bitcoin / Project Development / Re: [v4.1] Mining Farm #2 | Help donate hashes [Testnet] http://173.212.217.202/ on: June 23, 2011, 11:20:04 AM
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 ?
14  Bitcoin / Project Development / Re: [v4.1] Mining Farm #2 | Help donate hashes [Testnet] http://173.212.217.202/ on: June 22, 2011, 10:47:35 PM
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.
15  Bitcoin / Project Development / Re: [v4.1] Mining Farm #2 | Help donate hashes [Testnet] http://173.212.217.202/ on: June 22, 2011, 09:02:03 PM
How would I query for the number of active workers ?
16  Economy / Marketplace / Re: Renting 550 mh/s short term contract on: June 21, 2011, 11:04:26 PM
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.
17  Bitcoin / Project Development / Re: [v4.1] Mining Farm #2 | Module Ideas!? on: June 21, 2011, 10:27:24 PM
Great work guys!
18  Economy / Marketplace / Re: FREE bitcoins from payb.tc - ROUND 2! on: June 20, 2011, 03:10:11 PM
Created.

http://payb.tc/pd

19  Bitcoin / Pools / $60 Bounty inside! Newbie friendly Miningpool? Join ABCBitcoin.net! on: June 19, 2011, 11:23:39 AM
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
20  Bitcoin / Pools / EU/NL - ABCBitcoin.net - New pool from beginners to experts! EC2,Inst Payout,LP on: June 19, 2011, 11:22:21 AM
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
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!