Bitcoin Forum
April 24, 2024, 10:34:20 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 [521] 522 523 524 525 526 527 528 529 530 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 ... 2123 »
  Print  
Author Topic: [XMR] Monero - A secure, private, untraceable cryptocurrency  (Read 4667061 times)
pookielax31
Sr. Member
****
Offline Offline

Activity: 462
Merit: 500



View Profile
July 23, 2014, 03:56:02 AM
 #10401

1713998060
Hero Member
*
Offline Offline

Posts: 1713998060

View Profile Personal Message (Offline)

Ignore
1713998060
Reply with quote  #2

1713998060
Report to moderator
The network tries to produce one block per 10 minutes. It does this by automatically adjusting how difficult it is to produce blocks.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713998060
Hero Member
*
Offline Offline

Posts: 1713998060

View Profile Personal Message (Offline)

Ignore
1713998060
Reply with quote  #2

1713998060
Report to moderator
1713998060
Hero Member
*
Offline Offline

Posts: 1713998060

View Profile Personal Message (Offline)

Ignore
1713998060
Reply with quote  #2

1713998060
Report to moderator
1713998060
Hero Member
*
Offline Offline

Posts: 1713998060

View Profile Personal Message (Offline)

Ignore
1713998060
Reply with quote  #2

1713998060
Report to moderator
nioc
Legendary
*
Offline Offline

Activity: 1624
Merit: 1008


View Profile
July 23, 2014, 04:01:08 AM
 #10402

Poloniex reports that they have worked with the Monero devs to improve transaction speeds for deposits and withdrawals.

Any idea what improvements are to be expected?

I've never transacted XMR on Poloniex, actually I tried to withdraw once and it didn't happen as they had an issue.

Today I finished my purchases of XMR on Poloniex and will start withdrawing a significant part.

smooth
Legendary
*
Offline Offline

Activity: 2968
Merit: 1198



View Profile
July 23, 2014, 04:13:28 AM
 #10403

An attacker, lets call him Mr X, who could make a significant financial gain by disrupting the Monero network and delaying transaction confirmations would not have to spend a huge amount to obtain the use of a 2M node botnet (interesting aside, from another rough calculation an average botnet could make $0.75/hr per 1000 nodes mining XMR currently) and use it for a DDoS attack against mining pools by sending bogus shares. The pools will ban each node for submitting bogus shares, but at their maximum rate that could only be 1000 banned every second

Another approach is for pools to limit the number (per time interval) of new addresses from which they will accept connections (and/or shares or blocks) at all. A DDOS as you described would lock out new users until countermeasures were deployed but existing users and the existing network would be unaffected.
AnonyMint
Hero Member
*****
Offline Offline

Activity: 518
Merit: 521


View Profile
July 23, 2014, 04:40:13 AM
Last edit: July 23, 2014, 05:10:25 AM by AnonyMint
 #10404

Your perspective is lacking depth of understanding.

The math I posted applies to any algorithm that uses randomized lookups from reading and writing to a table.

There are 1,000,000 random accesses of the inner loop of CryptoNight.

There are 131,072 individual 128 bit slots in the lookup table.

...

Your approach:  Dynamic recomputation.

The first flaw in your analysis:  Your l3scrypt seems, from what you wrote below, to use 512b (bit?  likely, if scrypt) entries.  CryptoNight uses 128 bit entries, which means that the cost of a 24 bit counter to indicate the last-modified-in round information for a particular value is still fairly significant in comparison to the original storage.

As an example, consider LOOKUP_GAP=2:
  1MB of full cache to store actual values + 64k*4bytes ~= 256KB = 1.25MB of space.

Correct ifIncorrect. You make your hash so slow that you can't deal with DDoS attacks (which is the case for CryptoNote), the size of the 'values' table needed to walk back each path of computation to trade computation for space, becomes larger than the space to store the values normally.

Whereas in L3crypt I have 512B entries in order to make the hash fast enough and still cover 1MB of cache to keep it in L3 cache in order to defeat economies-of-scale with Tilera cpus, GPUs, and ASICs.

