Bitcoin Forum
March 28, 2024, 04:51:03 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 [7] 8 9 »  All
  Print  
Author Topic: COMPLETED: Request for an RPC capable fork of cgminer (155 BTC pledged and paid)  (Read 19162 times)
Turbor
Legendary
*
Offline Offline

Activity: 1022
Merit: 1000


BitMinter


View Profile WWW
December 20, 2011, 10:47:14 PM
 #121

Only one left is ThiagoCMC - 5 BTC

If there should be a problem for him to pay the 5 BTC at the moment, i can help !

1711644663
Hero Member
*
Offline Offline

Posts: 1711644663

View Profile Personal Message (Offline)

Ignore
1711644663
Reply with quote  #2

1711644663
Report to moderator
The forum strives to allow free discussion of any ideas. All policies are built around this principle. This doesn't mean you can post garbage, though: posts should actually contain ideas, and these ideas should be argued reasonably.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
kano
Legendary
*
Offline Offline

Activity: 4452
Merit: 1798


Linux since 1997 RedHat 4


View Profile
December 21, 2011, 07:15:16 AM
 #122

Yeah looks like it may be a while before he pays ...
https://bitcointalk.org/index.php?topic=54968.0

Pool: https://kano.is - low 0.5% fee PPLNS 3 Days - Most reliable Solo with ONLY 0.5% fee   Bitcointalk thread: Forum
Discord support invite at https://kano.is/ Majority developer of the ckpool code - k for kano
The ONLY active original developer of cgminer. Original master git: https://github.com/kanoi/cgminer
Turbor
Legendary
*
Offline Offline

Activity: 1022
Merit: 1000


BitMinter


View Profile WWW
December 21, 2011, 11:23:57 AM
 #123

If you can't wait, let me know. Wink

runeks
Legendary
*
Offline Offline

Activity: 980
Merit: 1008



View Profile WWW
December 21, 2011, 03:47:33 PM
 #124

Here is my basic socket client in python

