Bitcoin Forum
May 10, 2024, 09:23:14 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 [581] 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 ... 7012 »
  Print  
Author Topic: [ANN][DASH] Dash (dash.org) | First Self-Funding Self-Governing Crypto Currency  (Read 9722517 times)
TanteStefana
Full Member
***
Offline Offline

Activity: 280
Merit: 100


The Future Of Work


View Profile
March 30, 2014, 07:22:00 PM
 #11601

If I had my wallet stolen, what method can retrieve it?


This is basically the same as Bitcoin.  If you lose your wallet, you lost it.  Be careful be responsible.  And I'm saying that with proper fear for my coin which I will put into cold storage as soon as Darksend is complete (or allows over 10 coins in a transaction, LOL)

█ ANN THREAD █
﹝Whitepaper﹞
【BLACKBOX OS】
The Future of Work. Decentralized.
TELEGRAM﹞﹝FACEBOOK
TWITTERYOUTUBE
1715332994
Hero Member
*
Offline Offline

Posts: 1715332994

View Profile Personal Message (Offline)

Ignore
1715332994
Reply with quote  #2

1715332994
Report to moderator
1715332994
Hero Member
*
Offline Offline

Posts: 1715332994

View Profile Personal Message (Offline)

Ignore
1715332994
Reply with quote  #2

1715332994
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715332994
Hero Member
*
Offline Offline

Posts: 1715332994

View Profile Personal Message (Offline)

Ignore
1715332994
Reply with quote  #2

1715332994
Report to moderator
TanteStefana
Full Member
***
Offline Offline

Activity: 280
Merit: 100


The Future Of Work


View Profile
March 30, 2014, 07:24:57 PM
 #11602

Lotterymining is proud to introduce the next stage:





http://dice.lotterymining.com

Really?  REALLY?

I was able to keep away from gambling, but this is freakin tempting!  I'm a terrible gambler (hence why I've come to cryptos, lol) UGH!

█ ANN THREAD █
﹝Whitepaper﹞
【BLACKBOX OS】
The Future of Work. Decentralized.
TELEGRAM﹞﹝FACEBOOK
TWITTERYOUTUBE
CHAOSiTEC
Legendary
*
Offline Offline

Activity: 1358
Merit: 1002


View Profile
March 30, 2014, 07:27:01 PM
 #11603

Lotterymining is proud to introduce the next stage:





http://dice.lotterymining.com

Really?  REALLY?

I was able to keep away from gambling, but this is freakin tempting!  I'm a terrible gambler (hence why I've come to cryptos, lol) UGH!

so am i lol

but 25% of dice proceedings go to the bounties list to help further our efforts :-)

node-vps.com - Tron / Masternode hosting services
Jungian
Legendary
*
Offline Offline

Activity: 930
Merit: 1010


View Profile
March 30, 2014, 07:44:39 PM
 #11604

Lotterymining is proud to introduce the next stage:





http://dice.lotterymining.com

Really?  REALLY?

I was able to keep away from gambling, but this is freakin tempting!  I'm a terrible gambler (hence why I've come to cryptos, lol) UGH!

so am i lol

but 25% of dice proceedings go to the bounties list to help further our efforts :-)

Make investments possible (just dice style) and this be huge not only for you and the pool, but the whole coin.
Doge dice made doge coin.

I think Monero (XMR) is very interesting.
https://moneroeconomy.com/faq/why-monero-matters
CHAOSiTEC
Legendary
*
Offline Offline

Activity: 1358
Merit: 1002


View Profile
March 30, 2014, 07:55:23 PM
 #11605

Lotterymining is proud to introduce the next stage:





http://dice.lotterymining.com

Really?  REALLY?

I was able to keep away from gambling, but this is freakin tempting!  I'm a terrible gambler (hence why I've come to cryptos, lol) UGH!

so am i lol

but 25% of dice proceedings go to the bounties list to help further our efforts :-)

Make investments possible (just dice style) and this be huge not only for you and the pool, but the whole coin.
Doge dice made doge coin.
looking into it... thanks for the suggestion :-)

node-vps.com - Tron / Masternode hosting services
apple_talk
Sr. Member
****
Offline Offline

Activity: 473
Merit: 250


"Proof-of-Asset Protocol"


View Profile
March 30, 2014, 08:34:47 PM
 #11606