So agreed CryptoNote in that case (1MB/16B table with 128-bit, i.e. 16B, elements with 1M writes) defeats the dynamic lookup gap strategy, but at the cost of making the hash too slow to defeat DDoS attacks.

If you actually design hash that won't subject your coin to the threat of being DDoS destroyed in the future, then the dynamic lookup gap strategy can't be avoided. Do some calculations to verify.

On further thought, I remember why I had dismissed the genre of parameters CryptoNote chose ("1MB/16B table with 128-bit, i.e. 16B, elements with 1M writes"), because it doesn't stop the lookup-gap strategy I outlined. The reason is because if the random access is uniformly distributed (and if it isn't you have other attack vectors), then after each quantity of random r/w accesses that exceed ~2X the number elements in your memory table (for the case of reducing the storage by a factor of 2), then the lookup 'values' table can be pruned, because older entries are no longer directly pointed to by any latter entry that corresponds to an entry in the 'elements' table.

Thus the CryptoNote parameters chosen don't necessarily defeat the strategy for trading computation for smaller cache requirement. They do make the proof-of-work much slower than it needs to be.


Also I noticed you ignored my upthread point about cache set associativity and the TLB. When we know all the accesses are 128-bit aligned and they do not span a larger space in main memory, then the ASIC can do optimizations on the design of the cache making faster and or use less logic gates. The CPU's cache is generalized. ASICs can always kick butt because they take advantage of specialized optimizations.

unheresy.com - Prodigiously Elucidating the Profoundly ObtuseTHIS FORUM ACCOUNT IS NO LONGER ACTIVE
AnonyMint
Hero Member
*****
Offline Offline

Activity: 518
Merit: 521


View Profile
July 23, 2014, 04:58:43 AM
 #10405

I would actually describe the Monero mining network as semi-centralised, because most of the pools configure each other as priority nodes so they are all connected by 1-3 network hops, meaning new blocks only in fact require 4 hops to propagate on average.

...

In the future those key factors protecting Monero may well change, with more pools online and more decentralisation, plus a much higher tx generation rate resulting in significantly larger blocks requiring longer to validate. This could make it possible for Mr X to launch a more disruptive attack so it is worth considering methods of mitigating that risk, one of the more obvious being to increase the block time, which has been discussed before and I dont believe it has been ruled out by the dev team yet. Monero is still at the stage where major changes to the protocol could be made if deemed necessary, it is not set in stone yet.

Lucid explanation. Yes it impacts the tradeoff between decentralization vs. block period (transaction delay). And it also impacts something much more critically important about anonymity which is currently not published. In short, you won't get real NSA-proof anonymity without a fast proof-of-work hash. You will know why when it is published.

unheresy.com - Prodigiously Elucidating the Profoundly ObtuseTHIS FORUM ACCOUNT IS NO LONGER ACTIVE
AnonyMint
Hero Member
*****
Offline Offline

Activity: 518
Merit: 521


View Profile
July 23, 2014, 05:02:38 AM
 #10406

One minor technical correction though:

Quote
In the future those key factors protecting Monero may well change, with more pools online and more decentralisation, plus a much higher tx generation rate resulting in significantly larger blocks requiring longer to validate.

As things stand today larger blocks don't take much longer to validate. The PoW hash is performed not directly on the entire block but on a much faster hash of the block, so it is essentially independent of the block size. The transactions within a block also need to be validated, but currently that is much faster than the PoW. That could change if database lookups are required. Note that if the dominant portion of block validation time is database lookups, then the speed of the PoW becomes unimportant to validation speed.

I don't know if CryptoNote or Monero has implemented a strategy of eliminating the need to transmit (not validate) the entire block when a block is solved, but if not then you missed his point. He is talking about how block size impacts propagation time which impacts orphan rate. See my cited footnotes.

unheresy.com - Prodigiously Elucidating the Profoundly ObtuseTHIS FORUM ACCOUNT IS NO LONGER ACTIVE
smooth
Legendary
*
Offline Offline

