Bitcoin Forum
May 04, 2024, 09:36:28 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 [102] 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 ... 311 »
  Print  
Author Topic: [ANN][RIC] Riecoin: constellations POW *CPU* HARD FORK successful, world record  (Read 684948 times)
Supercomputing
Sr. Member
****
Offline Offline

Activity: 278
Merit: 250


View Profile
March 09, 2014, 05:23:24 AM
 #2021

Wow, RIC mining would have paid off two of my research servers trading @ 0.002 BTC/RIC. I do not pay attention to the market but perhaps it is time to.

@gatra: Any estimate on when your pool server code will be ready for testing? Also, for your GPU implementation, will you be targeting AMD or Nvidia GPUs?


sorry, my latest pool server code doesn't compile, yet..

Regarding gpu, I'm using opencl so it should work on both... I have AMD so that's what I'll work with. I worked with C in embedded systems for some years, but I'm new to gpus, so don't expect a very optimized thing. Right now I'm giving priority to pool code, and the only thing I have is -based on cgminer- the modpow function using "naive" multiplication (no karatsuba, montgomery or fft)

We will be looking forward to using your pool server. Hopefully it is open source so that we can easily add jh00's implementation of XPT (x.pushthrough) protocol and a tamper resistant developer's fee feature to it.

Electrical Engineering & Computer Science
http://www.eecs.mit.edu/
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
gatra (OP)
Hero Member
*****
Offline Offline

Activity: 583
Merit: 505


CTO @ Flixxo, Riecoin dev


View Profile WWW
March 09, 2014, 03:00:32 PM
 #2022

We will be looking forward to using your pool server. Hopefully it is open source so that we can easily add jh00's implementation of XPT (x.pushthrough) protocol and a tamper resistant developer's fee feature to it.

Of course it'll be open source, the idea is to have as many pools open as possible in order to bring decentralization and more people interested in RIC.
This should also set us appart from XPM which, as far as I know, doesn't have an open source pool implementation.

The protocol I'm trying is stratum, only some field lengths are modified (time, nonce). I already updated the cpuminer for this (not officially released because I couldn't test it yet-  ie it probably doesn't work). I you -or anyone- could later add support for XPT it would be cool.


           ▄▄▄██████████▄▄▄
       ▄▄██
██████████████████▄▄
     ▄█
█████▀████████████▀██████▄
   ▄█
█████████████████████████████▄
  ▄█
█████████▄█▀▀██████████████████▄
 ▄█
███████████▀██████▄▄█████▄███████▄
▄█
██████████▀██▄▄▄▄██▀▀▀▀▀███████████▄
█████████████▀▀██▀████████▀▀████████
█████████████▄█▀████████████████████
████████▀▀▀▀██▀▀▀▀██████████████████
▀█
██████▀▀▀▀██▀▀▀▀███████████████████▀
 ▀█
███████▄████▄▄███████████████████▀
  ▀█
███████████████████████████████▀
   ▀█
█████████████████████████████▀
     ▀█
█████▄████████████▄██████▀
       ▀▀██
██████████████████▀▀
           ▀▀▀██████████▀▀▀
riecoin       ▄▄█████████▄▄
    ▄██▀▀         ▀▀██▄
  ▄██▀              ▀██▄
 ▄██     ██▄▄          ██▄
▄██      █████▄▄        ██▄
██       ████████▄▄      ██
██       ███████████▄    ██
██       ██████████▀     ██
▀██      ███████▀       ██▀
 ▀██     ████▀         ██▀
  ▀██▄   █▀          ▄██▀
    ▀██▄▄         ▄▄██▀
       ▀▀█████████▀▀
.flixxo   
c.figgis
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
March 09, 2014, 07:46:25 PM
 #2023

We will be looking forward to using your pool server. Hopefully it is open source so that we can easily add jh00's implementation of XPT (x.pushthrough) protocol and a tamper resistant developer's fee feature to it.

