[18:00 UTC] *** Logging started. *** [11:00 AM PT] Andrew Hellershanks: Hello, everyone. [11:00 AM PT] Ubit Umarov: beer? jezzz yr so dead [11:00 AM PT] Selby.Evans @grid.kitely.com:8002: hi [11:00 AM PT] Ubit Umarov: that is so so old.. [11:00 AM PT] Andrew Hellershanks: All beer tastes funny [11:01 AM PT] Vincent.Sylvester @hg.zetaworlds.com: True, but all the Rum is actually gone [11:01 AM PT] Vincent.Sylvester @hg.zetaworlds.com: Let's see this week we had a few minor commits I think Ubit can best describe what they were I haven't really looked [11:02 AM PT] Ubit Umarov: oh? there where commits? [11:02 AM PT] Andrew Hellershanks: one or two. :) [11:02 AM PT] Jamie.Jordan @grid.kitely.com:8002: Hi everybody [11:03 AM PT] Ubit Umarov: ahh yes [11:03 AM PT] Andrew Hellershanks: Hello, Jamie [11:03 AM PT] Ubit Umarov: change some code using things that will be gone from .net [11:03 AM PT] Ubit Umarov: some in fact obsolete for ages [11:04 AM PT] Ubit Umarov: other that i seen that will no work he same way [11:04 AM PT] Ubit Umarov: so i changed before i forget :) [11:05 AM PT] Andrew Hellershanks: good idea [11:05 AM PT] Ubit Umarov: one that would totally stop working is our local console code [11:06 AM PT] Ubit Umarov: in fact looking to the ms changes, one can question how it did work [11:07 AM PT] Ubit Umarov: thing is that despite ms claims so far, console code is actually not that thread safe [11:07 AM PT] Ubit Umarov: namely using console.readkey [11:08 AM PT] Ubit Umarov: i meant using that at same time onther thread reads or changes cursor positions for exampel [11:09 AM PT] Ubit Umarov: in later frameworks ms added locks, so readky will block [11:09 AM PT] Ubit Umarov: i added a workaround that seems working [11:10 AM PT] Vincent.Sylvester @hg.zetaworlds.com: Their changes make me wonder what they think the usecase of .net is as I would say what OpenSim does isn't particularly "out there". MS making changes to please "someone" or themselves perhaps not making logical changes, only changes that work for their usecase everyone else be damned huh. [11:10 AM PT] Ubit Umarov: sadly adds some lag to console typing, and makes a thread awake up every 100ms when in past it was possible just sleeping waiting for a signal [11:11 AM PT] Ubit Umarov: well on this, thing is that console is a bit complex thing [11:11 AM PT] Ubit Umarov: in fact, at least on linux, the framework does connect to a terminal [11:12 AM PT] Ubit Umarov: kinda like old rs232 connections to a vt100 terminal [11:12 AM PT] Ubit Umarov: to read a cursor position means sending a control sequence of chars and getting a answer back [11:13 AM PT] Ubit Umarov: on the same virtual serial link... [11:14 AM PT] Ubit Umarov: ms found they could not "interleave" that on waiting readkey [11:14 AM PT] Ubit Umarov: so they added locks to serielize that.. [11:14 AM PT] Ubit Umarov: totally breaking code like ours [11:15 AM PT] Ubit Umarov: if that is a realy issue ms did found, or just a big ms mistake,, can't tell [11:15 AM PT] Vincent.Sylvester @hg.zetaworlds.com: Sounds like a sledgehammer through door kinda fix on their end [11:15 AM PT] Ubit Umarov: fact is that they changed the code, and refuse any fixes [11:16 AM PT] Ubit Umarov: did told they would change consose on .net7.0.. but seen nothing [11:16 AM PT] Vincent.Sylvester @hg.zetaworlds.com: At this point you can basically expect such "fixes" from MS, seems their modus operandi in terms of .net and most other things [11:17 AM PT] Andrew Hellershanks: NIH syndrome? [11:17 AM PT] Ubit Umarov: well with this, i do have opensim running compiled to .net6.0 and under its runtime [11:17 AM PT] Ubit Umarov: both on windows and linux [11:17 AM PT] Vincent.Sylvester @hg.zetaworlds.com: Well most of it, not everything [11:18 AM PT] Ubit Umarov: sadly still some hand made dlls changes [11:18 AM PT] Ubit Umarov: since all we had for mono, will just not work [11:18 AM PT] Vincent.Sylvester @hg.zetaworlds.com: Then again I think XEngine has served us well over the years, but YEngine just works so much better [11:18 AM PT] Ubit Umarov: and ofc course we lost things like Xengine [11:19 AM PT] Ubit Umarov: also i have like 570 warnings abotu obsolete code [11:19 AM PT] Vincent.Sylvester @hg.zetaworlds.com: I did some scripting past week and it's so nice to just refer to spec and things work as intended not having to massage every piece into place like XEngine had a tendency to [11:19 AM PT] Ubit Umarov: that will not work on .net7.0 [11:19 AM PT] Andrew Hellershanks: 570 warnings? Eek. That will take a while to sort out. [11:19 AM PT] Ubit Umarov: like the bitmaps, fundamental to us [11:19 AM PT] Ubit Umarov: not reay [11:19 AM PT] Ubit Umarov: its like 3 or 4 things [11:20 AM PT] Ubit Umarov: like All Image code... [11:20 AM PT] Vincent.Sylvester @hg.zetaworlds.com: Andrew just disable all the pragma stuff and you get a ton of warnings using .net4.8 already. Only some of them are really hinting at issues [11:20 AM PT] Ubit Umarov: and of httprequest they consider dead [11:20 AM PT] Ubit Umarov: and a few simllar things [11:21 AM PT] Ubit Umarov: but those will work on .net6.0 adding some extra dlls [11:21 AM PT] Ubit Umarov: will not on net7 as i said [11:22 AM PT] Ubit Umarov: i have zero warnings now after adding orders to ignore some warnings :) [11:22 AM PT] Ubit Umarov: CA1416,SYSLIB0011,SYSLIB0014 [11:23 AM PT] Vincent.Sylvester @hg.zetaworlds.com: "Jesus take the wheel" type coding xD [11:23 AM PT] Andrew Hellershanks: hehe [11:23 AM PT] Ubit Umarov: is there any other form of coding with ms ? [11:23 AM PT] Andrew Hellershanks: Always have to be careful when you ignore warnings. You need to be sure which ones are safe to ignore. [11:23 AM PT] Ubit Umarov: well on opensource [11:23 AM PT] Ubit Umarov: remember that mono was a big disaster also [11:24 AM PT] Vincent.Sylvester @hg.zetaworlds.com: Some of the warnings it spews even on 4.8 are stupid, like it complains about events, but how else are you supposed to handle that stuff, even MS doesn't offer a replacement when you look for the warning id [11:24 AM PT] Ubit Umarov: mono 4 was a huge fail for us [11:24 AM PT] Ubit Umarov: well those warnings are on another class of warnings [11:24 AM PT] Ubit Umarov: the ones im talking abotu are really thigns will will need to fix someday [11:25 AM PT] Ubit Umarov: fact this things do work on net6 means thats a few more years [11:25 AM PT] Ubit Umarov: hopefuly [11:25 AM PT] Andrew Hellershanks nods [11:26 AM PT] Vincent.Sylvester @hg.zetaworlds.com: Well take everything MS says with a grain of salt these days [11:26 AM PT] Vincent.Sylvester @hg.zetaworlds.com: "Windows 10 is the last windows"... [11:26 AM PT] Ubit Umarov: well meanwhile, some are using a new fs beta [11:26 AM PT] Ubit Umarov: that only has the new SL stupid profiles code [11:26 AM PT] Ubit Umarov: so profiles are all broken [11:27 AM PT] Andrew Hellershanks: Vincent; yeah, we know how that turned out. [11:27 AM PT] Ubit Umarov: does not have the fixes Beq made to recover llUDP; like i said last wee [11:27 AM PT] Ubit Umarov: possible similar issues with other beta viewers out there [11:28 AM PT] Vincent.Sylvester @hg.zetaworlds.com: That profile thing I really don't get, it makes sense to only send partial updates sure, but then sending them over http... instead of oh idk caching and waiting till they are done making edits every two seconds and sending a full update then over unblocked udp [11:28 AM PT] Ubit Umarov: no it makes no sense [11:28 AM PT] Vincent.Sylvester @hg.zetaworlds.com: One step forward two steps back [11:28 AM PT] Ubit Umarov: their changes are just... well whatever [11:29 AM PT] Vincent.Sylvester @hg.zetaworlds.com: Right idea, horrible execution, as usual [11:29 AM PT] Ubit Umarov: and for us, a lot harder to implement, as i said [11:29 AM PT] Ubit Umarov: not even right idea [11:29 AM PT] Ubit Umarov: ahh hey removed Interest also [11:30 AM PT] Ubit Umarov: that tab is gone [11:30 AM PT] Ubit Umarov: "interests" [11:30 AM PT] Vincent.Sylvester @hg.zetaworlds.com: Well I am not sure how many did use that in earnest to be fair, but it is nice to have and doesn't hurt anything [11:30 AM PT] Ubit Umarov: at least on that Beta fs [11:30 AM PT] Vincent.Sylvester @hg.zetaworlds.com: Far as I remember it's just some bit field thing in the db anyways, so not like it takes up that much space [11:31 AM PT] Andrew Hellershanks: I know I set that flags in my profile but I rarely if ever looked at those entries in the profile of someone else. [11:31 AM PT] Ubit Umarov: well LL had delete all this profiles [11:31 AM PT] Ubit Umarov: using only web ones [11:32 AM PT] Ubit Umarov: now decided to put them back, using firestorm code.. but changing he protocol [11:32 AM PT] Ubit Umarov: mas made a stupid protocol [11:32 AM PT] Ubit Umarov: sorry the "stupid" but that is a exact description :p [11:33 AM PT] Vincent.Sylvester @hg.zetaworlds.com: Trying to do everything, succeeding at nothing, that's what it feels like lately [11:33 AM PT] Ubit Umarov: well it is ll, not our thing, except that we get the effects [11:34 AM PT] Ubit Umarov: lets hope Beq can add her fixes to it [11:34 AM PT] Vincent.Sylvester @hg.zetaworlds.com: There is not quality control internally I feel, nothing that says "hey let's think for a minute" [11:34 AM PT] Ubit Umarov: nah hthe have control [11:35 AM PT] Ubit Umarov: they break things on a very controled way!! [11:35 AM PT] Vincent.Sylvester @hg.zetaworlds.com: lol [11:36 AM PT] Andrew Hellershanks: That's another reason we need OS specific viewers that don't depend on LL for their main code base. [11:36 AM PT] Ubit Umarov: possible this where the server side guys... [11:36 AM PT] Ubit Umarov: whatever... [11:36 AM PT] Ubit Umarov: i will not add the caps [11:36 AM PT] Ubit Umarov: viewers for opensim MUST use current api [11:37 AM PT] Ubit Umarov: well at least in near times [11:37 AM PT] Ubit Umarov: i mean will not add in near time [11:38 AM PT] Vincent.Sylvester @hg.zetaworlds.com: Always treating their changes as long term tests, often enough they reverted or changed to something more logical later on [11:38 AM PT] Ubit Umarov: as i told would need to add a very twisted caches collectorm to make a entire new API from the viewer cap to all the databases [11:39 AM PT] Ubit Umarov: because our protocol only suports changes on a block of data they now did split [11:39 AM PT] Ubit Umarov: protocols even [11:39 AM PT] Ubit Umarov: ofc and there are profiles modules [11:39 AM PT] Ubit Umarov: that wil be dead also [11:40 AM PT] Andrew Hellershanks: The change affects the third party profile modules? [11:40 AM PT] Ubit Umarov: yeah [11:40 AM PT] Andrew Hellershanks: :P [11:40 AM PT] Vincent.Sylvester @hg.zetaworlds.com: Ultimately it's what, same behavior just 30% more traffic used for some minor profile update [11:41 AM PT] Ubit Umarov: less behavior [11:41 AM PT] Ubit Umarov: no interests [11:42 AM PT] Ubit Umarov: really LL think http is a instantaneos crap [11:42 AM PT] Ubit Umarov: current coders could even add a cap to send a char by char on local chat [11:42 AM PT] Ubit Umarov: :p [11:43 AM PT] Ubit Umarov: well whatever.. [11:43 AM PT] Ubit Umarov: sad we get the effects of their things like this.. [11:43 AM PT] Andrew Hellershanks nods [11:44 AM PT] Ubit Umarov: as i said Beq already spent time putting our API back... [11:44 AM PT] Ubit Umarov: lets hope it gets on fs for opensim viewers soon [11:44 AM PT] Ubit Umarov: and others keep it also [11:45 AM PT] Andrew Hellershanks: We can but hope. :) [11:45 AM PT] Andrew Hellershanks: It is now quarter to the hour. Cuga has an announcement. [11:45 AM PT] Andrew Hellershanks: Go ahead, Cuga. [11:46 AM PT] Andrew Hellershanks: Hm... have we lost Cuga? [11:47 AM PT] Vincent.Sylvester @hg.zetaworlds.com: Let me get my poking stick [11:47 AM PT] Andrew Hellershanks: While we wait for Cuga, did anyone else have a question/comment for today? [11:49 AM PT] Andrew Hellershanks: I can mention on minor news items. This past weekend Kitely grid celebrated their 14th anniversary. [11:49 AM PT] Ubit Umarov: already 14? time flies [11:50 AM PT] Andrew Hellershanks: I know. I didn't realize they had been running that long. One of the last events was a live music performance done via a media stream. The video had the audio and video of the person performing their music live. [11:50 AM PT] Cuga.Rajal @rajal.org:9000: sorry [11:50 AM PT] Cuga.Rajal @rajal.org:9000: some was at door [11:51 AM PT] Cuga.Rajal @rajal.org:9000: back [11:51 AM PT] Andrew Hellershanks: np, Cuga. You may go ahead with your announcement. [11:51 AM PT] Cuga.Rajal @rajal.org:9000: I was just going to mention that I re-wrote the HG authentication module that I was asking about 3 weeks ago [11:51 AM PT] Cuga.Rajal @rajal.org:9000: I put it on a gothub repo [11:51 AM PT] Cuga.Rajal @rajal.org:9000: https://github.com/cuga-rajal/hgauth [11:52 AM PT] Cuga.Rajal @rajal.org:9000: it's for inbound HG TPs, like the form they use at OSCC party [11:53 AM PT] Cuga.Rajal @rajal.org:9000: forces a form to be signed before allowing inbound HG [11:53 AM PT] Cuga.Rajal @rajal.org:9000: hopefully useful to others [11:54 AM PT] Cuga.Rajal @rajal.org:9000: thats all I had [11:54 AM PT] Andrew Hellershanks: I'm sure otherse will find it useful. You can let us know how much of a response you get to the project. [11:55 AM PT] Andrew Hellershanks: ty, Cuga. [11:55 AM PT] Cuga.Rajal @rajal.org:9000: I got one star already LOL [11:55 AM PT] Andrew Hellershanks: :) [11:55 AM PT] Andrew Hellershanks: That's a start. [11:56 AM PT] Andrew Hellershanks: Five minues left. Any other comments/questions/announcements for today? [11:57 AM PT] Jamie.Jordan @grid.kitely.com:8002: great meeting yall [11:57 AM PT] Andrew Hellershanks: Anyone seen Kayaker recently? It seems a little unusual for him to be absent several weeks in a row. [11:57 AM PT] Jagga Meredith: *snores quiet;y* [11:57 AM PT] Andrew Hellershanks: ok, Jamie. tc. Thanks for coming. [11:57 AM PT] Andrew Hellershanks: It there is nothing more I will wrap up todays gathering. [11:58 AM PT] Jamie.Jordan @grid.kitely.com:8002: think he's traveling [11:58 AM PT] Andrew Hellershanks: ok. That would explain it. [11:58 AM PT] Andrew Hellershanks: That will do it for this week. Thank you all for coming. See you again next week. [18:59 UTC] *** Logging stopped. ***