Activity: 2968
Merit: 1198



View Profile
July 23, 2014, 05:09:19 AM
 #10407

One minor technical correction though:

Quote
In the future those key factors protecting Monero may well change, with more pools online and more decentralisation, plus a much higher tx generation rate resulting in significantly larger blocks requiring longer to validate.

As things stand today larger blocks don't take much longer to validate. The PoW hash is performed not directly on the entire block but on a much faster hash of the block, so it is essentially independent of the block size. The transactions within a block also need to be validated, but currently that is much faster than the PoW. That could change if database lookups are required. Note that if the dominant portion of block validation time is database lookups, then the speed of the PoW becomes unimportant to validation speed.

I don't know if CryptoNote or Monero has implemented a strategy of eliminating the need to transmit (not validate) the entire block when a block is solved, but if not then you missed his point. He is talking about how block size impacts propagation time which impacts orphan rate. See my cited footnotes.

In fact he said "longer to validate" not "longer to propagate." That is good because the former is not a Monero-specific issue at all so it doesn't belong on this thread.

BTW, if you "don't know if ... Monero  has implemented" something, please don't bring it up here (except, perhaps, once to ask if Monero has implemented it, if you are unable to determine that yourself by consulting the source code). This is not a thread for general discussion of coin design topics that apply to virtually every coin.



AnonyMint
Hero Member
*****
Offline Offline

Activity: 518
Merit: 521


View Profile
July 23, 2014, 05:18:06 AM
 #10408

In fact he said "longer to validate" not "longer to propagate."

He implied "validate" includes the time to wait on propagation before validation can be started (part of the process of validation).

That is good because the former is not a Monero-specific issue at all so it doesn't belong on this thread.

His valid implied point is it is Monero-specific when combined with Monero's short block period and the higher potential for DDoS due to the slow proof-of-proof validation.

BTW, if you "don't know if ... Monero  has implemented" something, please don't bring it up here

I was allowing for the possibility that you were not misinterpreting and instead if Monero doesn't transmit the transactions when the block is solved, then your response would have been correct. I didn't have time to go learn what is the current status on Monero on that design point.

unheresy.com - Prodigiously Elucidating the Profoundly ObtuseTHIS FORUM ACCOUNT IS NO LONGER ACTIVE
AnonyMint
Hero Member
*****
Offline Offline

Activity: 518
Merit: 521


View Profile
July 23, 2014, 05:23:51 AM
 #10409

At this point I would ask that you take this discussion elsewhere. There may well be (theoretical, unidentified and undemonstrated) cryptographic or other issues with Cryptonight, but that is a tiny subset of topics of general interest to the user base and potential user base of Monero.

The proof-of-work algorithm is absolutely essentially to crypto-currency. It is the fundamental building block upon which nearly everything else of the coin hinges.

Thanks for not appreciating me trying to help you while you still have the chance to fix what is broken.

But that is fine, go ahead and leave it broken. You will learn the hard way. And with your attitude, now you know why I wouldn't participate in developing for your design by consensus. It is abject failure.

And remember this discussion started because I corrected you when you gave a user the factually incorrect answer, leading him to believe that ASICs are not a realistic threat.

Okay I will abide by your desire to censor this thread. I will not reply unless someone makes a very serious critique of what I wrote that requires a response.

unheresy.com - Prodigiously Elucidating the Profoundly ObtuseTHIS FORUM ACCOUNT IS NO LONGER ACTIVE
nioc
Legendary
*
Offline Offline

Activity: 1624
Merit: 1008


View Profile
July 23, 2014, 05:35:36 AM
 #10410

At this point I would ask that you take this discussion elsewhere. There may well be (theoretical, unidentified and undemonstrated) cryptographic or other issues with Cryptonight, but that is a tiny subset of topics of general interest to the user base and potential user base of Monero.

The proof-of-work algorithm is absolutely essentially to crypto-currency. It is the fundamental building block upon which nearly everything else of the coin hinges.

Thanks for not appreciating me trying to help you while you still have the chance to fix what is broken.

