Bitcoin Forum
April 24, 2024, 02:54:52 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: New 64 Bit Random Search Pool Project  (Read 367 times)
WanderingPhilospher (OP)
Full Member
***
Offline Offline

Activity: 1050
Merit: 219

Shooters Shoot...


View Profile
August 23, 2021, 06:37:07 PM
Last edit: September 21, 2021, 01:15:17 AM by WanderingPhilospher
Merited by LoyceV (5), NotATether (5), ABCbits (2)
 #1

We have the same pool running, but with a new client and cracking program.

Come see the new thread:  https://bitcointalk.org/index.php?topic=5361022.msg57985360#msg57985360




A new project to test bitcoin's key security attacking the BTC challenge. You can read more about the challenge here:
https://bitcointalk.org/index.php?topic=5218972.0

This project is considered a proof of concept, and we are testing the concept now.

Information links:
Discord server
https://discord.gg/5CyApZHgUu
Discord channel
https://discord.com/channels/871109371805962240/879196557067558913
Github
https://github.com/WanderingPhilosopher/64-Bit-Random-Pool

We are also working on a website to show live, real-time stats (in works now).

We have created a random searching pool in search of the #64 BTC challenge...in search of .64 bitcoin.

How is this pool different than TDs 64 bit pool?
TD has a great pool. The entire 64 bit range is broken up into 2^27 ranges, each range is 2^36 bits in size.
Users help search and complete each range in its entirety. Meaning once connect to the pool and run your rig,
you have to search a complete 2^36 bit sized range. The idea is a 100% key by key search. Hopefully the key
is found before reaching the 50% mark.

This pool is different. I have broken the entire 64 bit range into 2^44 ranges. Larger ranges than the above,
but we will NOT be searching every key sequentially. Once connected to the pool, you will be assigned a range.
Your GPU will generate random points throughout the range and then start searching for the private key in that
range. Once started, your GPU will check x amount of keys or run for x amount of time. I have it currently set
up that the maximum amount of time a single GPU will be in a range is 30 seconds. So your GPU gets assigned a range,
jumps in the range and generates random starting points, starts searching, runs for x amount of keys or 30 seconds,
whichever happens sooner. This way we are going in and out of ranges and at least searching in every possible range
within a limited time frame.

Depending on how many people/GPUs join the pool, we will search in every possible range in x days.
Example:
if we have 100 GPUs running 24/7
each GPU would check 2,880 ranges a day [1,440 minutes in a day, 2 ranges per minute (1 range every
30 seconds)]
2^19 ranges divided by 288,000 (100 GPUs x 2,880 ranges per day) = 1.82 days
every 1.82 days we will have searched every possible range
if we have 200 GPUs running 24/7 = every .91 day we will have searched every possible range

Example of ranges:
8000000000000000
80000FFFFFFFFFFF

8000100000000000
80001FFFFFFFFFFF

8000200000000000
80002FFFFFFFFFFF

all the way to

FFFFF00000000000
FFFFFFFFFFFFFFFF

How can you join?

Download the 2 files (discord channel) or at https://github.com/WanderingPhilosopher/64-Bit-Random-Pool/releases .
Place them in the same folder.
Create a batch file such as:

Client.exe -d 0 -name username

If you have multiple GPUs on a single PC/rig, use the -d flag to signify which GPU to use. -d 0 for GPU 0, -d 1 for GPU 1, etc.

Replace the -name username with your actual username, such as for me, -name wanderph
I wanted to be able to use a BTC address but the database is case insensitive and at this time, that won't work
But please only use one username whether you have 1 GPU or 1,000 GPUs. Keep the username the same.
Example if using two GPUs:
GPU 0 = Client.exe -d 0 -name wanderph
GPU 1 = Client.exe -d 1 -name wanderph

If you have multiple GPUs, it is better to run each one on a separate/different instance versus running them together. If you
have 2 GPUs, let them run the program separately, it helps the pool check each range quicker and gives you credit for 2 ranges
versus 1 range.

The username is how the program tracks how many ranges you have been assigned and completed. This is IMPORTANT because this is
how we know who to pay and how much to pay them.
Users will be paid based on their work. Your total ranges checked divided by total ranges checked equals your payout.
Example:
You checked 125,000 ranges and it took us 1,000,000 ranges checked to find the key then your amount would be
125,000 divided by 1,000,000 = .125 percent of ranges checked. Now multiply that by the amount of BTC we will find, .60
so your BTC payout would be .125 multiplied by .60 = .075 BTC.

