r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[!AltME] Discussion about AltME

Graham
2-Feb-2010
[4460]
A lighter shade of grey?  Is this a Procol Harum revival?
Maxim
2-Feb-2010
[4461x2]
lighter?
ah yes.. is much less aggressive  :-)
denismx
2-Feb-2010
[4463x2]
we noticed that 1.2.17 was loosing some posts - but we like to hit 
enter to separate messages and keep on writing the next one without 
waiting for the post to show. We miss that badly
graham, wasn't that a lighter shade of pale?
BrianH
2-Feb-2010
[4465]
Ah, I compose posts and use ^s. Different interaction model. I lost 
messages with the old version a lot. Even in 1.2.21 some messages 
didn't go through, but at least they aren't lost any more - I can 
resend.
Maxim
2-Feb-2010
[4466x2]
I must say that since the server is on the linode box... its been 
just about rock solid.
(the server)
BrianH
2-Feb-2010
[4468]
I still have problems, mostly due to frequently-frozen-client and 
internet dropouts. At least messages aren't lost now.
Graham
2-Feb-2010
[4469x2]
denis, yes!  :)

I would prefer that the message be saved somewhere ... and available 
in a button to restore than this effect,  That's how I did it in 
the Synapse chat client.
Infact I think I kept a  history so that if you posted to the wrong 
group, you could recall your message and repost.
Mchean
3-Feb-2010
[4471]
once again altme reports a trojan on Vista: Category: Trojan


Description: This program is dangerous and executes commands from 
an attacker.

Recommendation: Remove this software immediately.


Microsoft Security Essentials detected programs that may compromise 
your privacy or damage your computer. You can still access the files 
that these programs use without removing them (not recommended). 
To access these files, select the 'Allow' action and click 'Apply 
actions'. If this option is not available, log on as administrator 
or ask the local administrator for help.

Items: 
file:C:\Altme\worlds\rebol3\chat\380.set->(SCRIPT0001)

Get more information about this item online.
Graham
3-Feb-2010
[4472x2]
and what group is set 380?
Luckily it's a group I unsubbed a while ago
Sunanda
3-Feb-2010
[4474]
380 is Chat (not web public)

As with all AltME *.set files, it is just a fiile of REBOL blocks, 
each block containing text entries that define one post


It is possible that it has lots of REBOL code thta people have posted. 
Pehaps source code in other languages too; and maybe some REBOL molded 
binary #{....}


Hard to see how that could damage your computer....Unless it has 
become infected in some other way. Have you tried deleting the world 
and restarting it? That would get you the canonical 380.set (assumimg 
you are a member of that group)
Graham
3-Feb-2010
[4475]
These are just false alarms ....
BrianH
3-Feb-2010
[4476]
Maybe someone was discussing JS malware there.
Izkata
3-Feb-2010
[4477]
Yes, IIRC 380 was the same one as last time, some Javascript code 
where someone was asking about an exploit
Sunanda
3-Feb-2010
[4478]
I've run a virus scan against that file, and the software I am using 
does not detect any threats.
Mchean
3-Feb-2010
[4479x3]
i was in the process of installing a new version.  I knew it was 
a false alarm though.
this was the Ms virus program btw
though symantec did it once to me as well
Graham
4-Feb-2010
[4482]
Just wondering the one of the moderators would like to go thru and 
revise the default markers and groups
Brock
6-Feb-2010
[4483x2]
I just experienced my first 'freeze' of AltME in how many... seven 
or so years?
While I was typing a message, after just turning on my PC and not 
working on anything else.  I had been in AltME for no longer than 
5 minutes and only read a single group.
Reichart
6-Feb-2010
[4485]
Is it possible your entire system was doing memory management, unrelated 
to AltME, or are you sure it was JUST ALTME?  AS in, you could still 
interact with other things?

Also, what is your history set to?  Is it over 1000 messages back?
Robert
6-Feb-2010
[4486]
Would it be possible to use something like SQLite on the client side? 
I think AM is not fast enough to use. And I don't want to set a message 
limit, I just want to click a group/chat and have it there. Being 
able to make fast queries.
Reichart
6-Feb-2010
[4487]
There is a point with any data set where you have to decide "how" 
to present the data fast.

Usually levels of caches, and prediction can make this seem real 
time, andonly when you go to edit something do things slow down in 
the background.

Almost every system out there that is fast in fact shows some subset 
(like 100 lines) at a time. the pulls in the next.
AltME was an all or nothing thing.
Sunanda
6-Feb-2010
[4488]
SQL is likely to be overkill for AltME data -- especially as some 
posts are very short (LOL) so the meta data and keys are several 
times the length of the primary content.

We picked a different data structure to all-or-nothing in the REBOL.org 
archive (more of a balanced tree), but then we had a different set 
of priorities and operating conditions:
  http://www.rebol.org/aga-display-posts.r?post=r3wp151x4488
Graham
6-Feb-2010
[4489x2]
Ok
I wonder if it would be better to cache messages only as you read 
them ... and pull only unread messages when you want to read them 
.. so we wouldn't have this issue of new users syncing 50 mb of messages
Sunanda
6-Feb-2010
[4491]
And that might fix the resync bug too!
BrianH
6-Feb-2010
[4492]
Perhaps the space for the unsynced messages could be allocated and 
the messages themselves could be initially synced in the background, 
with on-demand messages (the ones visible to the user) being given 
priority.
Graham
6-Feb-2010
[4493x2]
That might cause issues if you want to allow users to edit sent message 
though if they are now cached on client machines.
sparse matrix
BrianH
6-Feb-2010
[4495]
But we don't allow users to edit sent messages.
Graham
6-Feb-2010
[4496]
*if* ...
BrianH
6-Feb-2010
[4497]
And such edits would be new messages (though backdated) even if we 
allowed that.
Graham
6-Feb-2010
[4498]
And it's *they* and not *we* unless you're now working on Altme!
BrianH
6-Feb-2010
[4499]
Heck, I can barely keep up with the R3 and R2 mezzanines :(
Robert
7-Feb-2010
[4500x3]
To state it differently, the cache size is what I can see on screen.
When I start scrolling, the visislbe range needs to slide over the 
whole messages available.
And, I don't care if using SQLite adds 50% overhead as long is it's 
instant when I click. Time is valuable, not space.
Gregg
7-Feb-2010
[4503]
I think the all-or-nothing issue is based on the UI, not the data 
store. It works like IOS Messenger, creating all faces in the pane 
when a group loads.
Brock
7-Feb-2010
[4504]
Reichart, the computer was used by others while AltME was having 
it's issue responding.  I left AltME running to see if it would recover. 
 It never did..  My history was set to 100 messages.
Reichart
9-Feb-2010
[4505]
When leaving AltME I got an error I have never seen before "Server 
reported error in unknown-request because of: őtatus"
Graham
9-Feb-2010
[4506]
seen that before several times ...never managed to copy it though
Henrik
9-Feb-2010
[4507]
I've seen it once, shortly after Carl began making updates to AltME.
MikeL
11-Feb-2010
[4508]
Does Altme have any way of excluding specified groups so I don't 
see them at all?  There are many groups  that Ilike to watch and 
a few that I want to make invisible (but just until the end of time)?
Sunanda
11-Feb-2010
[4509]
Only mechanism is to set a group as private, and then opt out of 
it.
(a couple of dozen are already private).


If the groups you want to watch are [web-public] then you could bookmark 
them in a browser instead:
   http://www.rebol.org/aga-groups-index.r?world=r3wp