Bitcoin Forum
April 24, 2024, 11:35:38 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 [37] 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 ... 486 »
  Print  
Author Topic: [BBR] Boolberry: Privacy and Security - Guaranteed Since 2014  (Read 1210689 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
btc-mike
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1001



View Profile
May 28, 2014, 02:37:08 AM
 #721

where can we trade???

https://bitcointalk.org/index.php?topic=616391.0
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713958538
Hero Member
*
Offline Offline

Posts: 1713958538

View Profile Personal Message (Offline)

Ignore
1713958538
Reply with quote  #2

1713958538
Report to moderator
1713958538
Hero Member
*
Offline Offline

Posts: 1713958538

View Profile Personal Message (Offline)

Ignore
1713958538
Reply with quote  #2

1713958538
Report to moderator
molecularfir
Newbie
*
Offline Offline

Activity: 50
Merit: 0


View Profile
May 28, 2014, 05:01:09 AM
 #722

That destroys all the coins today.
No matter how good the coin is, no matter how great the developer is, etc.
It all bogs down to the kid with the Mh/s Gh/s of hired power and the urge to sell it the next moment.

Not to mention it isn't profitable......
azhago
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
May 28, 2014, 06:29:56 AM
 #723

Ok people after my communication with crypto_zoidberg, I have taken up the responsibility to help with Branding/Marketing the project.

Stay tuned because we will need the community's opinion on such matters.

I believe this project has the potential to become a significant player in the crypto market.

Until then I advise to keep solo mining, with an average of 350-400 kilohashes I have hit four blocks since launch, so I think its a very good investment to keep at it before pools, inevitably, enter the fray.


wow
with about the same hash power, i have not found a single block since launch.

with 350 kh over 2 computers I have found 2 blocks in the last week.

roooh, lucky guy !  Shocked

nice for you Smiley

yah just trying to say "don't give up, it can happen with small hashrate"

Yeah, solomining is just a matter of having some patience. Luck
corrected..
another day without any bloc. Almost 3 days with 2.6mh, one bloc in total. And diff still rising.

 During this time, i should mine monero on pool.

crypto_zoidberg (OP)
Hero Member
*****
Offline Offline

Activity: 976
Merit: 646



View Profile WWW
May 28, 2014, 06:55:42 AM
 #724

Hello friends!

Seeing strong need for a pool, as well as realizing the complexity associated with the our original approach to PoW (blockchain-based hash), i spent the last two days working hard on implementing protocol, that makes able to create pool.

Now simpleminer is back, and several instances could work directly with daemon, as a clear example of shared work with blockchain-based scratchpad.
Hope this code let developers to organize pools for our project.


Why creating pool for BBR is a good idea ?
1. No doubt that a lot of people looking for pool for BBR.
2. You can offer alias registering service with pool, and get extra earning for each block. I'm personally ready to pay 5 BBR to pool for registering for me alias @obama(later i'll sell it to him)
3. Unlike other CryptoNote-family, BBR PoW hash is easy to check - less resources and less complicated backend (you don't need tho check only every hundredth share).


Technical details:
Notice: it's just a working example, it is not production code, and it's not optimized for trafic usage, so it's up to the pool developer.
Notice: At start simpleminer downloads whole scratchpad (it could be pretty big, estimate 90MB/year, at moment of writing this message it was about 2MB). Obviously pool client have to store this scratchpad somewhere on disk, to avoid traffic overhead.

To check work of simpleminer you need to run daemon as usual, and than start simpleminer:
Code:
simpleminer --login=anyname --pass=anypas --pool-addr=127.0.0.1:50102
50102 - rpc port for testnet, i recommend you to try there, since it is possible there to find a block pretty fast. (To be able to work in testnet pass to cmake -D TESTNET=TRUE )

I've started support thread for developers:
https://bitcointalk.org/index.php?topic=628180.

So, everyone who is going to make pool - welcome!

PS: I'll answer to PM later, need to sleep some.

dr_chen
Sr. Member
****
Offline Offline

Activity: 494
Merit: 250



View Profile
May 28, 2014, 07:14:17 AM
 #725

Hello friends!

Seeing strong need for a pool, as well as realizing the complexity associated with the our original approach to PoW (blockchain-based hash), i spent the last two days working hard on implementing protocol, that makes able to create pool.

Now simpleminer is back, and several instances could work directly with daemon, as a clear example of shared work with blockchain-based scratchpad.
Hope this code let developers to organize pools for our project.


Why creating pool for BBR is a good idea ?
1. No doubt that a lot of people looking for pool for BBR.
2. You can offer alias registering service with pool, and get extra earning for each block. I'm personally ready to pay 5 BBR to pool for registering for me alias @obama(later i'll sell it to him)
3. Unlike other CryptoNote-family, BBR PoW hash is easy to check - less resources and less complicated backend (you don't need tho check only every hundredth share).


Technical details:
Notice: it's just a working example, it is not production code, and it's not optimized for trafic usage, so it's up to the pool developer.
Notice: At start simpleminer downloads whole scratchpad (it could be pretty big, estimate 90MB/year, at moment of writing this message it was about 2MB). Obviously pool client have to store this scratchpad somewhere on disk, to avoid traffic overhead.

To check work of simpleminer you need to run daemon as usual, and than start simpleminer:
Code:
simpleminer --login=anyname --pass=anypas --pool-addr=127.0.0.1:50102
50102 - rpc port for testnet, i recommend you to try there, since it is possible there to find a block pretty fast. (To be able to work in testnet pass to cmake -D TESTNET=TRUE )

I've started support thread for developers:
https://bitcointalk.org/index.php?topic=628180.

So, everyone who is going to make pool - welcome!

PS: I'll answer to PM later, need to sleep some.


Good news, where is the download link

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

▀█▄▄  ▀▀█▄▄█▀▀   ▄▄█
 ▀▀███▄▄     ▄▄██▀██
     ▀███   ██▀  ▄█
██     ██  ██ ▄██▀██
▀██    ██  ███▀  ▄██
 ▀███▄▄██  ██ ▄███▀
    ▀▀███  ▀██▀▀
Just.Bet 
 
 
 
█▀▀▀▀▀










█▄▄▄▄▄
.
DICE
LOTTERY
PLINKO
.
COIN FLIP
CRASH
WHEEL
▀▀▀▀▀█










▄▄▄▄▄█
.
        ███████       ▄▄██▄
                  ▄▄███▀▀██▄
      ██████   ▄███████▄▄███▄
               ▀██  █████████▄
                ▀█████████▀▀██▄
████████████     ▀███▀▀███▄▄██▀
██  ████  ██      ▀██▄▄███▀▀
█████▀▀█████  ██   ▀██▀▀
█████▄▄█████
██  ████  ██   ██████
████████████
.
DECENTRALIZED
PROVABLY FAIR
ON CHAIN GAMES
█▀▀▀▀▀










█▄▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
PLAY NOW
.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀▀█










▄▄▄▄▄█
[/center]
molecularfir
Newbie
*
Offline Offline

Activity: 50
Merit: 0


View Profile
May 28, 2014, 07:37:40 AM
 #726

Hello friends!

Seeing strong need for a pool, as well as realizing the complexity associated with the our original approach to PoW (blockchain-based hash), i spent the last two days working hard on implementing protocol, that makes able to create pool.

Now simpleminer is back, and several instances could work directly with daemon, as a clear example of shared work with blockchain-based scratchpad.
Hope this code let developers to organize pools for our project.


Why creating pool for BBR is a good idea ?
1. No doubt that a lot of people looking for pool for BBR.
2. You can offer alias registering service with pool, and get extra earning for each block. I'm personally ready to pay 5 BBR to pool for registering for me alias @obama(later i'll sell it to him)
3. Unlike other CryptoNote-family, BBR PoW hash is easy to check - less resources and less complicated backend (you don't need tho check only every hundredth share).


Technical details:
Notice: it's just a working example, it is not production code, and it's not optimized for trafic usage, so it's up to the pool developer.
Notice: At start simpleminer downloads whole scratchpad (it could be pretty big, estimate 90MB/year, at moment of writing this message it was about 2MB). Obviously pool client have to store this scratchpad somewhere on disk, to avoid traffic overhead.

To check work of simpleminer you need to run daemon as usual, and than start simpleminer:
Code:
simpleminer --login=anyname --pass=anypas --pool-addr=127.0.0.1:50102
50102 - rpc port for testnet, i recommend you to try there, since it is possible there to find a block pretty fast. (To be able to work in testnet pass to cmake -D TESTNET=TRUE )

I've started support thread for developers:
https://bitcointalk.org/index.php?topic=628180.

So, everyone who is going to make pool - welcome!

PS: I'll answer to PM later, need to sleep some.


Awesome work Crypto - with you as our dev this coin is bound for very good things in the future!
33zer0w0lf
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile WWW
May 28, 2014, 08:26:00 AM
 #727

are you saying that simpleminer has been including in the latest source on github?

http://www.extremepool.org (BCN) (MRO) (QCN) (XDN) (BBR) (AEON) (ORION) (DSH) (CRR) (INF8)
enerbyte
Hero Member
*****
Offline Offline

Activity: 556
Merit: 501


View Profile
May 28, 2014, 01:05:22 PM
Last edit: August 28, 2015, 11:49:59 PM by enerbyte
 #728

Woohoo! Find my first block Smiley
BorisTheSpider
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
May 28, 2014, 01:18:16 PM
 #729

Hello friends!

Seeing strong need for a pool, as well as realizing the complexity associated with the our original approach to PoW (blockchain-based hash), i spent the last two days working hard on implementing protocol, that makes able to create pool.

Now simpleminer is back, and several instances could work directly with daemon, as a clear example of shared work with blockchain-based scratchpad.
Hope this code let developers to organize pools for our project.


Why creating pool for BBR is a good idea ?
1. No doubt that a lot of people looking for pool for BBR.
2. You can offer alias registering service with pool, and get extra earning for each block. I'm personally ready to pay 5 BBR to pool for registering for me alias @obama(later i'll sell it to him)
3. Unlike other CryptoNote-family, BBR PoW hash is easy to check - less resources and less complicated backend (you don't need tho check only every hundredth share).


Technical details:
Notice: it's just a working example, it is not production code, and it's not optimized for trafic usage, so it's up to the pool developer.
Notice: At start simpleminer downloads whole scratchpad (it could be pretty big, estimate 90MB/year, at moment of writing this message it was about 2MB). Obviously pool client have to store this scratchpad somewhere on disk, to avoid traffic overhead.

To check work of simpleminer you need to run daemon as usual, and than start simpleminer:
Code:
simpleminer --login=anyname --pass=anypas --pool-addr=127.0.0.1:50102
50102 - rpc port for testnet, i recommend you to try there, since it is possible there to find a block pretty fast. (To be able to work in testnet pass to cmake -D TESTNET=TRUE )

I've started support thread for developers:
https://bitcointalk.org/index.php?topic=628180.

So, everyone who is going to make pool - welcome!

PS: I'll answer to PM later, need to sleep some.


Awesome work Crypto - with you as our dev this coin is bound for very good things in the future!


Yes thanks CZ, the pace of development is great.
shojayxt
Legendary
*
Offline Offline

Activity: 896
Merit: 1001



View Profile
May 28, 2014, 03:49:45 PM
 #730

Don't give up solo mining.  I just had a dual core I3 find a block after 1 day. 
atleticofa
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250


View Profile
May 28, 2014, 04:26:35 PM
 #731

We need to have a final name!
33zer0w0lf
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile WWW
May 28, 2014, 06:02:00 PM
 #732

I have chatted with Zone117x, he is the developer of the cryptonote open source pool.
http://www.extremepool.org
http://mro.extremepool.org
http://bcn.extremepool.org
http://bcn.extremepool.org

He has told me he is backed up with projects but if a bounty was available and worthwhile he could look at the code and make it work with boolberry.

So this is the office notice of a POOL BOUNTY!!

donation address for the pool bounty are 1EAMdQQcYjw1PYY2oZPmywTNra3sySBds8VjvfyoZPBjU7ZY4YwcVUebhGp6xQRpr1ZdVYUvP21kTHW gAHZk4hViUH4mq7c

I will setup a specific thread given updates on the balance as we go. 

PM or message me with questions.

http://www.extremepool.org (BCN) (MRO) (QCN) (XDN) (BBR) (AEON) (ORION) (DSH) (CRR) (INF8)
33zer0w0lf
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile WWW
May 28, 2014, 06:06:55 PM
 #733

https://bitcointalk.org/index.php?topic=629161.new#new

http://www.extremepool.org (BCN) (MRO) (QCN) (XDN) (BBR) (AEON) (ORION) (DSH) (CRR) (INF8)
btc-mike
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1001



View Profile
May 28, 2014, 06:35:34 PM
 #734

I have chatted with Zone117x, he is the developer of the cryptonote open source pool.
http://www.extremepool.org
http://mro.extremepool.org
http://bcn.extremepool.org
http://bcn.extremepool.org

He has told me he is backed up with projects but if a bounty was available and worthwhile he could look at the code and make it work with boolberry.

So this is the office notice of a POOL BOUNTY!!

donation address for the pool bounty are 1EAMdQQcYjw1PYY2oZPmywTNra3sySBds8VjvfyoZPBjU7ZY4YwcVUebhGp6xQRpr1ZdVYUvP21kTHW gAHZk4hViUH4mq7c

I will setup a specific thread given updates on the balance as we go. 

PM or message me with questions.

That is great. I was going to contact him today.

I will send 10 BBR and then add more each time I find a block (about once a day).
33zer0w0lf
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile WWW
May 28, 2014, 06:45:18 PM
 #735

I have chatted with Zone117x, he is the developer of the cryptonote open source pool.
http://www.extremepool.org
http://mro.extremepool.org
http://bcn.extremepool.org
http://bcn.extremepool.org

He has told me he is backed up with projects but if a bounty was available and worthwhile he could look at the code and make it work with boolberry.

So this is the office notice of a POOL BOUNTY!!

donation address for the pool bounty are 1EAMdQQcYjw1PYY2oZPmywTNra3sySBds8VjvfyoZPBjU7ZY4YwcVUebhGp6xQRpr1ZdVYUvP21kTHW gAHZk4hViUH4mq7c

I will setup a specific thread given updates on the balance as we go. 

PM or message me with questions.

That is great. I was going to contact him today.

I will send 10 BBR and then add more each time I find a block (about once a day).

that's great!  very excited, I will have the pool up shortly, not working of course until we fix the code.

http://www.extremepool.org (BCN) (MRO) (QCN) (XDN) (BBR) (AEON) (ORION) (DSH) (CRR) (INF8)
33zer0w0lf
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile WWW
May 28, 2014, 08:28:03 PM
 #736

TEASER!!!!

http://bbr.extremepool.org/


code needs work so that simpleminer can connect to it!! but its ready as soon as we can get enough bounty to pay the dev.

https://bitcointalk.org/index.php?topic=629161.0

http://www.extremepool.org (BCN) (MRO) (QCN) (XDN) (BBR) (AEON) (ORION) (DSH) (CRR) (INF8)
sussex
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500



View Profile
May 28, 2014, 09:00:18 PM
 #737

We need to have a final name!

There's nothing wrong with boolberry.........
g0re79
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250


I´ve got a picture! Haha!


View Profile WWW
May 28, 2014, 09:23:11 PM
 #738

We need to have a final name!

There's nothing wrong with boolberry.........

+12
Boolberry sounds great (for the fourth or fifth hearing:) - at least there is nothing to be confused with (try to google it and You´ll see)

Don´t deal with crappy shitcoins and stop wasting electricity
Support real science instead
[/url]
bengtåke
Sr. Member
****
Offline Offline

Activity: 309
Merit: 250

confused developer


View Profile
May 29, 2014, 02:26:24 AM
 #739

We need to have a final name!

There's nothing wrong with boolberry.........

+12

Just keep boolberry, the name is fine

BTC: 1HoDKDn6Gk7mggAhbRVA1T9UAU8kFAA6sy
richiela
Hero Member
*****
Offline Offline

Activity: 937
Merit: 1000


View Profile
May 29, 2014, 07:54:31 AM
 #740

Hey guys... figure we'd add one more cryptonote coin to our family! Smiley

https://www.bittrex.com/Market/Index?MarketName=BTC-BBR

happy trading!


Thanks,
richie@bittrex

Looking for the best exchange? -> https://bittrex.com
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 [37] 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 ... 486 »
  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!