Bitcoin Forum
May 26, 2024, 05:33:44 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
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 ... 118 »
361  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] GoldCoin (GLD) - The Gold Standard of Digital Currency | Important Update on: July 31, 2013, 01:43:16 AM
soooo, with this update, you hope to make your current holdings, more valuable, before dumping them? Still no word on making GLD useful, eh?
362  Alternate cryptocurrencies / Altcoin Discussion / Re: Pet Peeve - begging request of new coin developers to change name of wallet file on: July 31, 2013, 12:52:16 AM
Well such an educated response.  Thanks for showing us who you really are.

Everyone already knows who I am. For someone with such contempt for "coin devs", you seem to have a shit ton of wallets, for this to be a concern for you...Pro tip, when backing up your wallet, right click, create new folder, and name it the name of the coin...*mind blown*
363  Economy / Lending / Re: CoinLenders :: Get bitcoin loans, and get fee rebates on your deposits! on: July 30, 2013, 11:47:32 PM
Personally, I think Coinlenders is a bit of a scam. They take your 0.05 BTC, deny your loan, outright, without so much as a reason why, or any sort of counter offer on a loan...So, apparently, if I want to retry with a different rate or loan term, it will cost me an additional 0.05 BTC.
And, they use that stupid BTC wallet, that you can't reset the password for, or sign up for a new wallet, so, double fucked Angry
Hi Hydroponica,

I've been lending coins since 2012, and I apologize but some loans are inherently -EV / non-profitable. Your reputation thread has nothing: https://bitcointalk.org/index.php?topic=261206.0

Yeah, one of those cycles. Can't borrow BTC, because you have no rep. Can't earn rep, because you can't borrow BTC. Thanks anyways :/
364  Economy / Long-term offers / Re: Looking for long term loan, for mining rig on: July 30, 2013, 11:34:52 PM
Protip.  Have fewer children

I have good rep, and, I have offered collateral. FFS, the owner of Cryptsy is vouching for me. I fail to see the issue
365  Economy / Lending / Re: CoinLenders :: Get bitcoin loans, and get fee rebates on your deposits! on: July 30, 2013, 11:26:37 PM
Personally, I think Coinlenders is a bit of a scam. They take your 0.05 BTC, deny your loan, outright, without so much as a reason why, or any sort of counter offer on a loan...So, apparently, if I want to retry with a different rate or loan term, it will cost me an additional 0.05 BTC.
And, they use that stupid BTC wallet, that you can't reset the password for, or sign up for a new wallet, so, double fucked Angry
366  Alternate cryptocurrencies / Altcoin Discussion / Re: Pet Peeve - begging request of new coin developers to change name of wallet file on: July 30, 2013, 09:55:52 PM
Would some of you "coin developers", which i throw this term out loosely, please please please take the time to rename the wallet.dat file to something different for each coin.. I am so sick of every single coin having the same wallet name.. I mean if I found a wallet.dat file right now I would have no idea what coin it was for.. how long would it take me to figure this out?  So could some of you please rename the friggin wallet file to something relevant to the coin it is attached too.

Thank you and good luck to all!

Well, since you asked so nicely, go fuck yourself
367  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Scripts to predict superblocks JKC,SXC,DMD,ELP,GDC,GIL,LKY,NUG,PHS,SPT,STR on: July 30, 2013, 03:32:38 PM
GIL does not have superblocks, 50 is the intended block reward, and I randomized it, to add a bit of dynamic to it. As well, it is completely random, and impossible to predict. There is an equal chance each block, to get 10 coins, as there is to get 50 coins.

Point taken about GIL not having superblocks per se.   And points for having the longest if/else block for rewards I've seen so far!

But the variable reward for the next block seems very predictable.   I'm looking at the code at https://github.com/hydroponica/gil/blob/master/src/main.cpp#L847   
Code:
...
        std::string cseed_str = prevHash.ToString().substr(8,7);
        const char* cseed = cseed_str.c_str();
        long seed = hex2long(cseed);

        int rand = generateMTRandom(seed, 400000);
...

It is seeding the Mersenne Twister with the a number derived from the previous hash.    Thus we can always determine what reward the next block will have.   Already proved this with the luckycoin script.

Hmmm, I guess that is true...But I wouldn't say GIL's reward is worth the effort, specially if you are dealing with a PPLNS pool.

Agreed.  This is more of an academic exercise at the moment  Wink

Well good luck, I hate coins with ridiculous super blocks, so, I hope you kill em all
368  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Scripts to predict superblocks JKC,SXC,DMD,ELP,GDC,GIL,LKY,NUG,PHS,SPT,STR on: July 30, 2013, 02:44:42 PM
GIL does not have superblocks, 50 is the intended block reward, and I randomized it, to add a bit of dynamic to it. As well, it is completely random, and impossible to predict. There is an equal chance each block, to get 10 coins, as there is to get 50 coins.