while understanding the code, can someone please explain what is this...

   int64 nSubsidy = 0;
    if(nHeight >= 5465) {
        if((nHeight >= 17000 && dDiff > 75) || nHeight >= 24000) { // GPU/ASIC difficulty calc
            // 2222222/(((x+2600)/9)^2)
            nSubsidy = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0)));
            if (nSubsidy > 25) nSubsidy = 25;
            if (nSubsidy < 5) nSubsidy = 5;
        } else { // CPU mining calc
            nSubsidy = (11111.0 / (pow((dDiff+51.0)/6.0,2.0)));
            if (nSubsidy > 500) nSubsidy = 500;
            if (nSubsidy < 25) nSubsidy = 25;
        }
    } else {
        nSubsidy = (1111.0 / (pow((dDiff+1.0),2.0)));
        if (nSubsidy > 500) nSubsidy = 500;
        if (nSubsidy < 1) nSubsidy = 1;
    }

& how does it work.

I am not a programmer, but I believe nHeight is block number, Diff is the difficulty, 2222222/(((x+2600)/9)^2) this is the calculation with x= difficulty, that sets the payout and that's about all I can say, LOL

And I believe nSubsidy is the amount paid out for the block.

So I believe this is the section of code that calculates payout amounts

of course I know that, what I don't understand how the calculation works, it it detects GPU/ASIC & CPU. From what block to what block reward is calculated?


|
 
 
50
|
 




                       ▄
           ▄▄▄▄▄▄███████
▄▄▄▄█████  █████████████
█████████  █████████████
█████████  █████████████
█████████  █████████████
█████████  █████████████
█████████  █████████████

█████████  █████████████
█████████  █████████████
█████████  █████████████
█████████  █████████████
█████████  █████████████
▀▀▀▀█████  █████████████
           ▀▀▀▀▀▀███████
                       ▀
|
 
 
$1,5 M
|



        ▄▄▄█████████▄▄▄
      ▄█████▀▀███▀▀█████▄
    ▄███▀     ███     ▀███▄
   ████       ███       ████
  ███▀                   ▀███
 ███▀                     ▀███
▄██▀       █████████       ▀██▄
███                         ███
███        █████████        ███
███                         ███
▀██▄       █████████       ▄██▀
 ███▄                     ▄███
  ███▄                   ▄███
   ████       ███       ████
    ▀███▄     ███     ▄███▀
      ▀█████▄▄███▄▄█████▀
        ▀▀▀█████████▀▀▀
|
 
|
 
<>
<>
<>
<>
 
GITHUB
TWITTER
YOUTUBE
FACEBOOK
CHAOSiTEC
Legendary
*
Offline Offline

Activity: 1358
Merit: 1002


View Profile
March 30, 2014, 08:39:20 PM
 #11607

while understanding the code, can someone please explain what is this...

   int64 nSubsidy = 0;
    if(nHeight >= 5465) {
        if((nHeight >= 17000 && dDiff > 75) || nHeight >= 24000) { // GPU/ASIC difficulty calc
            // 2222222/(((x+2600)/9)^2)
            nSubsidy = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0)));
            if (nSubsidy > 25) nSubsidy = 25;
            if (nSubsidy < 5) nSubsidy = 5;
        } else { // CPU mining calc
            nSubsidy = (11111.0 / (pow((dDiff+51.0)/6.0,2.0)));
            if (nSubsidy > 500) nSubsidy = 500;
            if (nSubsidy < 25) nSubsidy = 25;
        }
    } else {
        nSubsidy = (1111.0 / (pow((dDiff+1.0),2.0)));
        if (nSubsidy > 500) nSubsidy = 500;
        if (nSubsidy < 1) nSubsidy = 1;
    }

& how does it work.

I am not a programmer, but I believe nHeight is block number, Diff is the difficulty, 2222222/(((x+2600)/9)^2) this is the calculation with x= difficulty, that sets the payout and that's about all I can say, LOL

And I believe nSubsidy is the amount paid out for the block.

So I believe this is the section of code that calculates payout amounts

of course I know that, what I don't understand how the calculation works, it it detects GPU/ASIC & CPU. From what block to what block reward is calculated?



it doesnt detect which a block has been mined with, its calculated out of how popular the coin is

node-vps.com - Tron / Masternode hosting services
janos666
Hero Member
*****
Offline Offline

Activity: 588
Merit: 500


View Profile
March 30, 2014, 09:55:30 PM
 #11608