Of course it'll be open source, the idea is to have as many pools open as possible in order to bring decentralization and more people interested in RIC.
This should also set us appart from XPM which, as far as I know, doesn't have an open source pool implementation.

The protocol I'm trying is stratum, only some field lengths are modified (time, nonce). I already updated the cpuminer for this (not officially released because I couldn't test it yet-  ie it probably doesn't work). I you -or anyone- could later add support for XPT it would be cool.


Excellent! We'll be operating a geographically redundant pool that should be very resistant to DDOS attacks, etc.
ThePeePs
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250


https://cryptassist.io


View Profile
March 09, 2014, 09:27:43 PM
 #2024

P2Pool code update:

I dug in to the P2Pool code base today, and from the looks of it, we are going to need a full blown PoW module (like the scrypt module).  I unfortunately cant write it with my basic Python knowledge  and no C knowledge. (Please see code snippets below for explanation)  If somene can write it, PM me and I'll setup a test node to hammer out any bugs.


From p2pool/p2pool/bitcoin/networks.py:
Bitcoin section:
Code:
POW_FUNC=data.hash256

Litecoin section:
Code:
POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data))

Full code can be found at https://github.com/blixnood/p2pool

Code for the "Scrypt module" https://github.com/blixnood/p2pool/tree/master/litecoin_scrypt

THE ONE STOP SOLUTION FOR THE CRYPTO WORLD
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
Facebook   /  Twitter   /  Reddit   /  Medium   /  Youtube   /
      ▄▄█████████▄▄
   ▄█████████████████▄
  █████▀▀  ███  ▀▀█████
 ████     █████     ████
████     ███████
███▀    ████ ████
███▄   ████   ████
████  ████▄▄▄▄▄████  ████
 ███████████████████████
  █████▄▄       ▄▄█████
   ▀█████████████████▀
      ▀▀█████████▀▀

▄██▀▀▀▀▀▀▀▀▀▀▀▀▀██▄
▄██▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀██▄
▄█▀                       ▀█▄
▄▄▄▄ ▄█                           █▄ ▄▄▄▄
█   ███▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀███   █
▀▀█▀                                 ▀█▀▀
▄▀                                     ▀▄
▄▄▀▄▄▄▄                                 ▄▄▄▄▀▄▄
█       ▀▀▄                           ▄▀▀       █
█          █                         █          █
█▀▀▄▄▄▄▄▄▄███▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀███▄▄▄▄▄▄▄▀▀█
▒▀▄       ██▀▀▀▀▀▀▀▀▀▀▀▀█▀█▀▀▀▀▀▀▀▀▀▀▀▀██       ▄▀▒
▒█▀▀▀▀▄▄  █              ▀              █  ▄▄▀▀▀▀█▒
▒█      █ ▀▄                           ▄▀ █      █▒
▒▀▄▀▄▄▄▄▀  █▀▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀▀█  ▀▄▄▄▄▀▄▀▒
▒▒▒▀▄▄▄▄▄ █                             █ ▄▄▄▄▄▀▒▒▒
 ▒▒▒▒▒▒▀▀▀▀▀▄▄▄▄▄▄███████████████▄▄▄▄▄▄▀▀▀▀▒▒▒▒▒▒▒
██
██
██
██
██
██
██
██
██
██
██
██
lemons
Full Member
***
Offline Offline

Activity: 178
Merit: 100



View Profile
March 10, 2014, 04:24:10 AM
 #2025

I think  RIC price = XPM price
vinani
Member
**
Offline Offline

Activity: 106
Merit: 10


View Profile
March 10, 2014, 04:58:46 AM
 #2026

I think  RIC price = XPM price

When will it happen?
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
March 10, 2014, 05:08:07 AM
 #2027

I think  RIC price = XPM price
+1
I think  RIC price = XPM price

When will it happen?
< 150 hours
vinani
Member
**
Offline Offline

Activity: 106
Merit: 10


View Profile
March 10, 2014, 06:09:42 AM
 #2028


