Bitcoin Forum
June 30, 2024, 11:47:25 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 ... 272 »
2741  Alternate cryptocurrencies / Altcoin Discussion / Re: [OSC]Open Source Giveaway Thread[OPN SRC COIN]77 coins per user on: September 10, 2013, 06:40:47 AM
24vhyRXmCp78HjoHo6chfLdk53HDjkpKCR

Thanks / Gracias

De Nada. Sent up to here
2742  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Bitcoin - Scrypt Version - ASIC Resistant on: September 10, 2013, 06:28:11 AM
this is just silly scrypt is 1000 times less efficient than SHA 256, and thus is inferior. not to mention it drastically reduces the lifecycle of your gpu.
2743  Alternate cryptocurrencies / Altcoin Discussion / Re: Vote: Should Nanotokens Be Revived (Please Sticky) on: September 10, 2013, 05:59:40 AM
please vote
2744  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [OSC] Windows Binaries and Source Now available[OPN SRC COIN] on: September 10, 2013, 05:57:17 AM
i need some ideas for bounties. it has to be something useful for the coin. any thoughts?
2745  Alternate cryptocurrencies / Altcoin Discussion / Re: -- Your Favorite Crypto-Coins - Mine, Buy and Pump -- on: September 10, 2013, 05:54:20 AM
3 months in the making, Open Source Coin

