Author

Topic: [XMR] Monero - A secure, private, untraceable cryptocurrency - page 1670. (Read 4670614 times)

full member
Activity: 133
Merit: 100
I understand that all people in this thread mined XMR. Can somebody tell me the main competitive advantages of XMR?

Can't you read the 477 pages of this thread to come to a conclusion?

Unless reading is too much of a pain, you should invest in ANY coins.
newbie
Activity: 91
Merit: 0
I understand that all people in this thread mined XMR. Can somebody tell me the main competitive advantages of XMR?
hero member
Activity: 532
Merit: 500
if you want it to become very attractive in a short time
contact some owner-commerce sites
who are in the tor network
and propose to insert XMR
you will see that in a short time
get to x30 than it is worth now

Nonsense.

XMR has a relatively narrow user base, as much of the coin is being mined by the botnets. For instance, 4 MH/s botnet was discussed on #monero-dev and this is one botnet only, which gives about 240M difficulty. God knows how many of them there are actually, but my guess is more than 80% of the whole hash rate.
 
I've been writing a week ago that as long as this is the case, the price doesn't have any fundamental drivers to go up. As you can see nothing has changed and the price is slowly going down as the botnet owners continue to downsell Monero. This is a very profitable short term business for them, and a bit risky too, so they have to make quick profit.

Indeed, external news may boost the exchange rate, but only in the very short term, since bear factors are dominant for this currency.

Hello Mr. Bytecoin,

your guess is plain wrong, you might want to talk to some poolops to know that the most mining is still from normal miners and cloudminers.
On a second note it makes no difference for a botnet to mine a GPU mineable coin or Monero, you can easily deploy cudaminer and cgminer there without issues.

Take a look at this Litecoin Botnet: http://www.coindesk.com/facebook-breaks-cryptocurrency-mining-botnet-lecpetex/

Using a Botnet for that kinda stuff, well their are far better way to monetize them...


I don't understand why the developers made integration with i2p. IMO, it is expedient, because CN technology ensures the safety of coins at a high level

It's the last little bit where you want to mask your traffic to the point where an attacker with access to your router can't even determine that you're using Monero. The CryptoNote protocol is VERY easy to detect in its current form.

Isn't i2p damn slow?


No, relaying transactions through i2p is not too damn slow, absolutely not - and using i2p strengthens bot networks. I2p is a great project so we really enjoy working together with them.
legendary
Activity: 1428
Merit: 1001
getmonero.org
What do you think about core of the Monero team?
I have a not good feeling that they have too much power and they can do with the coin everything what they want.

Its an open source software. You can always help them and do what you like or just copy it and do what  you like.  Of course they do what they want since they are the ones coding/do stuff. Feel free to do everything you want about the coin. Propose what you want. People will chose.
sr. member
Activity: 373
Merit: 250

Can anybody describe to me perspectives of the Monero?


Until the block reward decreases twofold, botnets are not moving anywhere, as currently it is about 100% margin for botnet owners [no proof, sorry].

Ironically, I'm starting to believe that all CryptoNote currencies are way too immature at the moment. It might take a lot of time for any of them to take off, including XMR.

Dead wrong - I know two botnet operators mining it right now.

Dead wrong where exactly? Could you share some wisdom?

Thanks, it is an interesting opinion.
Why do you think that all CN currencies are too immature today?

Lack of infrastructure, lack of GUI, lack of use cases, and persistant network problems just to name a few reasons. And what's more, I'm not sure whether anonymous currencies do matter for the ordinary user to become mainstream. There's a huge lag behind Bitcoin at the moment, so traction is low.
member
Activity: 83
Merit: 10
What do you think about core of the Monero team?
I have a not good feeling that they have too much power and they can do with the coin everything what they want.
sr. member
Activity: 560
Merit: 250
"Trading Platform of The Future!"
Dead wrong - I know two botnet operators mining it right now.
Why isn't the margin 100%?
newbie
Activity: 46
Merit: 0

Can anybody describe to me perspectives of the Monero?


Until the block reward decreases twofold, botnets are not moving anywhere, as currently it is about 100% margin for botnet owners [no proof, sorry].

Ironically, I'm starting to believe that all CryptoNote currencies are way too immature at the moment. It might take a lot of time for any of them to take off, including XMR.

Thanks, it is an interesting opinion.
Why do you think that all CN currencies are too immature today?
legendary
Activity: 3766
Merit: 5146
Whimsical Pants

Sir, you are completely wrong. Don't get me wrong, I love bashing the XMR codebase, which is pretty much the fault of the BCN devs - it's like a hobby. But CryptoNight needing a 64-bit system is NOT an example of the code's inefficiency, it's an example of the algorithm being designed to run quickly on systems that aren't ancient. Optimizing it for 32-bit arithmetic would slow it down by a lot, because it would only be able to process around half the data that it could otherwise (in general). So, the algorithm is made for 64-bit. That's not to say that CryptoNight can't be implemented with 32-bit arithmetic - it's just an ugly hack, and it's slow, and nobody wants to do the work to support a steadily decreasing amount of users - those being the ones on 32-bit.

