Jump to content

note Genesis

Resident
  • Posts

    7
  • Joined

  • Last visited

Everything posted by note Genesis

  1. It s crazy how pollution has increased these last years
  2. There is maybe some mess with this other thread : But in fact , it s more relay of conservation in local chat to other people in other regions IMs are not local chat . They are not listened , so not relayed
  3. I remember that Labs had moved the activity od some devs from SL to Sansar . But as Sansar has been released , is it always the same situation?
  4. IShe won t upgrade artwork , because you have said sooner that you refuse to downgrade for less sims ; in your opinion ut would break the "artwork" . So , she won t upgrade it
  5. I LOVE definitively the new avatars . They look gorgeous with material enabled I thinks it s a bit pity they are tagged "not modify" . I would have prefered to get them tagged "modify no transfer" . Even if i didn t have the intention to change the UV maps , i would liked to add in them my personnal scripts
  6. Where have you seen that "JSON actually has brought true, indexed arrays as well as associated arrays AND nesting to LSL" It s wrong . With an indexed array , get operations or set operations are O(1) time .Time is independant of the size of your datas. With map arrays , get operations or set operations are O(k) time . Time is proportionnal to the size of the index of your datas. Time is independant of the size of the values of your datas With a true list from an another language ( not LSL list ), get operations or set operations are too proportinnal to the sum of the size of node pointers or references . Time is independant of the size of the values of your datas With JSON string inside LSL , get operations or set operations are O(n) time . Time is proportionnal to the size of your FULL datas ( keys and values ) , because it s as simple silly string. It s the worst case who can happen . I dont consider JSON as a solution to replace indexed arrays and associated arrays , and nested arrays . The goal to use indexed arrays , associated arrays , nested arrays is to have a better data structure more efficient for some kind of algorithms , not a better syntax . And binary searchs can t be implemented efficiently , by instance , because there is no string operators to compare s1 < s2 or s1 >s2 . The "keys" of the JSON string are only strings . JSON strings in LSL are the worst efficient to use algorithms You have talked too about nested data structures : same problem . a real data structure cfrom an another language could implement AVL , or binary trees and to be able to do search in O(ln(n)) time . With JSON String, as it s implmented , it will be never possible
×
×
  • Create New...