I am trying to mine this coin ever since sph-sgminer came out with X11 OpenCL GPU mining support. And it proved to be really difficult to do it effectively and reasonably. But I think I am on track now, only small tweaks might come from here.

And now I just realized that my 3x290 + 1x290X rig (used to be one more 290X but that one recently burned out Tongue) takes out 1/15 of the whole network speed. Cheesy
I guess I could easily mine it directly without the help of a pool (may be I actually will, just because that feels better for me for some reason I can't shape into words). And now I miss my 5. card even more.

Scrypt ASIC is on our doorsteps and Litecoin doesn't wish to adapt (follows BTC which I think is very ironic after it's main feature was to get rid of the BTC ASIC, but now it welcomes it's own ASIC...).
Vertcoin tried but also failed in my eyes (their N factor scaling it still too light, it won't take too much time and effort until a scrypt ASIC will be able to mine that as well).

And even if it will prove to be comparably easy to create an ASIC for X11, there is still something about DarkCoin which I think will make it unique between these third generation (post- SHA2 and Scrypt(N)) coins. Not just DarkSend, or DGW, but the whole feeling around it. Cool

I think this could easily be the next most popular coin in the BTC, LTC/DOGE, DRK/?, VTC/? line in less than a year. So, I think this coin will be the first after BTC which I won't immediately exchange for BTC or EUR but keep (most of it) on a paper wallet.

So, if you are on auto-sell, don't worry about my 1/15 claim of the net speed just now.
TanteStefana
Full Member
***
Offline Offline

Activity: 280
Merit: 100


The Future Of Work


View Profile
March 30, 2014, 09:56:12 PM
 #11609


so am i lol

but 25% of dice proceedings go to the bounties list to help further our efforts :-)

Aw, that's nice!  Gonna have to (not) try this, LOL

█ ANN THREAD █
﹝Whitepaper﹞
【BLACKBOX OS】
The Future of Work. Decentralized.
TELEGRAM﹞﹝FACEBOOK
TWITTERYOUTUBE
TanteStefana
Full Member
***
Offline Offline

Activity: 280
Merit: 100


The Future Of Work


View Profile
March 30, 2014, 10:00:11 PM
 #11610

while understanding the code, can someone please explain what is this...

   int64 nSubsidy = 0;
    if(nHeight >= 5465) {
        if((nHeight >= 17000 && dDiff > 75) || nHeight >= 24000) { // GPU/ASIC difficulty calc
            // 2222222/(((x+2600)/9)^2)
            nSubsidy = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0)));
            if (nSubsidy > 25) nSubsidy = 25;
            if (nSubsidy < 5) nSubsidy = 5;
        } else { // CPU mining calc
            nSubsidy = (11111.0 / (pow((dDiff+51.0)/6.0,2.0)));
            if (nSubsidy > 500) nSubsidy = 500;
            if (nSubsidy < 25) nSubsidy = 25;
        }
    } else {
        nSubsidy = (1111.0 / (pow((dDiff+1.0),2.0)));
        if (nSubsidy > 500) nSubsidy = 500;
        if (nSubsidy < 1) nSubsidy = 1;
    }

& how does it work.

I am not a programmer, but I believe nHeight is block number, Diff is the difficulty, 2222222/(((x+2600)/9)^2) this is the calculation with x= difficulty, that sets the payout and that's about all I can say, LOL

And I believe nSubsidy is the amount paid out for the block.

So I believe this is the section of code that calculates payout amounts

of course I know that, what I don't understand how the calculation works, it it detects GPU/ASIC & CPU. From what block to what block reward is calculated?



it doesnt detect which a block has been mined with, its calculated out of how popular the coin is

I believe
// GPU/ASIC difficulty calc
is a note and not part of the code, and it should include cpu as well Smiley 

█ ANN THREAD █
﹝Whitepaper﹞
【BLACKBOX OS】
The Future of Work. Decentralized.
TELEGRAM﹞﹝FACEBOOK
TWITTERYOUTUBE
janos666
Hero Member
*****
Offline Offline

Activity: 588
Merit: 500


View Profile
March 30, 2014, 10:02:13 PM
 #11611

I believe
// GPU/ASIC difficulty calc
is a note and not part of the code, and it should include cpu as well Smiley  

Ever heard of comments in code?
// It looks like this.

/* Or may be this
or something similar,
depends on the language syntax. */

# Can also be like this.
AngusCanine
Legendary
*
Offline Offline