Point taken about GIL not having superblocks per se.   And points for having the longest if/else block for rewards I've seen so far!

But the variable reward for the next block seems very predictable.   I'm looking at the code at https://github.com/hydroponica/gil/blob/master/src/main.cpp#L847   
Code:
...
        std::string cseed_str = prevHash.ToString().substr(8,7);
        const char* cseed = cseed_str.c_str();
        long seed = hex2long(cseed);

        int rand = generateMTRandom(seed, 400000);
...

It is seeding the Mersenne Twister with the a number derived from the previous hash.    Thus we can always determine what reward the next block will have.   Already proved this with the luckycoin script.

Hmmm, I guess that is true...But I wouldn't say GIL's reward is worth the effort, specially if you are dealing with a PPLNS pool.
369  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Scripts to predict superblocks JKC,SXC,DMD,ELP,GDC,GIL,LKY,NUG,PHS,SPT,STR on: July 30, 2013, 02:34:09 PM
GIL does not have superblocks, 50 is the intended block reward, and I randomized it, to add a bit of dynamic to it. As well, it is completely random, and impossible to predict. There is an equal chance each block, to get 10 coins, as there is to get 50 coins.
370  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GIL, fun and fast. Coming soon to Cryptsy on: July 30, 2013, 02:18:52 PM
I am still mining GIL on and off.



same here and I have noticed the difficulty has been increasing

As designed.Network Hashrate: 18.56 MH/s, which is pretty good
371  Alternate cryptocurrencies / Altcoin Discussion / Re: A list of pointless points and ones with a future? on: July 30, 2013, 12:49:15 PM
I was wondering if we might be able to come up with a small or in this case large list of coins that are pointless and offer nothing.

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

just saying Wink

And who the fuck is that guy, to decide what coins are important and which ones aren't?
372  Alternate cryptocurrencies / Altcoin Discussion / Re: >>>>>>> HOBO LOVE!!!! <<<<<<< FREE HOBO!!!<<<<<< on: July 30, 2013, 10:05:58 AM
EiQBz3wgkXe8KNMXcxm6URHr4zbyaHLbVA
373  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GIL, fun and fast. Coming soon to Cryptsy on: July 29, 2013, 07:46:30 PM
on Cryp and die same MST Cheesy never belive Hyp

I don't like you, I just wish I could punch you in your stupid face. MST currently has 8 MH/s on the network, is actively trading on Cryptsy, and is profitable to mine. I know retards like you, rely heavily on CoinChoose to do you thinking for you, but maybe, just this once, you should dust off the old calculator, before running your stupid, fat mouth
374  Alternate cryptocurrencies / Altcoin Discussion / Re: [XNC] XenCoin Giveaway! on: July 29, 2013, 07:20:10 PM
XgRYHQ92S5caM6fkByp73rx8PhDgrgtPWp
375  Alternate cryptocurrencies / Altcoin Discussion / Re: Cryptogenic Bullion (CGB) - PROMOTIONAL GIVEAWAY! on: July 29, 2013, 07:19:04 PM
5hAFCUDot9zy5ioNir4KhYAkcHwfUreS3F
376  Alternate cryptocurrencies / Altcoin Discussion / Re: [AMC] AmericanCoin Giveaway, 10 AMC each on: July 29, 2013, 07:18:05 PM
B27QkW4d9eXPxM5XYZczkpRHhbpqcBc7FK
377  Other / Archival / Re: [GLD] GLDCoin Giveaway! on: July 29, 2013, 07:16:26 PM
E7fqjzHt8owRQussJFnV53AYRhF8oZvrtF
378  Alternate cryptocurrencies / Altcoin Discussion / Re: Free FeatherCoin Giveaway! Over 700 coins left for grabs! on: July 29, 2013, 07:14:53 PM
6n4qqjAgmHmgfsCeZG3Fbt9x9pzhmyNHMw
379  Alternate cryptocurrencies / Altcoin Discussion / Re: NVC giveaway !!! Trade it, use it, enjoy it. Only 2nd after BTC by price on: July 29, 2013, 07:14:12 PM
4ctZzH2PKThzQ1vJLAbEqEzTjpheez72FU
380  Alternate cryptocurrencies / Altcoin Discussion / Re: [GIVEAWAY] [CMC] 1 Cosmoscoin per person on: July 29, 2013, 05:38:38 PM
BzgW9bVkV1kGX8KGMwsbmptVevPNEwMpGp
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 ... 118 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!