Here's an example: A very large part of CryptoNight is a loop that is executed 262,144 times. Inside that loop, two 64-bit multiplies are done. Now, on computers, multiplies are fucking slow. The only really common instruction that I know of that is consistently slower (by a lot), is divides, which are ouch slow. Anyway, two 64-bit multiplies. And you can't shortcut it - both the high and low 64-bits of the result are used. Now, on a 64-bit machine, I need to do one or two register loads and a multiply. Done. On 32-bit, not even counting the register loading (and the possible memory accesses you'd need due to register pressure, depending on what else happened to be stored in them at the time), you need somewhere around this much shit: 5 bit shift ops, 5 adds, two AND operations, two logic operations, and the killer, four, yes - FOUR multiplies. Now, this isn't the absolute best implementation, it's what I have in front of me, but it's not absolute shit, either. You can knock off one multiply, I think, maybe a bit shift or two, but you're gonna have to do most of those ops, including the three slow-ass multiplies. This is an excellent example of how the limitations of the 32-bit platform cause issues.

Thanks for the reply.  And I accept 64bit is obviously superior and even arguably needed for the reasons you state above.  That said what the 32bit machines are currently crashing into is limitations caused by a database that is larger than necessary and fully loaded into ram, right?  So I think calling me "completely wrong" is a bit over the top. Wink

I am not making an argument for 32bit.

I am making an argument against kludgy databases and insulting the user.

But I am super excited to see that the development is charging forward!
sr. member
Activity: 373
Merit: 250

Can anybody describe to me perspectives of the Monero?


Until the block reward decreases twofold, botnets are not moving anywhere, as currently it is about 100% margin for botnet owners [no proof, sorry].

Ironically, I'm starting to believe that all CryptoNote currencies are way too immature at the moment. It might take a lot of time for any of them to take off, including XMR.
legendary
Activity: 3766
Merit: 5146
Whimsical Pants
We should avoid techno elitist attitudes. 

The fact the current CN code demands a 64bit system because it handles data inefficiently and clumsily.  This is embarrassing for Monero, and certainly it's biggest current flaw. 

Insulting the end users does not help the problem, and might damage the reputation of the currency.

The 32 bit thing is embarrassing. Also never insult the end user.

This needs to be fixed. Are any of the Monero developers able to fix it?

I know not everyone follows the conversations in #monero-dev on Freenode, so to keep everyone in the loop: work on this is already progressing. You can follow the progress by checking tewinget's databasing branch: https://github.com/tewinget/bitmonero/tree/blockchain

That's great news.  Thanks for posting it.
newbie
Activity: 46
Merit: 0

Can anybody describe to me perspectives of the Monero?
sr. member
Activity: 373
Merit: 250
I don't understand why the developers made integration with i2p. IMO, it is expedient, because CN technology ensures the safety of coins at a high level

It's the last little bit where you want to mask your traffic to the point where an attacker with access to your router can't even determine that you're using Monero. The CryptoNote protocol is VERY easy to detect in its current form.

Isn't i2p damn slow?
donator
Activity: 1274
Merit: 1060
GetMonero.org / MyMonero.com
I don't understand why the developers made integration with i2p. IMO, it is expedient, because CN technology ensures the safety of coins at a high level

It's the last little bit where you want to mask your traffic to the point where an attacker with access to your router can't even determine that you're using Monero. The CryptoNote protocol is VERY easy to detect in its current form.
jr. member
Activity: 81
Merit: 1
I don't understand why the developers made integration with i2p. IMO, it is expedient, because CN technology ensures the safety of coins at a high level
sr. member
Activity: 373
Merit: 250
if you want it to become very attractive in a short time
contact some owner-commerce sites
who are in the tor network
and propose to insert XMR
you will see that in a short time
get to x30 than it is worth now

Nonsense.

XMR has a relatively narrow user base, as much of the coin is being mined by the botnets. For instance, 4 MH/s botnet was discussed on #monero-dev and this is one botnet only, which gives about 240M difficulty. God knows how many of them there are actually, but my guess is more than 80% of the whole hash rate.
 
I've been writing a week ago that as long as this is the case, the price doesn't have any fundamental drivers to go up. As you can see nothing has changed and the price is slowly going down as the botnet owners continue to downsell Monero. This is a very profitable short term business for them, and a bit risky too, so they have to make quick profit.

Indeed, external news may boost the exchange rate, but only in the very short term, since bear factors are dominant for this currency.
member
Activity: 109
Merit: 10
if you want it to become very attractive in a short time
contact some owner-commerce sites
who are in the tor network
and propose to insert XMR
you will see that in a short time
get to x30 than it is worth now
legendary
Activity: 1904
Merit: 1003
Why the fuck isn't XMR surpassed DRK yet, XMR is the only good anonymous coins, the rest are SHITTY GIMMICKS. This coin should be at 0.1. People aren't aware of the value of this coin. In a fair world with common sense this coin would eat Litecoin alive.

DRK was pumped hard, big hype, artificial demand due to masternodes bullshit 1000DRK limit.
newbie
Activity: 266
Merit: 0
I never understood why all users from this forum trust  Wikipedia? It's even not a real encyclopedia!
member
Activity: 87
Merit: 10
Got new usability improvements or found a bug? Feel free to contact us here or e-mail us: [email protected]

Not sure if this is possible but it would be amazing if you could implement any of the following notification methods when a trade of yours is executed (all optional):

- chrome desktop notifications (see https://developer.chrome.com/extensions/notifications )
- audio notification (e.g the beep you hear on blockchain.info when your wallet makes or recieves a transaction)
- email notifications.

Obviously with email you would need to avoid spam if someone is making lots of small buys/sells into a large order of yours, so maybe only email when an order is completely filled. But having any of the above notification methods as an option would be much appreciated.
Jump to: