Bitcoin Forum
April 28, 2024, 11:38:28 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 [4] 5 »  All
  Print  
Author Topic: EXO and Nxt are great coins - sorry  (Read 5847 times)
DarkhorseofNxt
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
October 18, 2014, 06:29:02 AM
 #61

That's because any idiot with 6 months training can churn out simple Java apps...
But it takes a university education... and many years of experience to be a competent C++ engineer.

Decentralized java crypto platform, like NXT, isn't exactly a simple Java app, and if it lacked security, someone would have broken it already Smiley

It has only been around for 6 months, give it time. If a hacker wants to attack a coin are they going to try to tackle a coin with military grade security (EXO) or noob grade security (Nxt).

It WILL happen. It is just a matter of when.

Correction there, comes November 24th Nxt will be celebrating 1 year. So its 12 months in existence. If someone CAN hack nxt, they would have done it already. All the big account holders is open for anyone's view.

So... keep talking..

1714304308
Hero Member
*
Offline Offline

Posts: 1714304308

View Profile Personal Message (Offline)

Ignore
1714304308
Reply with quote  #2

1714304308
Report to moderator
1714304308
Hero Member
*
Offline Offline

Posts: 1714304308

View Profile Personal Message (Offline)

Ignore
1714304308
Reply with quote  #2

1714304308
Report to moderator
1714304308
Hero Member
*
Offline Offline

Posts: 1714304308

View Profile Personal Message (Offline)

Ignore
1714304308
Reply with quote  #2

1714304308
Report to moderator
You can see the statistics of your reports to moderators on the "Report to moderator" pages.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714304308
Hero Member
*
Offline Offline

Posts: 1714304308

View Profile Personal Message (Offline)

Ignore
1714304308
Reply with quote  #2

1714304308
Report to moderator
Eadeqa
Hero Member
*****
Offline Offline

Activity: 644
Merit: 500


View Profile
October 18, 2014, 06:43:49 AM
Last edit: October 18, 2014, 06:59:03 AM by Eadeqa
 #62

And what's wrong with java? Why do you think that c++ is better for a crypto coin?

