Bitcoin Forum
July 02, 2024, 09:58:01 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 189 190 191 192 193 194 195 196 197 198 199 200 ... 513 »
2981  Bitcoin / Bitcoin Discussion / Re: Bitcoin XT has code which downloads your IP address to facilitate blacklisting on: August 19, 2015, 08:37:15 AM
This is really fucked up. Basically a 'feature' like this is the anti-ethos to what Bitcoin was created for, just like increasing the blocksize squeezes out the users it was made to help most

Just when I thought my respect for these two couldn't get any lower..
2982  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | UPDATE to 5.2 | Bonuses for discovering Prime Numbers | on: August 19, 2015, 07:38:42 AM
What happened to gorillabucks ? is it still alive??

Butthurt "vigilantes" used their hacking skills to kill it. Hopefully, these vigilantes won't use their knowledge to unleash their yoke on other coins with the same vulnerabilities. <sigh>

The things done to BUCKS aren't even the worst that are possible on those chains. After reviewing the entire codebase to fix this issue, there were many other things found to be vulnerable. Anything cloned from the same base is going to get fucked, really hard, sooner or later when more people see the same thing

so literally BUCKS would only be worth saving if it was swapped to another basecode/blockchain? lol would it be possible to cut out all coins created by the exploiting wallets ? or did they dump shit loads into the markets ? (were doing so would hurt people who paid btc for it)

 I did really like BUCKS staking, I'm not a fan of masternodes  but the random staking returns were awesome... sometimes 1 and sometimes 10 lol and everything inbetween. on a codebase like NEG's that uses time in it's equation for weight (so even smaller wallets can eventually compete and find blocks)

Thanks for the 5.2 update hehe and waiting till block 225k  Cool

BUCKS actually copied its staking system from Variance, which used the same base as NEG, so that is very easy to bring back
2983  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | UPDATE to 5.2 | Bonuses for discovering Prime Numbers | on: August 19, 2015, 04:45:35 AM
What happened to gorillabucks ? is it still alive??

Butthurt "vigilantes" used their hacking skills to kill it. Hopefully, these vigilantes won't use their knowledge to unleash their yoke on other coins with the same vulnerabilities. <sigh>

The things done to BUCKS aren't even the worst that are possible on those chains. After reviewing the entire codebase to fix this issue, there were many other things found to be vulnerable. Anything cloned from the same base is going to get fucked, really hard, sooner or later when more people see the same thing
2984  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | UPDATE to 5.2 | Bonuses for discovering Prime Numbers | on: August 19, 2015, 04:20:18 AM
What happened to gorillabucks ? is it still alive??

Basically on life support. I would move on if I were you
2985  Economy / Speculation / Re: BTC Price FLASH CRASH! on: August 19, 2015, 04:14:55 AM
I wish the Winklevoss twins would make a statement about this to calm stuff down.   Undecided

Lol who gives a shit what they think
2986  Bitcoin / Bitcoin Discussion / Re: Nakamoto speaks on BitcoinXT on: August 19, 2015, 03:34:59 AM
Unsigned = Fake
2987  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | HARD FORK | Bonuses for discovering Prime Numbers | on: August 19, 2015, 03:00:17 AM
Lucky I didn't leave my wallet on before leaving for work, will update as soon as possible.

You would have been fine, it doesn't kick in until block 225k

Mac Wallet coming your way  Smiley

Good shit, thanks for this. Gonna go make the pretty button now for it  ;p
2988  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | HARD FORK | Bonuses for discovering Prime Numbers | on: August 19, 2015, 02:59:23 AM
Lots of outdated nodes are still online

Whoever is still running 4.0 and getting negative stakes still REALLY needs to update to 5.2

If you are unsure of your version number, open the debug window and look on the information tab
2989  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | HARD FORK | Bonuses for discovering Prime Numbers | on: August 19, 2015, 01:43:29 AM
Lucky I didn't leave my wallet on before leaving for work, will update as soon as possible.

You would have been fine, it doesn't kick in until block 225k
2990  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | HARD FORK | Bonuses for discovering Prime Numbers | on: August 19, 2015, 01:21:45 AM



Negativity is infectious
Current Version: 5.2.x.x






UPDATE IMMEDIATELY
Final Changes (as long as they work) | Kicks in at Block 225,000
  • Normal Reward is now 1 NEG (Down from 10)
  • Primes will still reward 10,000 NEG (Unchanged)
  • Switched to modulo, rather than division/rounding
  • New formula for calculating Prime Candidates
  • Will produce more accurate results and process faster
  • Added Non-Prime Logging to debug.log
  • Search for 'NOT Prime' in debug.log
  • Will record nCandidate, as well as it's lowest divisible integer
  • Recording for Primes is now more user-friendly
  • To see your Primes, search for 'Congratulations' in debug.log