Wait, what? .60 Huh?? I thought it was for .64 BTC?Huh I am glad you are paying attention! .04 will go to the user who
finds the private key. Yes, the program allows me to see who actually found the key. So overall, the pool will split, based on
amount of work each user does, .60 BTC and the private key finder will get .04, in addition to their equal share. So if user
is owed .055 BTC based on their work, and they find the key, they will get .055 + .04 = .095 BTC. So make sure you run your
GPUs as often as you can.

While we are searching for the key, you can message me your BTC address so I will have a record of it when we do find the key!
Once we find the key, I will message everyone who participated and sent me their BTC address to verify the address is correct.

And that's pretty much it. The who why when what.

The idea is if we visit every range every 1-2 days, the odds of us finding the key will be increased versus searching every range,
key by key. TDs pool has been operational for some time, and it's like any type of pool, it depends on how much hashing power
is pointed at it that determines progress. That pool has 134,217,728 ranges to search through and they are a little over 10% completed.
Where as this pool will be in the actual range the private key lies in, every x amount of days, depending on hashing power pointed at
the pool.

For now, this is just open to Windows users with Nvidia GPUs. Once I can figure out/precompile for Linux users, I will post.

I am sure I will add to or edit this as things change.

I have ran 2 days of tests with the server and client program without a hitch, but that was with limited GPUs running. So if
some glitch does occur, bare with me and I'll get it fixed.

Kudos go to:
Jean Luc Pons and Telariust for original and modded Vanity Search.
I modded their work to create random points in specific ranges, each and every time.
Etar / Etayson for the client and server program groundwork.
I made a few tweaks to his program but really great work by him!
@dlystyr for his python experience and ability to write a python script in 3 seconds.
Also for his "ear", to listen to some of my crazier ideas regarding this BTC challenge.
@yoyodapro for his motivation and for setting up the discord channel to bring us all together.
And helping me test, work out any bugs.
and @bigvito for hitting me up every few weeks to work on the random feature until I finally
said dang, alright lol! But I got the idea while building him out a random version.

Stay tuned to the channel/here for important updates and stats.

This project will help us determine how random range and points compares to range by range sequential key searches and will give us data to use
in moving forward to keys #66, 67, 68, etc.

WP
1713970492
Hero Member
*
Offline Offline

Posts: 1713970492

View Profile Personal Message (Offline)

Ignore
1713970492
Reply with quote  #2

1713970492
Report to moderator
"Bitcoin: the cutting edge of begging technology." -- Giraffe.BTC
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
WanderingPhilospher (OP)
Full Member
***
Offline Offline

Activity: 1050
Merit: 219

Shooters Shoot...


View Profile
August 23, 2021, 06:37:28 PM
Last edit: September 18, 2021, 06:53:08 PM by WanderingPhilospher
 #2

Reserved for OP/stats...
as of 18 Sep:

WanderingPhilospher (OP)
Full Member
***
Offline Offline

Activity: 1050
Merit: 219

Shooters Shoot...


View Profile
August 23, 2021, 07:42:50 PM
 #3

This pool is great for all types of setups but works really well for the person with only 1 or 2 GPUs as well. Even smaller and older cards like a GTX 1060 3GB or 6GB. So if you have some of the older 1060 3GB cards laying around collecting dust, point them to the pool and let them do work.  Small and older cards get through a range just as fast as a RTX 3090 so you will receive the same credit.

If you are a gamer, point your gaming rig at the pool when not in use.

If you are a miner, point your rig at the pool for a few minutes each day.

The more GPUs we have running, the faster we check every range and start going back through the ranges!
unixb0y
Newbie
*
Offline Offline

Activity: 2
Merit: 1


View Profile
August 23, 2021, 08:52:30 PM
 #4

Sounds cool, I'm in! Will set it up asap when I get around to doing that  Cool (prob. on RX5700XT)
BTW: OC helps? I run that card slightly undervolted and underclocked when mining Ethash tbh., since it makes little difference in hash & big difference in power draw. Does it make a significant difference in your algorithm for the 32BTC challenge? Not sure how exactly that operates, tbh. since I was out of the loop on this challenge for a lot of years  Grin
WanderingPhilospher (OP)
Full Member
***
Offline Offline

Activity: 1050
Merit: 219

Shooters Shoot...


View Profile
August 23, 2021, 09:01:40 PM
 #5