But that is fine, go ahead and leave it broken. You will learn the hard way. And with your attitude, now you know why I wouldn't participate in developing for your design by consensus. It is abject failure.

And remember this discussion started because I corrected you when you gave a user the factually incorrect answer, leading him to believe that ASICs are not a realistic threat.

Okay I will abide by your desire to censor this thread. I will not reply unless someone makes a very serious critique of what I wrote that requires a response.

Pot meet kettle.
smooth
Legendary
*
Offline Offline

Activity: 2968
Merit: 1198



View Profile
July 23, 2014, 05:43:53 AM
 #10411

Okay I will abide by your desire to censor this thread. I will not reply unless someone makes a very serious critique of what I wrote that requires a response.

You are welcome to participate in this thread at any time as long as it is focused on topics directly relevant to Monero. (You are also welcome to not participate, if that is your choice, of course.)

That includes the proof-of-work. If you can identify a specific vulnerability, post a proof of concept (even pseudo code). Voluminous abstract philosophical discussions of proof-of-work design are not directly relevant to Monero.

If you want to call that censorship, so be it. I'd rather be accused of censorship than have the thread filled with pages and pages of discussion not of interest to most of the Monero user community.

And for one last time, I never said that ASICs aren't a threat. I said that the approach of "1000 copies" of a straightforward implementation of the algorithm on a chip will not work. The Cryptonote people claim that the algorithm is ASIC-resistant generally. They may be right or they may be wrong, but I certainly will never mislead anyone that this is just a claim from some anonymous source. I don't know what background work they have done (if any) to support the ASIC-resistant claim, so I can't meaningfully evaluate it.

Some degree of GPU-resistance has been demonstrated however, so one of their claims has now been weakly validated.

bigj
Full Member
***
Offline Offline

Activity: 198
Merit: 100



View Profile
July 23, 2014, 05:44:27 AM
 #10412

Maybe that's about the right time to look into another direction: Etherium (ETH)

The Ether guys just started the pre-sale, and I'm wondering how you all think about this new coin and its presale. Some quick questions/points from me side:

- Will ETH be a threat to Monero?
- Is the presale (2000ETH per BTC right now) a reasonable investment chance? (I couldn't find an upper bound on the coin supply for the presale.)
- Is there a chance that ETH will make it against Mastercoin and Counterparty?
- Would Bitshares-X (similarly Bitshares-PTS) be a better investment? (ETH and Bitshares seem to share some goals, e.g., decentralized organisations/companies, etc.)

Regards.
Anon136
Legendary
*
Offline Offline

Activity: 1722
Merit: 1217



View Profile
July 23, 2014, 05:58:16 AM
Last edit: July 23, 2014, 06:18:50 AM by Anon136
 #10413

Maybe that's about the right time to look into another direction: Etherium (ETH)

The Ether guys just started the pre-sale, and I'm wondering how you all think about this new coin and its presale. Some quick questions/points from me side:

- Will ETH be a threat to Monero?
- Is the presale (2000ETH per BTC right now) a reasonable investment chance? (I couldn't find an upper bound on the coin supply for the presale.)
- Is there a chance that ETH will make it against Mastercoin and Counterparty?
- Would Bitshares-X (similarly Bitshares-PTS) be a better investment? (ETH and Bitshares seem to share some goals, e.g., decentralized organisations/companies, etc.)

Regards.

Whats a better investment, a bowling ball or a ham sandwich?

They are all fundamentally different things. I don't think etherium is attempting to build a tax haven in the cloud and I don't think monero is trying to build a consensus based turing complete distributed virtual machine.

Be careful with etheirum though. Huge amounts of hype and many wild promises, little evidence that they will be able to deliver on those promises, and with the sorts of valuation they are obtaining i think its questionable whether it would be a good value even if they do deliver on those promises. The thing about open source code is that it can be copied. Of course there are network effects to make the largest network more valuable. But with something like a virtual machine thats being run in parallel on a huge number of computers, its very questionable to what extent that can be scaled. If it cant be scaled well than their first mover advantage may offer little benefit beyond a certain threshold.

Rep Thread: https://bitcointalk.org/index.php?topic=381041
If one can not confer upon another a right which he does not himself first possess, by what means does the state derive the right to engage in behaviors from which the public is prohibited?
Mumbles
Newbie
*
Offline Offline

Activity: 50
Merit: 0


View Profile
July 23, 2014, 06:09:03 AM
 #10414

One thing I will say is that the ethereum team really knows how to engage, market, and create awareness, along with being very strong technically. Very impressed with their technical achievements, but also equally impressed with their website and ability to market and make the currency easy for the average non techie to purchase. One of the most professional websites I've seen for any alt coin project as well.

For that reason alone, they are likely to get a lot of attention, and attention equals dollars, and dollars equals hiring more devs. Pretty virtous cycle that XMR should have but doesn't seem able to make happen. They have already sold over 1 million USD worth.

Maybe that's about the right time to look into another direction: Etherium (ETH)

The Ether guys just started the pre-sale, and I'm wondering how you all think about this new coin and its presale. Some quick questions/points from me side:

- Will ETH be a threat to Monero?
- Is the presale (2000ETH per BTC right now) a reasonable investment chance? (I couldn't find an upper bound on the coin supply for the presale.)
- Is there a chance that ETH will make it against Mastercoin and Counterparty?
- Would Bitshares-X (similarly Bitshares-PTS) be a better investment? (ETH and Bitshares seem to share some goals, e.g., decentralized organisations/companies, etc.)

Regards.
bigj
Full Member
***
Offline Offline

Activity: 198
Merit: 100



View Profile
July 23, 2014, 07:33:34 AM
Last edit: July 23, 2014, 07:55:28 AM by bigj
 #10415

One thing I will say is that the ethereum team really knows how to engage, market, and create awareness, along with being very strong technically. Very impressed with their technical achievements, but also equally impressed with their website and ability to market and make the currency easy for the average non techie to purchase. One of the most professional websites I've seen for any alt coin project as well.

For that reason alone, they are likely to get a lot of attention, and attention equals dollars, and dollars equals hiring more devs. Pretty virtous cycle that XMR should have but doesn't seem able to make happen. They have already sold over 1 million USD worth.

Maybe that's about the right time to look into another direction: Etherium (ETH)

The Ether guys just started the pre-sale, and I'm wondering how you all think about this new coin and its presale. Some quick questions/points from me side:

- Will ETH be a threat to Monero?
- Is the presale (2000ETH per BTC right now) a reasonable investment chance? (I couldn't find an upper bound on the coin supply for the presale.)
- Is there a chance that ETH will make it against Mastercoin and Counterparty?
- Would Bitshares-X (similarly Bitshares-PTS) be a better investment? (ETH and Bitshares seem to share some goals, e.g., decentralized organisations/companies, etc.)

Regards.

OMG: Read this blog post by Vitalik Buterin (one of the main dudes behind Etherium): https://blog.ethereum.org/2014/07/22/launching-the-ether-sale/

Some of his points made:

- The price of ether is initially set to a discounted price of 2000 ETH per BTC, and will stay this way for 14 days before linearly declining to a final rate of 1337 ETH per BTC. The sale will last 42 days, concluding at 23:59 Zug time September 2.

- The annual issuance rate is 0.26x the initial quantity of ether sold, reduced from the 0.50x that had been proposed in January. [...] We make absolutely no promises of this, except that the issuance rate will not exceed 26.00% per annum of the quantity of ether sold in the Genesis Sale.

- We reserve the right to use up to 5000 BTC from the pre-sale while the pre-sale is running in order to speed up development.

This reads like a birthday party for the devs. Bring all your BTC and we start OUR party. You get some totally weird coins/promises in return. WTF! Also, the shortcut, ETH, is funny, because it relates to the well-known university in Zurich/Switzerland which has nothing to do with the whole thing. To me, the Etherium project seems more than odd. (In addition, check out this Etherium related website www.ursium.com, yet another site without any real content or information.)

ADD1: Honestly, I hoped Etherium becomes something good (I would have liked to invest), but now I feel like Alice in Weirdo Land.

ADD2: Just found this statement on the official Etherium website: "EthSuisse will not place a cap on the number of ETH that can be purchased by the community." WTF!

ADD3: "EthSuisse will restrict any single entity, person, corporation, or group from controlling more than 12.5% of the total ETH sold by the end of the Genesis Sale." WTF!!

EDIT: OK, I stop here. I can't take it anymore. Etherium could be (become) one of the biggest ripoffs in the crypto history... without me.
r05
Full Member
***
Offline Offline

Activity: 193
Merit: 100

test cryptocoin please ignore


View Profile
July 23, 2014, 08:16:22 AM
 #10416

One thing I will say is that the ethereum team really knows how to engage, market, and create awareness, along with being very strong technically. Very impressed with their technical achievements, but also equally impressed with their website and ability to market and make the currency easy for the average non techie to purchase. One of the most professional websites I've seen for any alt coin project as well.

For that reason alone, they are likely to get a lot of attention, and attention equals dollars, and dollars equals hiring more devs. Pretty virtous cycle that XMR should have but doesn't seem able to make happen. They have already sold over 1 million USD worth.

Maybe that's about the right time to look into another direction: Etherium (ETH)

The Ether guys just started the pre-sale, and I'm wondering how you all think about this new coin and its presale. Some quick questions/points from me side:

- Will ETH be a threat to Monero?
- Is the presale (2000ETH per BTC right now) a reasonable investment chance? (I couldn't find an upper bound on the coin supply for the presale.)
- Is there a chance that ETH will make it against Mastercoin and Counterparty?
- Would Bitshares-X (similarly Bitshares-PTS) be a better investment? (ETH and Bitshares seem to share some goals, e.g., decentralized organisations/companies, etc.)

Regards.

OMG: Read this blog post by Vitalik Buterin (one of the main dudes behind Etherium): https://blog.ethereum.org/2014/07/22/launching-the-ether-sale/

Some of his points made:

- The price of ether is initially set to a discounted price of 2000 ETH per BTC, and will stay this way for 14 days before linearly declining to a final rate of 1337 ETH per BTC. The sale will last 42 days, concluding at 23:59 Zug time September 2.

- The annual issuance rate is 0.26x the initial quantity of ether sold, reduced from the 0.50x that had been proposed in January. [...] We make absolutely no promises of this, except that the issuance rate will not exceed 26.00% per annum of the quantity of ether sold in the Genesis Sale.

- We reserve the right to use up to 5000 BTC from the pre-sale while the pre-sale is running in order to speed up development.

This reads like a birthday party for the devs. Bring all your BTC and we start OUR party. You get some totally weird coins/promises in return. WTF! Also, the shortcut, ETH, is funny, because it relates to the well-known university in Zurich/Switzerland which has nothing to do with the whole thing. To me, the Etherium project seems more than odd. (In addition, check out this Etherium related website www.ursium.com, yet another site without any real content or information.)

ADD1: Honestly, I hoped Etherium becomes something good (I would have liked to invest), but now I feel like Alice in Weirdo Land.

ADD2: Just found this statement on the official Etherium website: "EthSuisse will not place a cap on the number of ETH that can be purchased by the community." WTF!

ADD3: "EthSuisse will restrict any single entity, person, corporation, or group from controlling more than 12.5% of the total ETH sold by the end of the Genesis Sale." WTF!!

EDIT: OK, I stop here. I can't take it anymore. Etherium could be (become) one of the biggest ripoffs in the crypto history... without me.

1337ETH? Seriously?

BTC: 18tS6E9FRnXuh4JitAJykm6YRtJRSkP6jq
XMR: 46BzjaUU1fyfFJ2b9vvg9RXUsw3XQtkaoc7cRkzYxMre69GtCaX6jg3Luc4B6ABHAaBmZNpJ4zzmAiX deGsCiXJJMniDbWE
bigj
Full Member
***
Offline Offline

Activity: 198
Merit: 100



View Profile
July 23, 2014, 08:40:11 AM
 #10417

1337ETH? Seriously?

I don't get it. Is 1337ETH a secret code?
r05
Full Member
***
Offline Offline

Activity: 193
Merit: 100

test cryptocoin please ignore


View Profile
July 23, 2014, 08:58:37 AM
 #10418

1337ETH? Seriously?

I don't get it. Is 1337ETH a secret code?

1337 is leet speak for "leet" which is a colloquialism for "elite".

In other words, only 13 year old Counter-Strike players refer to things at 1337.

BTC: 18tS6E9FRnXuh4JitAJykm6YRtJRSkP6jq
XMR: 46BzjaUU1fyfFJ2b9vvg9RXUsw3XQtkaoc7cRkzYxMre69GtCaX6jg3Luc4B6ABHAaBmZNpJ4zzmAiX deGsCiXJJMniDbWE
bigj
Full Member
***
Offline Offline

Activity: 198
Merit: 100



View Profile
July 23, 2014, 09:01:27 AM
 #10419

1337ETH? Seriously?

I don't get it. Is 1337ETH a secret code?

1337 is leet speak for "leet" which is a colloquialism for "elite".

In other words, only 13 year old Counter-Strike players refer to things at 1337.

Thanks for clarifying Smiley That fits perfectly!
AnnoyMint
Newbie
*
Offline Offline

Activity: 21
Merit: 4


View Profile
July 23, 2014, 09:06:09 AM
 #10420

Okay I will abide by your desire to censor this thread. I will not reply unless someone makes a very serious critique of what I wrote that requires a response.

You are welcome to participate in this thread at any time as long as it is focused on topics directly relevant to Monero. (You are also welcome to not participate, if that is your choice, of course.)


Even considering all the blatant censorship here, I have decided to reveal the one single hope Monero, and in fact all cryptocurrency has against the NSA as well as The HK SAR, and Chinese MSS and a few other agencies I don't have the time to mention.  You do not have the mental capacity to know this many acronyms anyway.

At least Monero has not taken the route of using PoS which is really just a honeypot.  In fact it is a reverse Tupelo honeypot, designed to draw in the clueless masses to be caught in the great clawback of 2013, which is actually happening in 2016 since the NSA has not realized that honey without the comb can spoil at a rate which follows the accelerated curve represented by the non-comb reverse Tupelo honey equation:

Q′(x)=[(cosx)(tanx)(ex)+(sinx)(sec2x)(ex)+(sinx)(tanx)(ex)+52x32+72x−32][(cscx)2−19]−[(−cscxcotx)(cscx)+(cscx)(−cscxcotx)][(sinx)(tanx)(ex)+(x3+2x12−7)(1x√)][(cscx)2−19]2

But I digress.

As I said, at least the Cryptonight devs and subsequently the Monero (leaderless, consensus based, socialist, betamale) "devs" used second most stupid method to secure the blockchain: PoW.

After many hours of study I have found the only computational cipher worthy of my study and mastery is: PoH.

Obviously you are too dimwitted to have even considered using PoH to secure the Monero blockchain.  But allow me to elucidate you slightly.

Nothing can be safe.
The Master posts here today.
Heed my words and live.

Yes, the Proof of Haiku algorithm is even capable of withstanding the coming rigors of quantum computing, and cannot be broken by the NSA until, by my calculations, sometime in the fall of 2065.  I would like to pinpoint the date more accurately, but as the original cryptopoet Bashō wrote:

the first cold shower
even the monkey seems to want
a little coat of straw

I have yet to work out exactly how to implement PoH, and how to make it ASIC proof, and of course you all expect AnnoyMint to do all the work for you.  I have so many other problems to solve, my time is simply too valuable to spend all day and night elucidating you.  Finally this:

i leave this thread now
never shall i return here
nakamoto, feh!
Pages: « 1 ... 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 [521] 522 523 524 525 526 527 528 529 530 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 ... 2123 »
  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!