Bitcoin Forum
April 26, 2024, 08:42:52 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they believe that the creator of this topic displays some red flags which make them high-risk. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 ... 764 »
  Print  
Author Topic: IOTA  (Read 1471700 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
smartwart
Full Member
***
Offline Offline

Activity: 171
Merit: 100


View Profile
November 20, 2015, 08:30:17 PM
 #721

OK,  UDP seems really proper with low latency for what you are doing.
The message encryption is done by the publisher which is the POW part, right?
Than the publisher fan-out the message to all known endpoints and they store the hash only?
Do the nodes who receiving the message send them further to all endpoints they know, or the hash only?
(I guess this would be the validation process)

How do you handle serialization of all this many small packages?
Do you use protocol buffer or another queuing library?

Sorry for the many ?. But distributed apps are very fascinating (problems).

NxT: 13574045486980287597
1714164172
Hero Member
*
Offline Offline

Posts: 1714164172

View Profile Personal Message (Offline)

Ignore
1714164172
Reply with quote  #2

1714164172
Report to moderator
In order to achieve higher forum ranks, you need both activity points and merit points.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714164172
Hero Member
*
Offline Offline

Posts: 1714164172

View Profile Personal Message (Offline)

Ignore
1714164172
Reply with quote  #2

1714164172
Report to moderator
1714164172
Hero Member
*
Offline Offline

Posts: 1714164172

View Profile Personal Message (Offline)

Ignore
1714164172
Reply with quote  #2

1714164172
Report to moderator
Come-from-Beyond (OP)
Legendary
*
Offline Offline

Activity: 2142
Merit: 1009

Newbie


View Profile
November 20, 2015, 08:42:47 PM
 #722

OK,  UDP seems really proper with low latency for what you are doing.
The message encryption is done by the publisher which is the POW part, right?
Than the publisher fan-out the message to all known endpoints and they store the hash only?
Do the nodes who receiving the message send them further to all endpoints they know, or the hash only?
(I guess this would be the validation process)

How do you handle serialization of all this many small packages?
Do you use protocol buffer or another queuing library?

Sorry for the many ?. But distributed apps are very fascinating (problems).

Message can be encrypted or in plaintext.
All nodes send the message, not the hash.
I didn't get the serialization of a packet part - all packets are serialized objects.
smartwart
Full Member
***
Offline Offline

Activity: 171
Merit: 100


View Profile
November 20, 2015, 09:02:08 PM
 #723

 
... 
 
I didn't get the serialization of a packet part - all packets are serialized objects.

OK, that implies you use bytestream <=> Object conversion by JVM.
 

NxT: 13574045486980287597
smartwart
Full Member
***
Offline Offline

Activity: 171
Merit: 100


View Profile
November 20, 2015, 09:07:29 PM
 #724


Message can be encrypted or in plaintext.
All nodes send the message, not the hash.
...

Does it means, all encrypted messages become encrypted again by receiving nodes
and than sent further?
(I try to get the POW part)

NxT: 13574045486980287597
Come-from-Beyond (OP)
Legendary
*
Offline Offline

Activity: 2142
Merit: 1009

Newbie


View Profile
November 20, 2015, 09:14:40 PM
 #725

OK, that implies you use bytestream <=> Object conversion by JVM.

No, JVM is not involved, it's conversion of Iota objects.
Come-from-Beyond (OP)
Legendary
*
Offline Offline

Activity: 2142
Merit: 1009

Newbie


View Profile
November 20, 2015, 09:15:12 PM
 #726

Does it means, all encrypted messages become encrypted again by receiving nodes
and than sent further?
(I try to get the POW part)

No. Messages are retransmitted as is.
smartwart
Full Member
***
Offline Offline

Activity: 171
Merit: 100


View Profile
November 20, 2015, 09:47:57 PM
 #727

OK, that implies you use bytestream <=> Object conversion by JVM.

No, JVM is not involved, it's conversion of Iota objects.

My assumption was that IOTA is in Java and you use java object serialization.
Could you give me a hint ;-)

NxT: 13574045486980287597
smartwart
Full Member
***
Offline Offline

Activity: 171
Merit: 100