Sounds cool, I'm in! Will set it up asap when I get around to doing that  Cool (prob. on RX5700XT)
BTW: OC helps? I run that card slightly undervolted and underclocked when mining Ethash tbh., since it makes little difference in hash & big difference in power draw. Does it make a significant difference in your algorithm for the 32BTC challenge? Not sure how exactly that operates, tbh. since I was out of the loop on this challenge for a lot of years  Grin
Thank you for the interest, but at this time, only Nvidia cards work with the program  Sad
WanderingPhilospher (OP)
Full Member
***
Offline Offline

Activity: 1050
Merit: 219

Shooters Shoot...


View Profile
August 23, 2021, 09:30:14 PM
 #6

Sounds cool, I'm in! Will set it up asap when I get around to doing that  Cool (prob. on RX5700XT)
BTW: OC helps? I run that card slightly undervolted and underclocked when mining Ethash tbh., since it makes little difference in hash & big difference in power draw. Does it make a significant difference in your algorithm for the 32BTC challenge? Not sure how exactly that operates, tbh. since I was out of the loop on this challenge for a lot of years  Grin
Thank you for the interest, but at this time, only Nvidia cards work with the program  Sad

Ohh I see! Argh I only have AMD's right now, what a pity :/ It uses cuda or why only nvidia?
Right, it uses CUDA. From what I've read, not even experienced programmers have created a reliable "bitcrack" using openCL or openCL coupled with AMD cards. If someone knows of a program that actually works and actually finds keys, I will look into that program to see if we can adapt it for the pool
WanderingPhilospher (OP)
Full Member
***
Offline Offline

Activity: 1050
Merit: 219

Shooters Shoot...


View Profile
August 23, 2021, 09:36:37 PM
 #7

Right, it uses CUDA. From what I've read, not even experienced programmers have created a reliable "bitcrack" using openCL or openCL coupled with AMD cards. If someone knows of a program that actually works and actually finds keys, I will look into that program to see if we can adapt it for the pool

Gotcha, sounds good! Unfortunately haven't touched GPU programming for a couple years now, let's see if someone with more experience happens to hop into the project ^^
Yeah, well I doubt that as many have tried modding bitcrack to work properly with AMD cards / openCL. But hey, who knows, maybe someone knows of a version that actually works.
NotATether
Legendary
*
Offline Offline

Activity: 1582
Merit: 6679


bitcoincleanup.com / bitmixlist.org


View Profile WWW
August 24, 2021, 04:41:18 PM
 #8

@WanderingPhilospher We should probably keep 2% of the remaining funds after the privkey finder bounty is accounted for so that we have (at least a little) funding for maintaining projects like this.

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
yoyodapro
Jr. Member
*
Offline Offline

Activity: 50
Merit: 7


View Profile
August 24, 2021, 05:22:42 PM
 #9

@WanderingPhilospher We should probably keep 2% of the remaining funds after the privkey finder bounty is accounted for so that we have (at least a little) funding for maintaining projects like this.

I agree, that or 0.5% from all users as a developer fee to contribute towards hosting, development, etc.

Bitcoin Puzzle Transactions Discord

https://discord.gg/WQSB6cwkQE








₿̶̛̛͖̺̝̳͓͈̰̹̱̝̪͙̹̦̹̯̬͙̠͂̌̉͐͊̎̓͋̓͗̑̏͒̉̈́̇̐̇̔̅̾͗̐̆̐͛͂̿̿̏̎̔̌̚̕͜͝͝͠͝͝
WanderingPhilospher (OP)
Full Member
***
Offline Offline

Activity: 1050
Merit: 219

Shooters Shoot...


View Profile
August 25, 2021, 04:02:34 AM
 #10

@WanderingPhilospher We should probably keep 2% of the remaining funds after the privkey finder bounty is accounted for so that we have (at least a little) funding for maintaining projects like this.

I agree, that or 0.5% from all users as a developer fee to contribute towards hosting, development, etc.
Well I am not sure who would hold the "developer fee". I'm not interested in the money to be honest; for me it's about the challenge, the proof of concept.
I don't want to take money out of people's pockets for helping out in the hunt. If there is to be a developer fee, I'll gladly donate 2% of my earnings so all the hunters out there can keep hunting and not worry about fees.

If we ever move forward out of proof of concept, maybe then everyone can discuss what they deem as fair for any maintenance fees such as server costs, domain names, etc.
WanderingPhilospher (OP)
Full Member
***
Offline Offline

Activity: 1050
Merit: 219

Shooters Shoot...


View Profile
August 25, 2021, 04:06:58 AM
 #11