Activity: 1414
Merit: 1001

To weird to live To rare to die


View Profile WWW
March 30, 2014, 10:02:50 PM
 #11612


stupid question but how do I back up the wallet data from the old wallet ?

NOT STUPID at all!!!  Very important to know how to back up your wallet, you could lose all your coin if you don't!!!  Two ways.  

1. With your wallet open, go to the menu File => Backup Wallet.  Choose a location to save it and give it a name, I usually use the type of coin "Darkcoin_wallet.dat"

2. With the wallet closed, go to your wallet folder, in Windows, it's in C:/Users/AppData/Roaming/Darkcoin/  Find the wallet.dat file and copy it then save to another location.  In Ubuntu at least, it's in your home file, hidden (so choose show hidden) and is called .darkcoin.

To restore a wallet, you can just load and sync a wallet, then replace the wallet.dat file with the one you saved Smiley

so when I back up the old xcoin wallet  I need to find it in c: the copy it and add it to the new darkcoin wallet folder(anywhere in folder?)
im trying to get 222 coins sent from old wallett new wallet

So you have two distinct versions of "wallet.dat" ? One with the "old" address and one with the new ? And you have transferred 222 DRK from the old to the new one ?


yes exactly
1. Save the two somewhere with distinct names e.g. "wallet-old.dat" and "wallet-new.dat".
2. Put a copy of your new wallet ("wallet.dat") in the folder ./AppData/Roaming/Darkcoin/
3. Download the newest client on http://darkcoin.io/
4. Run it and let it update the blocks

I cant find this appdata file? im using windows 8
TanteStefana
Full Member
***
Offline Offline

Activity: 280
Merit: 100


The Future Of Work


View Profile
March 30, 2014, 10:08:56 PM
 #11613

CHAOSiTEC and eduffield:

2 things, how does the dice game know I deposited to the generated account number?  Do I need to save that account number?

and when I just sent 1 dark to it, I WAS NOT asked for my passphrase!  Even so my wallet still shows it is encrypted!

also, I don't know if it just takes some time, but my deposit isn't pending or anything at the dice site but it does show it's been withdrawn in my wallet, I turned darksend off for this

Note, I'm using the beta wallet Smiley

█ ANN THREAD █
﹝Whitepaper﹞
【BLACKBOX OS】
The Future of Work. Decentralized.
TELEGRAM﹞﹝FACEBOOK
TWITTERYOUTUBE
TanteStefana
Full Member
***
Offline Offline

Activity: 280
Merit: 100


The Future Of Work


View Profile
March 30, 2014, 10:17:43 PM
 #11614

I believe
// GPU/ASIC difficulty calc
is a note and not part of the code, and it should include cpu as well Smiley  

Ever heard of comments in code?
// It looks like this.

/* Or may be this
or something similar,
depends on the language syntax. */

# Can also be like this.

yes, isn't that what I said?  I guess I said 'note' instead of 'comment', not good at lingo and not a programmer, LOL  From what I could tell of the updated question, I think that part confused them?  Maybe I misunderstood?

█ ANN THREAD █
﹝Whitepaper﹞
【BLACKBOX OS】
The Future of Work. Decentralized.
TELEGRAM﹞﹝FACEBOOK
TWITTERYOUTUBE
CHAOSiTEC
Legendary
*
Offline Offline

Activity: 1358
Merit: 1002


View Profile
March 30, 2014, 10:22:22 PM
 #11615

CHAOSiTEC and eduffield:

2 things, how does the dice game know I deposited to the generated account number?  Do I need to save that account number?

and when I just sent 1 dark to it, I WAS NOT asked for my passphrase!  Even so my wallet still shows it is encrypted!

also, I don't know if it just takes some time, but my deposit isn't pending or anything at the dice site but it does show it's been withdrawn in my wallet, I turned darksend off for this

Note, I'm using the beta wallet Smiley

what is your user name on dice.lotterymining.com

node-vps.com - Tron / Masternode hosting services
TanteStefana
Full Member
***
Offline Offline

Activity: 280
Merit: 100


The Future Of Work


View Profile
March 30, 2014, 10:24:19 PM
 #11616

CHAOSiTEC and eduffield:

2 things, how does the dice game know I deposited to the generated account number?  Do I need to save that account number?

and when I just sent 1 dark to it, I WAS NOT asked for my passphrase!  Even so my wallet still shows it is encrypted!