Cheesy Very excited, 2 Full member answer one Newbie question... I see the light at the end of the tunnel. Time to going UP, RieCoin!!!
Buratino
Legendary
*
Offline Offline

Activity: 1151
Merit: 1003


View Profile
March 10, 2014, 09:15:09 AM
 #2029

Are there any math attainments in Riecoin blockchain yet, like Primecoin records?

Zackgeno96
Hero Member
*****
Offline Offline

Activity: 1778
Merit: 520



View Profile
March 10, 2014, 07:13:59 PM
 #2030

<3 riecoin

.
.7 BTC  WELCOME BONUS!..
███████████████████████████
██████████▀▀▄▄▄▄▄ ▄▀▀██████
█████████▄██████ ████ ▀████
██████▀▀ ▄▄▄▄ ▀▀███▀▄██ ███
████▀   ██████   ▀██████ ██
███ ▄▄▄████████▄▄▄ ██▄▄▄ ██
██ █████▀    ▀█████ ████ ██
██  ▀██        ███▀ ███ ███
██   ▄██▄    ▄██▄   █▀▄████
███ ▄████████████▄ ████████
████▄▀███▀▀▀▀███▀▄█████████
██████▄▄      ▄▄███████████
███████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████▄▄▄█████▄▄▄████████████████████████████████████████████████████
██████████▄█████▄█▄███▄█▄██████████▄██▀▀▀████████████████████████████████████████████████████
██████████████▀████▄████▀██████████████████████████▄█████▄██▄█████▄████▄████▄████▄████████
█████████████████▐█████▌███████████▄█████▀███▀▀████████▀▀▀▀█████▀▀▀██████▀▀███▀▀███████████
██████████████▄████▀████▄██████████████████▄▄▄▄▄███▄▄▄▄█████▄▄▄████████████████████████
████████████████▀█▀███▀█▀██████████▀███████▀█████████▀█████▀██▀█████▀███████████████████████
██████████████████████████████▀▀▀████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
███████████████████████████
████████▀▀  ▐█▌  ▀▀████████
██████▄     ▐█▌     ▄██████
████ ▀██▄▄███████▄▄██▀ ████
███    ██▀▀  ▄  ▀▀██    ███
██    ██   ▄███▄   ██    ██
████████  ███████  ████████
██    ██  ▀▀ █ ▀▀  ██    ██
███    ██▄▄ ▀▀▀ ▄▄██    ███
████ ▄██▀▀██████▀▀▀██▄ ████
██████▀     ▐█▌     ▀██████
████████▄▄  ▐█▌  ▄▄████████
███████████████████████████
.
.30+  ALTCOINS AVAILABLE..
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
March 10, 2014, 07:24:39 PM
 #2031

10K total buy support for 0.00055  on Mintpal  Cool
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
March 10, 2014, 07:34:47 PM
 #2032

Is it just me or do riecoin-qt and riecoind take 5-10 minutes to start up every time?
glongsword
Full Member
***
Offline Offline

Activity: 314
Merit: 100



View Profile
March 11, 2014, 02:07:36 AM
 #2033

Is it just me or do riecoin-qt and riecoind take 5-10 minutes to start up every time?

They do for me, but I think if you solomine a coin early on you end up with a lot of addresses in your keypool, and that slows down start-up.
trny
Newbie
*
Offline Offline

Activity: 48
Merit: 0


View Profile
March 11, 2014, 06:38:06 AM
Last edit: March 11, 2014, 08:32:06 PM by trny
 #2034

User ysangkok on Reddit just posted this amazing block crawler with primes result listing for each block. Loving the WolframAlpha and SymPy Live primality tests.

https://darmstadt.goxadidi.dk/cgi-bin/block/block_crawler.py/

Note: Still needs transaction information from the blocks
Jules81
Newbie
*
Offline Offline

Activity: 32
Merit: 0


View Profile
March 11, 2014, 09:51:35 AM
Last edit: March 12, 2014, 10:21:37 AM by Jules81
 #2035

I also made some more optimized changes to my modded xptminer build to get even more 4ch/s for comparsion with dga's new release.