Since this proof of concept project does offer a reward, .04 BTC for the key finder, I've been thinking about opening different ports up for different ranges.

That way people can search in whichever range they feel the key is in.

I'm willing to do 8, one for each top range.

Example:

port 80 = 800...8FF
port 81 = 900...9FF

all the way down to

port 87 = F00...FFF

What say you?

Or at least 2 ports, 1 for 800...BFF and 1 port for C00...FFF, since most people think the key lies in the C to F range.

NotATether
Legendary
*
Offline Offline

Activity: 1582
Merit: 6679


bitcoincleanup.com / bitmixlist.org


View Profile WWW
August 25, 2021, 04:13:19 AM
 #12

Well I am not sure who would hold the "developer fee". I'm not interested in the money to be honest; for me it's about the challenge, the proof of concept.

I'll make a 2-of-4 multisig wallet and each of you can get a key (the fourth person being dlystyr)

Since this proof of concept project does offer a reward, .04 BTC for the key finder, I've been thinking about opening different ports up for different ranges.

That way people can search in whichever range they feel the key is in.

I'm willing to do 8, one for each top range.

Example:

port 80 = 800...8FF
port 81 = 900...9FF

all the way down to

port 87 = F00...FFF

What say you?

Or at least 2 ports, 1 for 800...BFF and 1 port for C00...FFF, since most people think the key lies in the C to F range.

zahid888 exhausted part of a range IIRC and didn't find anything, I think you'll end up just wasting ports, than when everybody's throwing their hashpower at the full range.

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
WanderingPhilospher (OP)
Full Member
***
Offline Offline

Activity: 1050
Merit: 219

Shooters Shoot...


View Profile
August 25, 2021, 04:25:48 AM
 #13

Well I am not sure who would hold the "developer fee". I'm not interested in the money to be honest; for me it's about the challenge, the proof of concept.

I'll make a 2-of-4 multisig wallet and each of you can get a key (the fourth person being dlystyr)

Since this proof of concept project does offer a reward, .04 BTC for the key finder, I've been thinking about opening different ports up for different ranges.

That way people can search in whichever range they feel the key is in.

I'm willing to do 8, one for each top range.

Example:

port 80 = 800...8FF
port 81 = 900...9FF

all the way down to

port 87 = F00...FFF

What say you?

Or at least 2 ports, 1 for 800...BFF and 1 port for C00...FFF, since most people think the key lies in the C to F range.

zahid888 exhausted part of a range IIRC and didn't find anything, I think you'll end up just wasting ports, than when everybody's throwing their hashpower at the full range.
Yeah, it would be our luck everyone sticks to the C D E F ranges and the key is in the 8 range lol
gamefinder
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
August 27, 2021, 01:42:57 AM
 #14

Yeah, it would be our luck everyone sticks to the C D E F ranges and the key is in the 8 range lol

Highly unlikely it would be in the 8 range. So far with all the found keys there have been no duplicates. Beginning with 137 only 8 and B have been used, therefore if anything it's more than likely in either 9, A, C, D, E, F ranges.

1378
134E
124A
126C
135D
125D
136D
137B
1349
124E
126E
126A
127E
1269
127F
137
pooya87
Legendary
*
Offline Offline

Activity: 3430
Merit: 10498



View Profile
August 27, 2021, 04:34:59 AM
Merited by ABCbits (1)
 #15

@WanderingPhilospher We should probably keep 2% of the remaining funds after the privkey finder bounty is accounted for so that we have (at least a little) funding for maintaining projects like this.
Well this is a closed source .exe file and the fact that it is uploaded to github doesn't mean it is safe to run. OP might as well be keeping 100% of any puzzle that the users may solve or worse the file could be doing a similar thing to the other puzzle solver (Large Bitcoin Collider) and execute any arbitrary scripts on users computers to do whatever... Wink

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
NotATether
Legendary
*
Offline Offline

Activity: 1582
Merit: 6679


bitcoincleanup.com / bitmixlist.org


View Profile WWW
August 27, 2021, 05:46:51 AM
 #16

@WanderingPhilospher We should probably keep 2% of the remaining funds after the privkey finder bounty is accounted for so that we have (at least a little) funding for maintaining projects like this.
Well this is a closed source .exe file and the fact that it is uploaded to github doesn't mean it is safe to run. OP might as well be keeping 100% of any puzzle that the users may solve or worse the file could be doing a similar thing to the other puzzle solver (Large Bitcoin Collider) and execute any arbitrary scripts on users computers to do whatever... Wink