Java is interpreted, not compiled; it's under the control of Oracle Corporation. It's probably fine for a prototyping language and for quick interactive demos. But it does add a layer of complexity, which slows things down (not a huge problem with today's hardware) and creates another failure point.

Java is compiled as bytecode and run by JVM. It's not just oracle, there are also other VMs, including Open JDK, which is open source. It doesn't add  another "layer of complexity". It adds more security and versatility (Same compiled bytecode behaves exactly same on Windows, Linux, Mac; you can't always say that about C++ apps, making it less secure).    It's much harder to write secure C++ applications, especially due to things like pointers that arbitrarily access memory and buffer overruns. It's much easier to miss bugs in C++ applications. It's much harder to fix bugs in C++ applications, even if you know there is a bug.  Vast majority of server side apps are written in Java. That includes almost all banks,, amazon, ebay. There is really no reason to write crypto in C++ as you don't need native integration with operating system and faster startups, two things that C++ does better.

I am pretty sure C++ is absolutely worst choice for crypto. Python is probably the best (Electrum?).

Nomi, Shan, Adnan, Noshi, Nxt, Adn Khn
NXT-GZYP-FMRT-FQ9K-3YQGS
https://github.com/Lafihh/encryptiontest
Djinou94
Legendary
*
Offline Offline

Activity: 1036
Merit: 1000


View Profile
October 19, 2014, 12:57:16 AM
 #63

EXO is coming !

Prepare your btc! C++ new source code!
gjhiggins
Legendary
*
Offline Offline

Activity: 2254
Merit: 1278



View Profile WWW
October 19, 2014, 05:01:41 AM
 #64

I am pretty sure C++ is absolutely worst choice for crypto. Python is probably the best (Electrum?).

Just so: “PyBC Generic Blockchain Library (and coin!)” https://bitcointalk.org/index.php?topic=252152.0

And, to lay down a nominal scale for one dimension: the main characterisation in this XKCDforum post http://forums.xkcd.com/viewtopic.php?f=11&t=108685 seems broadly accurate in terms of speed of general-purpose processing:

Quote
Tier 1 (fast-fast): C++, C, Ada, Fortran, ATS.
Tier 2 (fast): Java, LuaJIT, Julia, Haskell, Scala, Ocaml, C#, Go, Common Lisp (SBCL), Rust, Pascal, F#.
"Fringe" (fast-ish): Clojure, Racket, JavaScript (V8 and others), Dart, PyPy.
Tier 3 (intermediate): Erlang HiPE.
Tier 4 (slow): Erlang, PHP, Smalltalk (VisualWorks), Lua, Perl, CPython, Hack, Ruby.
Tier 5 (very slow): R, Matlab, Octave.

Some interesting angles in KnightExemplar's insightful response of an alternative and very plausible framing of Tier 0 and Tier 1 as specialised and hardware languages respectively: http://forums.xkcd.com/viewtopic.php?f=11&t=108685#p3575512 - but unlikely to be news to those of a mining persuasion.

Scaling a p2p architecture to support serious mass adoption is going to be fun.

Cheers

Graham
lordoliver
Legendary
*
Offline Offline

Activity: 1666
Merit: 1020

expect(brain).toHaveBeenUsed()


View Profile
October 19, 2014, 10:32:24 AM
Last edit: October 19, 2014, 10:46:09 AM by lordoliver
 #65

@cryptonaut
Your posts show me, that you didn't understand crypto yet. A coin is a protocol and not a software and much less depending on a language. You can rewrite the protocol with any language and use the same blockchain as long as you follow the same protocol.

Every serious coin will have multiple softwares in different languages. Security for the blockchain will not depend on the used software or language, as all participants are checking everything multiple times. So if one of the software programs has a security issue, all others will compensate that until it is fixed.

The main reason, why people are using java, is that you don't have to compile it on every OS again and again. Write once, run everywhere.
If you write in C or C++ you have to compile on windows, mac and linux. Even different linux may require some fixes, before you can actually compile the code.
superresistant
Legendary
*
Offline Offline

Activity: 2128
Merit: 1120



View Profile
October 19, 2014, 04:49:19 PM
 #66

If you write in C or C++ you have to compile on windows, mac and linux. Even different linux may require some fixes, before you can actually compile the code.

This is so true. C++ is hell to compile on Windows vs Linux.
It's a handicap to use C++ if you want multiple OS.
bluemeanie1
Sr. Member
****
Offline Offline

Activity: 280
Merit: 257


bluemeanie


View Profile WWW
October 19, 2014, 06:49:27 PM
Last edit: October 19, 2014, 07:00:10 PM by bluemeanie1
 #67

EXO is a true next generation coin built in C++11, it is more secure and it is FAIR. Don't joke yourself, no financial institution will take any java coin seriously. The big guns have arrived children.

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



Java was just about the only thing NXT had going for it.


Just who IS bluemeanie?    On NXTautoDAC and a Million Stolen NXT

feel like your voice isn't being heard? PM me.   |   stole 1M NXT?
LiQio
Legendary
*
Offline Offline

Activity: 1181
Merit: 1002



View Profile
October 19, 2014, 06:51:31 PM
 #68

bluemeanie1 / Joshua Zeidner what happened to my nxtscam.org profile?

What happened to the money you stole?
bluemeanie1
Sr. Member
****
Offline Offline

Activity: 280
Merit: 257


bluemeanie


View Profile WWW
October 19, 2014, 06:52:14 PM
 #69

bluemeanie1 / Joshua Zeidner what happened to my nxtscam.org profile?

What happened to the money you stole?


who do you think I stole money from?

Just who IS bluemeanie?    On NXTautoDAC and a Million Stolen NXT

feel like your voice isn't being heard? PM me.   |   stole 1M NXT?
LiQio
Legendary
*
Offline Offline

Activity: 1181
Merit: 1002



View Profile
October 19, 2014, 07:00:18 PM
 #70

This is probably just one example:
http://cointelegraph.com/news/112643/the-mystery-of-the-missing-1000000-nxt
bluemeanie1
Sr. Member
****
Offline Offline

Activity: 280
Merit: 257


bluemeanie


View Profile WWW
October 19, 2014, 07:01:54 PM
 #71

I asked you a SIMPLE QUESTION.

who do you think I stole money from?

the crime of theft has a VICTIM.  Who is the victim?

or does jl777 only pay you to write "BLUEMEANIE STOLE ONE MILLION NXT"?  You people are such incredible losers it's amazing ppl like you even exist.


Just who IS bluemeanie?    On NXTautoDAC and a Million Stolen NXT

feel like your voice isn't being heard? PM me.   |   stole 1M NXT?
LiQio
Legendary
*
Offline Offline

Activity: 1181
Merit: 1002



View Profile
October 19, 2014, 07:03:25 PM
 #72

I asked you a SIMPLE QUESTION.

who do you think I stole money from?

the crime of theft has a VICTIM.  Who is the victim?

or does jl777 only pay you to write "BLUEMEANIE STOLE ONE MILLION NXT"?  You people are such incredible losers it's amazing ppl like you even exist.



I think I asked you first.
bluemeanie1
Sr. Member
****
Offline Offline

Activity: 280
Merit: 257


bluemeanie


View Profile WWW
October 19, 2014, 07:04:18 PM
 #73

I asked you a SIMPLE QUESTION.

who do you think I stole money from?

the crime of theft has a VICTIM.  Who is the victim?

or does jl777 only pay you to write "BLUEMEANIE STOLE ONE MILLION NXT"?  You people are such incredible losers it's amazing ppl like you even exist.



I think I asked you first.


oh this crap again.

you can't name a victim because THERE WAS NO CRIME.

now get a life.

Just who IS bluemeanie?    On NXTautoDAC and a Million Stolen NXT

feel like your voice isn't being heard? PM me.   |   stole 1M NXT?
DarkhorseofNxt
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
October 19, 2014, 07:04:27 PM
 #74

I asked you a SIMPLE QUESTION.

who do you think I stole money from?

the crime of theft has a VICTIM.  Who is the victim?

or does jl777 only pay you to write "BLUEMEANIE STOLE ONE MILLION NXT"?  You people are such incredible losers it's amazing ppl like you even exist.



You stole the money. Blockchain does not lie!

bluemeanie1
Sr. Member
****
Offline Offline

Activity: 280
Merit: 257


bluemeanie


View Profile WWW
October 19, 2014, 07:05:33 PM
 #75


You stole the money.


from who?

Just who IS bluemeanie?    On NXTautoDAC and a Million Stolen NXT

feel like your voice isn't being heard? PM me.   |   stole 1M NXT?
LiQio
Legendary
*
Offline Offline

Activity: 1181
Merit: 1002



View Profile
October 19, 2014, 07:08:05 PM
 #76

I asked you a SIMPLE QUESTION.

who do you think I stole money from?

the crime of theft has a VICTIM.  Who is the victim?

or does jl777 only pay you to write "BLUEMEANIE STOLE ONE MILLION NXT"?  You people are such incredible losers it's amazing ppl like you even exist.



I think I asked you first.


oh this crap again.

you can't name a victim because THERE WAS NO CRIME.

now get a life.

Why don't you answer?

Btw. I have no clue who jl777 is.
bluemeanie1
Sr. Member
****
Offline Offline

Activity: 280
Merit: 257


bluemeanie


View Profile WWW
October 19, 2014, 07:09:43 PM
 #77

do you think anyone cares what you rent-a-trolls have to say about coin X or developer Y?

no one cares, and guess what?  your product- PROFESSIONAL TROLLING, is WORTHLESS.  get a real job.

you're about as influential as a goldfish.

Just who IS bluemeanie?    On NXTautoDAC and a Million Stolen NXT

feel like your voice isn't being heard? PM me.   |   stole 1M NXT?
LiQio
Legendary
*
Offline Offline

Activity: 1181
Merit: 1002



View Profile
October 19, 2014, 07:11:26 PM
 #78

do you think anyone cares what you rent-a-trolls have to say about coin X or developer Y?

no one cares, and guess what?  your product- PROFESSIONAL TROLLING, is WORTHLESS.  get a real job.

you're about as influential as a goldfish.

So we're equal when it comes to influence.

Again why don't you answer, fellow goldfish?
bluemeanie1
Sr. Member
****
Offline Offline

Activity: 280
Merit: 257


bluemeanie


View Profile WWW
October 19, 2014, 07:38:14 PM
 #79


Quote from: IdiotWithInternetConnection
What happened to money you stole?

Just who IS bluemeanie?    On NXTautoDAC and a Million Stolen NXT

feel like your voice isn't being heard? PM me.   |   stole 1M NXT?
LiQio
Legendary
*
Offline Offline

Activity: 1181
Merit: 1002



View Profile
October 19, 2014, 07:42:19 PM
 #80

You seem to like this guy   Cheesy

Now that some steam is off, would you mind answering my question?
Pages: « 1 2 3 [4] 5 »  All
  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!