https://gist.github.com/1500780
FYI, you need to send and receive like this (refer to kano's link on sockets):

Code:
RECVSIZE=65500

def _sendmsg(sock, msg):
   totalsent = 0
   while totalsent < len(msg):
      sent = sock.send(msg[totalsent:])
      if sent == 0:
         raise RuntimeError("socket connection broken")
      totalsent = totalsent + sent

def _recvmsg(sock):
   msg = ''
   while True:
      chunk = sock.recv(RECVSIZE)
      if (chunk == ''):
         break
      msg = msg + chunk
   return msg

yeah it's tiring, but there are no guarantees that your entire message will be transmitted at once. It will most of the time, but unless you do it like the above, sometimes odd errors will creep in that will take you forever to figure out, until you find out that send() only sends the number of bytes it returns (not necessarily the whole message), and recv() has only received the entire message when it returns an empty string (ie. receives nothing).

EDIT: Oh, and you should run shutdown() before close() Smiley
Red Emerald
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500



View Profile WWW
December 21, 2011, 07:29:07 PM
Last edit: December 21, 2011, 08:10:35 PM by Red Emerald
 #125

Here is my basic socket client in python

https://gist.github.com/1500780
FYI, you need to send and receive like this (refer to kano's link on sockets):

Dunno how I missed that example when I was reading through the docs.  I'll clean it up.

EDIT: https://gist.github.com/1500780

I realized that most people are going to want to check multiple mining rigs and having to make a new CgminerClient for each host seemed like extra work. I made it so that the client can check multiple hosts and ports easily rather than being bound to one at creation.

-ck
Legendary
*
Offline Offline

Activity: 4060
Merit: 1622


Ruu \o/


View Profile WWW
December 23, 2011, 08:54:22 PM
 #126

After auditing the code, the API branch has been merged into my cgminer master branch now. Please refer any further API discussion to the regular cgminer thread.

Developer/maintainer for cgminer, ckpool/ckproxy, and the -ck kernel
2% Fee Solo mining at solo.ckpool.org
-ck
DeathAndTaxes (OP)
Donator
Legendary
*
Offline Offline

Activity: 1218
Merit: 1063


Gerald Davis


View Profile
December 24, 2011, 01:52:24 AM
 #127

After auditing the code, the API branch has been merged into my cgminer master branch now. Please refer any further API discussion to the regular cgminer thread.

There is 30 BTC pledge towards integration into mainline.  Do you want it sent to your signature address?
148KkS2vgVi4VzUi4JcKzM2PMaMVPi3nnq
-ck
Legendary
*
Offline Offline

Activity: 4060
Merit: 1622


Ruu \o/


View Profile WWW
December 24, 2011, 01:57:24 AM
 #128

After auditing the code, the API branch has been merged into my cgminer master branch now. Please refer any further API discussion to the regular cgminer thread.

There is 30 BTC pledge towards integration into mainline.  Do you want it sent to your signature address?
148KkS2vgVi4VzUi4JcKzM2PMaMVPi3nnq
That will be fine, thanks.

Developer/maintainer for cgminer, ckpool/ckproxy, and the -ck kernel
2% Fee Solo mining at solo.ckpool.org
-ck
DeathAndTaxes (OP)
Donator
Legendary
*
Offline Offline

Activity: 1218
Merit: 1063


Gerald Davis


View Profile
December 24, 2011, 02:08:29 AM
 #129

My 5 BTC integration bonus paid (5.000777 so I could track it as I paid it from an exchange account).

http://blockchain.info/tx-index/13548043/89fc06ad9196facee2741ce173e3a525a9017df90eb0e61352c46f2fcd1f18f3
-ck
Legendary
*
Offline Offline

Activity: 4060
Merit: 1622


Ruu \o/


View Profile WWW
December 24, 2011, 02:09:14 AM
 #130

Received, thanks Smiley

Developer/maintainer for cgminer, ckpool/ckproxy, and the -ck kernel
2% Fee Solo mining at solo.ckpool.org
-ck
-ck
Legendary
*
Offline Offline

Activity: 4060
Merit: 1622


Ruu \o/


View Profile WWW
December 26, 2011, 07:29:01 AM
 #131

Well, I got half the 30 BTC bounty, thanks! 15 to go...

Developer/maintainer for cgminer, ckpool/ckproxy, and the -ck kernel
2% Fee Solo mining at solo.ckpool.org
-ck
Red Emerald
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500



View Profile WWW
December 26, 2011, 07:40:52 AM
 #132

Well, I got half the 30 BTC bounty, thanks! 15 to go...
As soon as I am paid for today's mining, I'll send you my 5 Smiley

I've compiled your 2.0.9 and it hasn't crashed on me yet Cheesy  I haven't really done anything with the RPC yet though. Maybe tomorrow on the train I'll get a little something written.

-ck
Legendary
*
Offline Offline

Activity: 4060
Merit: 1622


Ruu \o/


View Profile WWW
December 26, 2011, 08:06:04 AM
 #133

Well, I got half the 30 BTC bounty, thanks! 15 to go...
As soon as I am paid for today's mining, I'll send you my 5 Smiley

I've compiled your 2.0.9 and it hasn't crashed on me yet Cheesy  I haven't really done anything with the RPC yet though. Maybe tomorrow on the train I'll get a little something written.
Thanks. Do be aware 2.0.9 is a development release and I won't be releasing an "official" version till I'm sure it all works fine. There was a race on longpoll switch that has been a bitch to nail down but I hope I'm there now. Also, a fried motherboard in my main miner will significantly slow down the final release  Undecided

Developer/maintainer for cgminer, ckpool/ckproxy, and the -ck kernel
2% Fee Solo mining at solo.ckpool.org
-ck
DeathAndTaxes (OP)
Donator
Legendary
*
Offline Offline

Activity: 1218
Merit: 1063


Gerald Davis


View Profile
December 26, 2011, 03:56:19 PM
 #134

Received, thanks Smiley
Well, I got half the 30 BTC bounty, thanks! 15 to go...

If you update the thread w/ person(s) who have paid the pledges I will update the first post.
DeathAndTaxes (OP)
Donator
Legendary
*
Offline Offline

Activity: 1218
Merit: 1063


Gerald Davis


View Profile
December 27, 2011, 02:28:09 AM
Last edit: December 27, 2011, 01:30:38 PM by DeathAndTaxes
 #135

Since code is now in the mainline and planned for next official version once tested I would like to wrap up this thread/project and lock it.


Already paid:
  • DeathAndTaxes - 30 BTC (+5 BTC more for integration into the mainline)
  • Gigasvps - 30 BTC
  • Tnkflx - 30 BTC
  • abracadabra - 10 BTC
  • Red Emerald - 10 BTC (+5 BTC more for integration into mainline)
  • gnar1ta$ - 10 BTC (+10 BTC more for integration into the mainline)

Owed to Kano for standalone project:
  • ThiagoCMC - 5 BTC

Owed to ckolivas for mainline integration:
  • Red Emerald - 5 BTC
  • gnar1ta$ - 5 BTC
  • Chefnet - 15 BTC

ckolivas says another 10 BTC has been paid but looking at block explorer it came from a single address so it matches no existing pledge.
 Update:  It was gnar1ta$, he paid beyond his pledge.


If you have paid please update the thread.  
If you have not yet paid on your pledge please do so promptly as the code is functional and integrated so further delays are not warranted.
If you have no intention on fulfilling your pledge please indicate your reason why.

Thank You,
Death & Taxes.
-ck
Legendary
*
Offline Offline

Activity: 4060
Merit: 1622


Ruu \o/


View Profile WWW
December 27, 2011, 03:12:30 AM
 #136

gnar1ta$ has paid 5 BTC + 5 extra for general cgminer dev. Therefore 10/30 of this bounty has been paid, thanks.

Developer/maintainer for cgminer, ckpool/ckproxy, and the -ck kernel
2% Fee Solo mining at solo.ckpool.org
-ck
gnar1ta$
Donator
Hero Member
*
Offline Offline

Activity: 798
Merit: 500


View Profile
December 27, 2011, 04:18:31 AM
 #137

Sorry for the confusion. Sent one transaction and PM instead of posting. Looks like it's sorted out. Thanks again to Kano and ckolivas for the work.

Losing hundreds of Bitcoins with the best scammers in the business - BFL, Avalon, KNC, HashFast.
Red Emerald
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500



View Profile WWW
December 27, 2011, 07:03:01 AM
 #138

Just sent my 5 to 148KkS2vgVi4VzUi4JcKzM2PMaMVPi3nnq

Thanks again.  I'll post something that actually uses this soon.  Is anyone else who pledged (or not) actually using the RPC yet?

ThiagoCMC
Legendary
*
Offline Offline

Activity: 1204
Merit: 1000

฿itcoin: Currency of Resistance!


View Profile
December 29, 2011, 10:58:49 PM
 #139

Hi!

 I would love to support this... I can give 5 BTCs now.

 And I have a suggestion:

 1- Identify a GPU by its "device ID" (possible?);
 2- Configuration of each GPU based on its ID;
 3- A different "pool / login / worker" per device (fixed by its ID).

 This way, no matter if a GPU is GPU0 or GPU1, the ID will be the same, so its own configurations...

 This can be usefull if we change a GPU slot or add/remove GPUs from a machine.

 It can works more or less like Linux file system UUID, with it, no matter if the device is sda or sdb, the FS UUID will be always the same and the file system will be mounted without any problem if you change the disk connection.

Best,
Thiago

Hi!

 How to use that?!
 I'll pay! Of course...
 Thank you!!

Best,
Thiago
ThiagoCMC
Legendary
*
Offline Offline

Activity: 1204
Merit: 1000

฿itcoin: Currency of Resistance!


View Profile
December 30, 2011, 12:22:16 AM
 #140

Hi!

 Guys, how much will cost to add support for Scrypt (Litecoin mining) to cgminer (maybe cgminer-cpuonly)?

 Of course, based on: https://github.com/pooler/cpuminer

 10 BTC?

 So, with only one cgminer instance, we can find Bitcoin/Namecoin and Litecoin blocks!

 But keeping the option to mine for Bitcoins using cgminer-cpuonly too, if user wish that...

Best!
Thiago
Pages: « 1 2 3 4 5 6 [7] 8 9 »  All
  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!