I'm working with the OP and two other people in our group DM on discord - I'll ask the other two if they've seen the source (@yoyodapro is the one compiling so he should at least know about it).

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
NeuroticFish
Legendary
*
Offline Offline

Activity: 3654
Merit: 6365


Looking for campaign manager? Contact icopress!


View Profile
August 27, 2021, 07:42:04 AM
 #17

I'm working with the OP and two other people in our group DM on discord - I'll ask the other two if they've seen the source (@yoyodapro is the one compiling so he should at least know about it).

I think that if it would be you at least compiling the source it would give more credibility to the project (then I may even consider joining in when I could, although my NVidia card is on a laptop).

.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
NotATether
Legendary
*
Offline Offline

Activity: 1582
Merit: 6679


bitcoincleanup.com / bitmixlist.org


View Profile WWW
August 27, 2021, 10:46:39 AM
 #18

I'm working with the OP and two other people in our group DM on discord - I'll ask the other two if they've seen the source (@yoyodapro is the one compiling so he should at least know about it).

I think that if it would be you at least compiling the source it would give more credibility to the project (then I may even consider joining in when I could, although my NVidia card is on a laptop).

In fact I'm the one who modified and compiled the Kangaroo #120 server (more details in the discord server linked in the OP)

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
WanderingPhilospher (OP)
Full Member
***
Offline Offline

Activity: 1050
Merit: 219

Shooters Shoot...


View Profile
August 27, 2021, 03:07:37 PM
 #19

I'm working with the OP and two other people in our group DM on discord - I'll ask the other two if they've seen the source (@yoyodapro is the one compiling so he should at least know about it).

I think that if it would be you at least compiling the source it would give more credibility to the project (then I may even consider joining in when I could, although my NVidia card is on a laptop).
And this is your choice, if you do not join because I don't have enough numbers by my merit, that is fine. But I will leave you with this, just because you sit in a garage, doesn't mean you're a car.
WanderingPhilospher (OP)
Full Member
***
Offline Offline

Activity: 1050
Merit: 219

Shooters Shoot...


View Profile
August 27, 2021, 03:29:55 PM
 #20

@WanderingPhilospher We should probably keep 2% of the remaining funds after the privkey finder bounty is accounted for so that we have (at least a little) funding for maintaining projects like this.
Well this is a closed source .exe file and the fact that it is uploaded to github doesn't mean it is safe to run. OP might as well be keeping 100% of any puzzle that the users may solve or worse the file could be doing a similar thing to the other puzzle solver (Large Bitcoin Collider) and execute any arbitrary scripts on users computers to do whatever... Wink
Alright, to touch on your comments more. I get what you are saying and it is what it is. But I know you are an intelligent person pooya, and if you would just think about things regarding this thread and the nature of the pool, I would hope you would understand why it has to be closed source. There are details in the first post that elude to the "why" if you read it closely.

Trust is a serious thing. It is earned, I get that. But that works both ways. Why would I trust you or NotATether with the source code? Because maybe if you compile it people will be more receptive because you have x number of merit? Nah. Who's to say you wouldn't show it or give it to someone? Or who says you won't take the code and tweak it for your own benefit?

Trust...maybe I can put my own spin on that. People who do join the pool can trust and know that there is only one person who has the source code and it will not get passed from person to person, and maybe they can rest easier knowing that you or someone else who I could possibly give the code to, didn't pass it on to their friend, and their friends friend, etc. and one of those persons manipulated the code for their own benefit.

The bottom line, I am the only one with the source code. I have tried to think of every angle to keep someone from manipulating the pool and taking away from people who are actually participating in the pool.

Again, it's not about the money for me. It's about the concept. About doing something that mostly everyone says can't be done or will take a long time.

I have people who will vouch for me when it comes to being genuine. I send people eth/BTC just for helping out with things; even though they didn't expect it, because I know time is precious for everybody. Just last night, I tried to send a brilliant programmer some eth just for chatting with me for 30 minutes or so about how their particular program works and why they felt another program tasked the CPU more than this other one...just for sharing their thoughts and listening to mine. So yeah, it's not about the money for me. As Doc Holliday said, "It's about the reckoning." lol

People will make a choice to join the pool and run the program, or they won't.  But I at least hope they understand why it has to be closed source and won't trust me any less just because a few people with a lot of merit say I might as well keep it all, or lump me in with some individual from another project, etc.

Pages: [1] 2 »  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!