View Profile
November 20, 2015, 09:49:05 PM
 #728

Does it means, all encrypted messages become encrypted again by receiving nodes
and than sent further?
(I try to get the POW part)

No. Messages are retransmitted as is.

Is the POW concept explained in the paper?

NxT: 13574045486980287597
Come-from-Beyond (OP)
Legendary
*
Offline Offline

Activity: 2142
Merit: 1009

Newbie


View Profile
November 20, 2015, 09:56:58 PM
 #729

My assumption was that IOTA is in Java and you use java object serialization.
Could you give me a hint ;-)

We use our own serialization, Iota works with trinary-based numbers.
Come-from-Beyond (OP)
Legendary
*
Offline Offline

Activity: 2142
Merit: 1009

Newbie


View Profile
November 20, 2015, 09:57:17 PM
 #730

Is the POW concept explained in the paper?

No.
smartwart
Full Member
***
Offline Offline

Activity: 171
Merit: 100


View Profile
November 20, 2015, 10:02:20 PM
 #731

My assumption was that IOTA is in Java and you use java object serialization.
Could you give me a hint ;-)

We use our own serialization, Iota works with trinary-based numbers.

OK, seems I need to be patient until the "Katze is aus dem Sack"
Thanks.

NxT: 13574045486980287597
smartwart
Full Member
***
Offline Offline

Activity: 171
Merit: 100


View Profile
November 20, 2015, 10:05:10 PM
 #732

Is the POW concept explained in the paper?

No.

Phuu, seems I'm lucky not to go through all the math:)
Is the concept released anywhere or do I need to be patient?

NxT: 13574045486980287597
Come-from-Beyond (OP)
Legendary
*
Offline Offline

Activity: 2142
Merit: 1009

Newbie


View Profile
November 20, 2015, 10:07:27 PM
 #733

Is the concept released anywhere or do I need to be patient?

Details will be known later.
smartwart
Full Member
***
Offline Offline

Activity: 171
Merit: 100


View Profile
November 20, 2015, 10:14:27 PM
 #734

OK, many thanks!

NxT: 13574045486980287597
tolstoy
Member
**
Offline Offline

Activity: 89
Merit: 10


View Profile
November 21, 2015, 04:20:11 AM
 #735

Loophole-free Bell test TU Delft crowns 80-years-old debate on nature of reality: Einsteins “spooky action” is real.
http://www.tudelft.nl/en/current/latest-news/article/detail/einsteins-ongelijk-delfts-experiment-beeindigt-80-jaar-oude-discussie/

SecretsCoin
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
November 21, 2015, 04:35:31 AM
 #736

Is the concept released anywhere or do I need to be patient?

Details will be known later.
fine ,waiting for your official news
iotatoken
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500


View Profile
November 21, 2015, 09:23:29 PM
 #737

Loophole-free Bell test TU Delft crowns 80-years-old debate on nature of reality: Einsteins “spooky action” is real.
http://www.tudelft.nl/en/current/latest-news/article/detail/einsteins-ongelijk-delfts-experiment-beeindigt-80-jaar-oude-discussie/

Definitely a really interesting result. Last 'loophole free' test turned out to have been analysed wrong, so expect another 6 months until consensus.  It also leave retrocausal and free will loophole open

iotatoken
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500


View Profile
November 22, 2015, 01:18:07 PM
 #738

We can finally disclose the date for the IOTA crowdsale. It will begin on the 25th of November at 2 PM UTC.


All details surrounding the sale will be made available on Wednesday.

youyou_
Hero Member
*****
Offline Offline

Activity: 596
Merit: 500


View Profile
November 22, 2015, 01:53:03 PM
 #739

We can finally disclose the date for the IOTA crowdsale. It will begin on the 25th of November at 2 PM UTC.


All details surrounding the sale will be made available on Wednesday.

what about jinn holders?
yassin54
Legendary
*
Offline Offline

Activity: 1540
Merit: 1000


View Profile
November 22, 2015, 01:55:14 PM
 #740


what about jinn holders?
Look this https://nxtforum.org/news-and-announcements/%28ann%29-jinn/msg201200/?topicseen#msg201200  Wink
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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 ... 764 »
  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!