also, I don't know if it just takes some time, but my deposit isn't pending or anything at the dice site but it does show it's been withdrawn in my wallet, I turned darksend off for this

Note, I'm using the beta wallet Smiley

what is your user name on dice.lotterymining.com

Ooops, LOL, I was supposed to make a user name?  LOL, I was able to just "deposit"  I thought it was using my ip or something?? LOL

No user name

See?  You need to make this idiot proof, and I'm the useful idiot to help test this out, aren't I great?
 
LOL, I sent you the transaction details, LOL

I've been given a player alias but deposit hasn't shown up yet  Wink

█ ANN THREAD █
﹝Whitepaper﹞
【BLACKBOX OS】
The Future of Work. Decentralized.
TELEGRAM﹞﹝FACEBOOK
TWITTERYOUTUBE
CHAOSiTEC
Legendary
*
Offline Offline

Activity: 1358
Merit: 1002


View Profile
March 30, 2014, 10:31:13 PM
 #11617

CHAOSiTEC and eduffield:

2 things, how does the dice game know I deposited to the generated account number?  Do I need to save that account number?

and when I just sent 1 dark to it, I WAS NOT asked for my passphrase!  Even so my wallet still shows it is encrypted!

also, I don't know if it just takes some time, but my deposit isn't pending or anything at the dice site but it does show it's been withdrawn in my wallet, I turned darksend off for this

Note, I'm using the beta wallet Smiley

what is your user name on dice.lotterymining.com

Ooops, LOL, I was supposed to make a user name?  LOL, I was able to just "deposit"  I thought it was using my ip or something?? LOL

No user name

See?  You need to make this idiot proof, and I'm the useful idiot to help test this out, aren't I great?
 
LOL, I sent you the transaction details, LOL

I've been given a player alias but deposit hasn't shown up yet  Wink
under account what name where you given.. player_???

node-vps.com - Tron / Masternode hosting services
Kai Proctor
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500


01100100 01100001 01110011 01101000


View Profile
March 30, 2014, 10:33:01 PM
 #11618


stupid question but how do I back up the wallet data from the old wallet ?

NOT STUPID at all!!!  Very important to know how to back up your wallet, you could lose all your coin if you don't!!!  Two ways.  

1. With your wallet open, go to the menu File => Backup Wallet.  Choose a location to save it and give it a name, I usually use the type of coin "Darkcoin_wallet.dat"

2. With the wallet closed, go to your wallet folder, in Windows, it's in C:/Users/AppData/Roaming/Darkcoin/  Find the wallet.dat file and copy it then save to another location.  In Ubuntu at least, it's in your home file, hidden (so choose show hidden) and is called .darkcoin.

To restore a wallet, you can just load and sync a wallet, then replace the wallet.dat file with the one you saved Smiley

so when I back up the old xcoin wallet  I need to find it in c: the copy it and add it to the new darkcoin wallet folder(anywhere in folder?)
im trying to get 222 coins sent from old wallett new wallet

So you have two distinct versions of "wallet.dat" ? One with the "old" address and one with the new ? And you have transferred 222 DRK from the old to the new one ?


yes exactly
1. Save the two somewhere with distinct names e.g. "wallet-old.dat" and "wallet-new.dat".
2. Put a copy of your new wallet ("wallet.dat") in the folder ./AppData/Roaming/Darkcoin/
3. Download the newest client on http://darkcoin.io/
4. Run it and let it update the blocks

I cant find this appdata file? im using windows 8

http://cybertext.wordpress.com/2012/05/29/cant-see-the-appdata-folder/
Kai Proctor
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500


01100100 01100001 01110011 01101000


View Profile
March 30, 2014, 10:35:15 PM
 #11619

@CHAOSiTEC The balance doesn't display for me the new amount after each roll (I'm using Firefox).
TanteStefana
Full Member
***
Offline Offline

Activity: 280
Merit: 100


The Future Of Work


View Profile
March 30, 2014, 10:36:55 PM
 #11620

under account what name where you given.. player_???

Already sent that to you Smiley

Balance showed up, not sure if you did that?

█ ANN THREAD █
﹝Whitepaper﹞
【BLACKBOX OS】
The Future of Work. Decentralized.
TELEGRAM﹞﹝FACEBOOK
TWITTERYOUTUBE
Pages: « 1 ... 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 [581] 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 ... 7012 »
  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!