static linux bins for different arch you can grab here: http://go.ispire.me/1vo
Fee: 2%

Did you follow the "sieve all six to 50k" guideline?  I'd encourage you and other miner creators to be very clear about the size of the all-six sieve used -- we all benefit from having blocks be found at a fair rate.

I ask because a miner that violates that will be easy to detect and penalize server-side - so I'd caution people to always make sure their miners are playing by the game.

There is a guideline about 50k? ;-)

And no i didn't made any change to the source that will violate nor cheat.
northranger79510
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250

Riecoin and Huntercoin to rule all!


View Profile
March 11, 2014, 05:55:08 PM
 #2036

The price makes Riecoin looks so addicting to buy. I want to buy more but don't want to go in too hard.

Huntercoin: H9kttkrQidiQMG9NibmTgjgCKqWJMAkAXD
Riecoin: Like us on https://www.facebook.com/TheRiecoinCommunity
northranger79510
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250

Riecoin and Huntercoin to rule all!


View Profile
March 11, 2014, 06:03:40 PM
 #2037

Remember! We have our own forum. Join the growing community at Riecointalk.org

Huntercoin: H9kttkrQidiQMG9NibmTgjgCKqWJMAkAXD
Riecoin: Like us on https://www.facebook.com/TheRiecoinCommunity
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
March 11, 2014, 06:44:49 PM
 #2038

Remember! We have our own forum. Join the growing community at Riecointalk.org
*riecointalk.com

But riecointalk.org does redirect to riecointalk.com, does that mean Riecointalk.com owns Riecointalk.org? If so, why do we use a .COM domain name? com stands for commercial  Huh
northranger79510
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250

Riecoin and Huntercoin to rule all!


View Profile
March 11, 2014, 07:14:16 PM
 #2039

Now some of you may disagree, but Bitcointalk is probably one of the most important altcoin sites to post announcements on. It is where newbs and active investors come to chat with one another and look at the next coin to invest in (At least for me it is). Even if there is an altcoin forum, it is less attractive to join in on that forum than bitcointalk. So what I suggest for the members of Riecoin community is to make as much post on Riecoin thread on Bitcointalk.com as possible. We should always be on page 1. Most people are lazy. Lazy enough not to look at page 2 unless desperate (somewhat like Google searches). If we are always on Page 1 of Bitcointalk.com, Riecoin will become more noticed and people will look at it often. If we can increase page count by at least 2 per day, it would be a vast improvement in reaching our audiences. Right now, we are at like 0.5ish page count a day. We are on page 1 maybe 5-6 times a day? It should be always. I will do my best in making Riecoin on page 1 but I need your help since I wont always be on.

Huntercoin: H9kttkrQidiQMG9NibmTgjgCKqWJMAkAXD
Riecoin: Like us on https://www.facebook.com/TheRiecoinCommunity
surfer43
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


"Trading Platform of The Future!"


View Profile
March 11, 2014, 08:09:51 PM
 #2040

Now some of you may disagree, but Bitcointalk is probably one of the most important altcoin sites to post announcements on. It is where newbs and active investors come to chat with one another and look at the next coin to invest in (At least for me it is). Even if there is an altcoin forum, it is less attractive to join in on that forum than bitcointalk. So what I suggest for the members of Riecoin community is to make as much post on Riecoin thread on Bitcointalk.com as possible. We should always be on page 1. Most people are lazy. Lazy enough not to look at page 2 unless desperate (somewhat like Google searches). If we are always on Page 1 of Bitcointalk.com, Riecoin will become more noticed and people will look at it often. If we can increase page count by at least 2 per day, it would be a vast improvement in reaching our audiences. Right now, we are at like 0.5ish page count a day. We are on page 1 maybe 5-6 times a day? It should be always. I will do my best in making Riecoin on page 1 but I need your help since I wont always be on.
This idea sounds good, but no spamming!  Wink
Pages: « 1 ... 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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 [102] 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 ... 311 »
  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!