Bootstrap for the blockchain can be found here:
https://drive.google.com/file/d/0B9tCHKMNZjyYTTZ3bm5IcTkxZDA

Negativity 5.2 Reward Code Below:
Code:
int64 GetProofOfStakeReward(int64 nCoinAge, int nHeight)
{
int64 nSubsidy = (nHeight - (nHeight + (nHeight % 10))) * COIN;
int64 nAttempt = 2;
int64 nCandidate = (nCoinAge * nHeight) + (nCoinAge % 1000000);
double nResult = 1;

if (nHeight > 225000) {
do {
nResult = (nCandidate % nAttempt);
if (nResult == 0) {
                 printf("NOT Prime: %d\n", nCandidate);
                 printf("Divisible By: %d\n", nAttempt);
nSubsidy = 1 * COIN;
return nSubsidy;
} else {
nAttempt = (nAttempt + 1);
}
} while (nAttempt < nCandidate);
               printf("Congratulations! Prime Number FOUND: %d\n, 10,000 NEG Rewarded!", nCandidate);
               printf("%d\n is not divisible by any number other than itself and 1.. 10,000 NEG Rewarded!", nCandidate);
nSubsidy = 10000 * COIN;
return nSubsidy;
}
    if (nHeight > 101000) {
do {
nResult = (nCandidate / nAttempt);
if (floor(nResult) == nResult) {
nSubsidy = 10 * COIN;    
return nSubsidy;
} else {
nAttempt = (nAttempt + 1);
}
} while (nAttempt < nCandidate);
nSubsidy = 10000 * COIN;
return nSubsidy;
} else {
if ((nHeight % 2) < 1)
    {
        nSubsidy = ((nHeight % 100) + 1) * COIN;
    }
}
    return nSubsidy;
}


Lots of old versions still out there. Get updated, everyone!
2991  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | HARD FORK | Bonuses for discovering Prime Numbers | on: August 19, 2015, 12:25:03 AM



Negativity is infectious
Current Version: 5.2.x.x






UPDATE IMMEDIATELY
Final Changes (as long as they work) | Kicks in at Block 225,000
  • Normal Reward is now 1 NEG (Down from 10)
  • Primes will still reward 10,000 NEG (Unchanged)
  • Switched to modulo, rather than division/rounding
  • New formula for calculating Prime Candidates
  • Will produce more accurate results and process faster
  • Added Non-Prime Logging to debug.log
  • Search for 'NOT Prime' in debug.log
  • Will record nCandidate, as well as it's lowest divisible integer
  • Recording for Primes is now more user-friendly
  • To see your Primes, search for 'Congratulations' in debug.log

Bootstrap for the blockchain can be found here:
https://drive.google.com/file/d/0B9tCHKMNZjyYTTZ3bm5IcTkxZDA

Negativity 5.2 Reward Code Below:
Code:
int64 GetProofOfStakeReward(int64 nCoinAge, int nHeight)
{
int64 nSubsidy = (nHeight - (nHeight + (nHeight % 10))) * COIN;
int64 nAttempt = 2;
int64 nCandidate = (nCoinAge * nHeight) + (nCoinAge % 1000000);
double nResult = 1;

if (nHeight > 225000) {
do {
nResult = (nCandidate % nAttempt);
if (nResult == 0) {
                 printf("NOT Prime: %d\n", nCandidate);
                 printf("Divisible By: %d\n", nAttempt);
nSubsidy = 1 * COIN;
return nSubsidy;
} else {
nAttempt = (nAttempt + 1);
}
} while (nAttempt < nCandidate);
               printf("Congratulations! Prime Number FOUND: %d\n, 10,000 NEG Rewarded!", nCandidate);
               printf("%d\n is not divisible by any number other than itself and 1.. 10,000 NEG Rewarded!", nCandidate);
nSubsidy = 10000 * COIN;
return nSubsidy;
}
    if (nHeight > 101000) {
do {
nResult = (nCandidate / nAttempt);
if (floor(nResult) == nResult) {
nSubsidy = 10 * COIN;    
return nSubsidy;
} else {
nAttempt = (nAttempt + 1);
}
} while (nAttempt < nCandidate);
nSubsidy = 10000 * COIN;
return nSubsidy;
} else {
if ((nHeight % 2) < 1)
    {
        nSubsidy = ((nHeight % 100) + 1) * COIN;
    }
}
    return nSubsidy;
}
2992  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Crave | Takeover | Masternodes | Dark Assets | I2P Integration | Team Elet on: August 18, 2015, 10:23:40 PM
Pssst.. your codebase is EXTREMELY vulnerable. Be wary
2993  Alternate cryptocurrencies / Announcements (Altcoins) / Re: (X11 Ninja) (Nitrous - N2O) POW/POS Permanent Node on: August 18, 2015, 10:18:53 PM
MASSIVE Premine lol
2994  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | I2P | Market [MODERATED] on: August 18, 2015, 09:18:35 PM
Their other coin is still getting developments lol