https://bitcointalk.org/index.php?topic=268705.0
2746  Alternate cryptocurrencies / Altcoin Discussion / Vote: Should Nanotokens Be Revived (Please Sticky) on: September 10, 2013, 05:36:11 AM
Recently Nanotokens has forked and died for the billionth time. Since i "released" the coin, i feel a general responsibility for those who have invested in it. Due to its continual decline in hashrate, i frequently urged my concerns over investing in the coin and encouraged people to liquidate there assets however, my pleas were ignored. now that the coin is dead, everyone wants to hold me responsible. (one particular investor of 20 btc(over 80% of the coins in existence, is chinese so i feel like perhaps my warnings went unheard to foreigners reading the chat.)

So I ask you, should i pay shakezula to fix Nanotokens and rerelease it in hopes that those who have invested in it may be able to retain their investments? I don't have any money do this, however i have good credit with shakezula and i'm sure he will let me make payments. We all know that Shakezula is the secret genius behind most cryptocoins in existence, so i feel that he is the only man for the job.

So voice your opinion by voting on what should be done. I cast my vote. lets have yours.
2747  Alternate cryptocurrencies / Altcoin Discussion / Re: NanoTokens Information thread on: September 10, 2013, 05:20:54 AM
NAN has been welcomed by Chinese investors and now mad hype, and I'm being irresponsible and causing a huge loss.
https://btcltc.com/home/index/nan_ltc

like, would you please fill me in on what is going on? i heard about a guy losing 20 btc worth of NAN when withdrawing from cryptsy. are you the guy from cryptsy chat?
2748  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [OSC] Windows Binaries and Source Now available[OPN SRC COIN] on: September 10, 2013, 05:02:22 AM
Quote
int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
{

static const int64 nMinimumCoin = 0.0777 * COIN;

   int64 nSubsidy = 0.0777 * COIN;                                                                         //genesis

   if (nHeight > 0 && nHeight < 7) {nSubsidy = 0 * COIN;}                                                // zero
   else if (nHeight == 7) {nSubsidy = 177777 * COIN;}                                                   // Premine
   else if (nHeight > 7 && nHeight < 1000) {nSubsidy = (2.5 * COIN;}                                   // IRC Launch
   else if (nHeight > 1000 && nHeight < 1337) {nSubsidy = (0.0777 * COIN;}                            // low instamine official launch
   else if (nHeight == 1337) {nSubsidy = 1337 * COIN;}                                               //L33T
   else if (nHeight > 1337 && nHeight < 4000) {nSubsidy = 1 * COIN;}                                //final launch period
   else if (nHeight > 4000 && nHeight < 8000) {nSubsidy = 22.5 * COIN;}                           // 22.5 coin
   else if (nHeight > 8000 && nHeight < 16000) {nSubsidy = 15 * COIN;}                            // 15 coins per block
   else if (nHeight > 16000 && nHeight < 32000) {nSubsidy = 7.5 * COIN;}                         // 7.5 coins per block
   else if (nHeight > 32000 && nHeight < 64000) {nSubsidy = 6 * COIN;}                          // 6 coins per block
   else if (nHeight > 64000 && nHeight < 77777) {nSubsidy = 4 * COIN;}                         // 4 coins
   else if (nHeight == 77777) {nSubsidy = 10000 * COIN;}                                      // bonus reward
   else if (nHeight > 77777 && nHeight < 128000) {nSubsidy = 4 * COIN;}                      // 4 coins
   else if (nHeight > 128000 && nHeight < 256000) {nSubsidy = 3 * COIN;}                    // 3 coins
   else if (nHeight > 256000 && nHeight < 400000) {nSubsidy = 2.5 * COIN;}                 // 2.5 coins
   else {nSubsidy = 1 * COIN;}              

    // Subsidy is cut in half every 400 thousand blocks
    nSubsidy >>= (nHeight / 400000);
  
   // Minimum subsidy
    if (nSubsidy < nMinimumCoin)
    {
        nSubsidy = nMinimumCoin;
    }

    return nSubsidy + nFees;

this coding is a joke, like nSubsidy = (0.0777 * COIN; (does it compile?) nSubsidy = 0 * COIN; etc, will never work because of
   if (nSubsidy < nMinimumCoin)
    {
        nSubsidy = nMinimumCoin;
    }

also 177777 * COIN is huge compared to the average coins per block, no point to mine a coin like this...

yeah, it compiles and mines just fine buddy. we're on block 1021. the first 6 blocks were set to 0 to test if the minimum would work. the premine isn't that large, once rewards of 22.5 blocks kick in it won't matter. besides, i'm keeping a ledger

stay classy
2749  Alternate cryptocurrencies / Altcoin Discussion / Re: [OSC]Open Source Giveaway Thread[OPN SRC COIN]77 coins per user on: September 10, 2013, 05:00:25 AM
yLRmwavwbcoUUKrk1DtMhikL9YTwNsihP

thank you!

you are very welcome. Thank you for supporting Open Source!
2750  Economy / Services / Re: Get paid weekly for your signature on: September 10, 2013, 04:34:57 AM

I appreciate you spreading the word r3wt! I'm working on making the site more robust before I start any other major marketing efforts.


no problem Seal, it was the least i could do. thanks again! look forward to seeing your service grow!
2751  Alternate cryptocurrencies / Altcoin Discussion / Re: [OSC]Open Source Giveaway Thread[OPN SRC COIN]77 coins per user on: September 10, 2013, 04:25:15 AM
irc server address?

block 1000 has been reached, binaries are now available in the main thread.
2752  Alternate cryptocurrencies / Altcoin Discussion / Re: [OSC]Open Source Giveaway Thread[OPN SRC COIN]77 coins per user on: September 10, 2013, 03:30:51 AM
where can download the client? Huh

Binaries(Includes Installer package)
until block 1000 is reached, you must go to IRC channel #fridaynightunix(go to http://webchat.freenode.com and choose a user name and pass then type
Code:
/join #fridaynightunix
. when you get there ask for the download link  to  the windows client. this is to limit instamine and early hoarding.
2753  Alternate cryptocurrencies / Altcoin Discussion / [OSC]Open Source Giveaway Thread[OPN SRC COIN]77 coins per user on: September 10, 2013, 03:21:17 AM
**This thread will be ongoing until the wealth has been distributed around to the userbase**
Main thread link for binaries & source:
https://bitcointalk.org/index.php?topic=268705.0


Giveaway Instructions
1.set this image as your avatar

http://www.majesti.co/temp/ocoin_small.png

2.post your address

3.receive a gift!

Thanks for supporting Open Source!
2754  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [OSC] Windows Binaries and Source Now available[OPN SRC COIN] on: September 10, 2013, 03:19:46 AM
zQFryWBQNojqeRQhntJmDJLtYbDBnHmaQ
 Grin



oh, why not. here ya go:

Code:
Status: 1/unconfirmed, broadcast through 9 nodes
Date: 9/9/2013 22:19
To: zQFryWBQNojqeRQhntJmDJLtYbDBnHmaQ
Debit: -77.00 OSC
Transaction fee: -0.0001 OSC
Net amount: -77.0001 OSC
Transaction ID: 3ba88826e334e9a0be7e646a438929b95222f16a4332eabc90a5a31d49eba0cc
Transaction comment:
text:consolation prize. thanks for choosing Open Source! :)
2755  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [OSC] Windows Binaries and Source Now available[OPN SRC COIN] on: September 10, 2013, 03:09:07 AM
25ipHRMtfaLsm54G6XybFsH8DDxbAxickP

Thanks

you win the first address contest. congrats

777 coins sent!
Code:
Status: 1/unconfirmed, broadcast through 6 nodes
Date: 9/9/2013 22:08
To: 25ipHRMtfaLsm54G6XybFsH8DDxbAxickP
Debit: -777.00 OSC
Transaction fee: -0.0001 OSC
Net amount: -777.0001 OSC
Transaction ID: 192434fe999bd004af0ab3d1d9255daa21ce63be9cd032c696fa7b8f6cce3b15
Transaction comment:
text:you win the bounty contest! love, r3wt


2756  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [OPN SRC] Windows Binaries and Source Now available on: September 10, 2013, 02:40:39 AM
launched!!!
2757  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [OPN SRC] Open Source COIN Releases Today! on: September 10, 2013, 01:45:46 AM
its about to be on!

so is that now or? And is the pool ready?

yes, we are releasing very shortly. and presently, i am unable to contact ahmed over the past day about the pool. he is still reserved to operate one of the pools, but there is a bounty for another pool as well. for now it is solo mining and i will include a .BAT file for windows solomining with the installer package.

the installer will install:

program and all dlls
Ocoin.conf to the Appdata folder
Desktop Shortcuts for Ocoin and Cgminer Solominer Batch file.

Ah im out then missing both the launch time and not having a pool plus the premine. Good luck though.

it hasn't launched yet, but i can't force you to mine it, so thank you for your well wishes and have a good one. this has been months in the making.
2758  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [OPN SRC] Open Source COIN Releases Today! on: September 10, 2013, 01:41:55 AM
its about to be on!

so is that now or? And is the pool ready?

yes, we are releasing very shortly. and presently, i am unable to contact ahmed over the past day about the pool. he is still reserved to operate one of the pools, but there is a bounty for another pool as well. for now it is solo mining and i will include a .BAT file for windows solomining with the installer package.

the installer will install:

program and all dlls
Ocoin.conf to the Appdata folder
Desktop Shortcuts for Ocoin and Cgminer Solominer Batch file.
2759  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [OPN SRC] Open Source COIN Releases Today! on: September 10, 2013, 01:34:13 AM
its about to be on!
2760  Other / Beginners & Help / Re: What ASIC manufacturer you choose if you were to buy one? on: September 09, 2013, 10:09:17 PM
you left out the only real ASIC company, ASICMINER.
Pages: « 1 ... 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 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 ... 272 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!