Blow their lid off, so we can steer clear of their future scams.

Well, if you are following altcoins its easy to spot them. Circ is what spots talking about.

Actually it's not, but I can add that to my list if it's true lol

Here's a hint..  ooh ooh aah aah

Well, I know icm integrated mn's and darksend/instantx to Tron in exchange of a bot from west.

And yeah, I thought you were refering to circ, ooh ooh aah aah is so obvious right from the beginning.

Hm.. seems the rabbit hole is deeper than even I thought..

Meh, really? Didn't they invite you to their secret society of altcoin developers already?

If that happened, I would decline. I'm a lone wolf when it comes to coin development and don't really work with anyone. People do services and stuff for my coins, but I am the only one that does the coin itself, I don't need a team for that

But to answer your question.. no, I am not in ANY group of devs. I am me
2995  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | I2P | Market [MODERATED] on: August 18, 2015, 08:23:37 PM
Their other coin is still getting developments lol

Blow their lid off, so we can steer clear of their future scams.

Well, if you are following altcoins its easy to spot them. Circ is what spots talking about.

Actually it's not, but I can add that to my list if it's true lol

Here's a hint..  ooh ooh aah aah

Well, I know icm integrated mn's and darksend/instantx to Tron in exchange of a bot from west.

And yeah, I thought you were refering to circ, ooh ooh aah aah is so obvious right from the beginning.

Hm.. seems the rabbit hole is deeper than even I thought..
2996  Alternate cryptocurrencies / Altcoin Discussion / Re: Is Bitcoin XT an alt-coin that rewards with free coins current bitcoin users? on: August 18, 2015, 08:00:50 PM
The amount of misinformation in this thread alone, not to mention the massive amount of bullshit in other thread, is the exact reason that I, and many, many others, have lost all respect for Gavin and Mike, who both now have 0 credibility
2997  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CRAVE 1st POS Masternodes | Dark Assets | I2P | Market [MODERATED] on: August 18, 2015, 07:44:24 PM
Their other coin is still getting developments lol

Blow their lid off, so we can steer clear of their future scams.

Well, if you are following altcoins its easy to spot them. Circ is what spots talking about.

Actually it's not, but I can add that to my list if it's true lol

Here's a hint..  ooh ooh aah aah
2998  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | HARD FORK | Bonuses for discovering Prime Numbers | on: August 18, 2015, 07:28:50 PM
No. You have crossed a line that you can only cross once; there is no going back. You obviously care about your reputation more than I care about mine

You say you only post about me in one thread.. well here's three, that neither of us are the OP of, that I found without even really looking very hard. Took two seconds, so I'm sure there's plenty more. This doesn't even include any MMXIV, GorillaTeeth, Variance, or GorillaBucks thread that you also ruined

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

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

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

I have no interest in being civil with you. At all. But I see you're already deleting the posts I'm responding to in this thread, so I assume all the other shit talking will magically disappear today, too   Roll Eyes
2999  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | HARD FORK | Bonuses for discovering Prime Numbers | on: August 18, 2015, 07:01:40 PM
No dice
3000  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | HARD FORK | Bonuses for discovering Prime Numbers | on: August 18, 2015, 06:25:32 PM
So I make you over a bunch of BTC with my coins, then you help destroy what I worked on for over 16 months, threaten me with lawsuits, try to extort me for a higher-than-normal swap rate that will screw over other people, talk massive shit nonstop about me in like 20 threads, and cost me over 30 BTC since I don't want to dump on the people still in it.. all until you have a coin you care about and now you want a truce?

That's some pussy shit, dude.. I'll pass. I'm going to crush anything you ever do in crypto. Quietly, silently, I will destroy it
Pages: « 1 ... 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 189 190 191 192 193 194 195 196 197 198 199 200 ... 513 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!