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

World: r3wp

[!REBOL2 Releases] Discuss 2.x releases

Kaj
21-Feb-2011
[2335]
Nice, a tool that prevents you from using your computer, unless you 
tell them that you really want to
GrahamC
21-Feb-2011
[2336]
I'd already figured out i needed to disable prevx for doing screen 
captures!
Kaj
21-Feb-2011
[2337]
Didn't you install it for nailing your clipboard and screen buffer 
shut?
GrahamC
21-Feb-2011
[2338x2]
No :)
I installed it because I'm too cheap to buy a virus scanner
BrianH
21-Feb-2011
[2340]
No, I mean any web browser that the Prevx plugin is installed in, 
when Prevx is running. That's what they call a "secured browser". 
If Prevx is running, it restricts clipboard use to apps it has whitelisted.
GrahamC
21-Feb-2011
[2341]
Jeez, I live in my web browser
BrianH
21-Feb-2011
[2342x2]
Why would you buy a virus scanner, when there are so many good free 
ones?
Can't you just live in Chrome with AdBlock? That solves most of your 
browser security problems.
GrahamC
21-Feb-2011
[2344x2]
I haven't bought a virus scanner in my life
And i'm forced to use 3 different browsers
BrianH
21-Feb-2011
[2346x2]
Ah. Well, I've found MSE to be good enough, with Malwarebytes as 
a backup. No charge for either.
Or you can camp out in the Prevx forums and make sure that every 
program that you use/make that uses the clipboard gets on their whitelist.
GrahamC
21-Feb-2011
[2348x2]
I think I'll just uninstall it ... and use the MSE one
It's too secure for me
Kaj
22-Feb-2011
[2350x3]
Or you can live in Linux without any virus scanners
I haven't installed a virus scanner in my life on my own machines
Well, that's not entirely true; I ran Cerebrus on Windows 2000 :-)
GrahamC
22-Feb-2011
[2353x2]
My Cerebrus wasn't really a virus scanner .. if that's what you meant
It did look for  base64 encoded signatures though in the body of 
the mail
Kaj
22-Feb-2011
[2355x2]
My mistake, I was always under the impression that you meant those 
signatures to encode for viruses...
So it wasn't a misspelling of Cerberus?
GrahamC
22-Feb-2011
[2357x4]
I guess it's a matter of choice how one spells things and also better 
to avoid other products with the same name but different spelling.
Yes, it was to search for viruses but I think it was because there 
was a particular flurry of some viruses at that time so I thought 
it would be easy enough to add ...
just to scan for those ones
But it was primarily an antispam engine
Kaj
23-Feb-2011
[2361]
Good, then my record is clean: I've never run a virus scanner in 
my life :-)
Robert
9-May-2011
[2362]
I'm wondering if it would be possible to get the R3 DLL interface 
into R2 without big trouble?
Pekr
9-May-2011
[2363]
what do you mean by R3 DLL interface? Whole extension stuff? I think 
it might be easier to finish R3 :-) In both cases though, we need 
Carl :-)
Robert
9-May-2011
[2364]
Yes, the DLL interface.
Pekr
9-May-2011
[2365]
well, I don't understand - there is no DLL interface for R3, is there? 
I do remember some related bounty, Max started some work, but it 
was not finished. Anyway - as I said - R2 = only Carl can do it?
Oldes
9-May-2011
[2366]
is Carl still alive?
Pekr
9-May-2011
[2367]
Oldes - according to his mendoradio blog, he still is http://mendoradio.wordpress.com/
 .... noone knows though, when and if ever his new linux related 
job ends, and what does it mean for the REBOL future ...
Robert
9-May-2011
[2368]
Seems to be complicated: I wonder if the R3 extension interface can 
be brought to R2 to make it simpler to use DLLs. Now clear?
Pekr
9-May-2011
[2369x2]
Robert - absolutly .....
Hmm, maybe a reverse question - what is missing in R3 in order to 
use it instead of R2? Just curious ....
Robert
9-May-2011
[2371]
Legacy code. Our products are R2 based and I want to use the same 
extensions. At the moment I have to handle code differences on the 
C side which I would like to avoid.
Pekr
9-May-2011
[2372]
Sounds logical then.
Kaj
9-May-2011
[2373]
It would be messy. R2 can't be touched, so it would have to be done 
through the Library interface. That's less powerful than the R3 extensions 
interface, so you'd have to develop a separate library in C that 
mimicks R3 extensions. Some functionality such as callbacks would 
still be pretty much impossible
Geomol
9-May-2011
[2374]
Why can't R2 be touched? R2 version 2.7.8 was released 1-Jan-2011. 
Has something changed?
Kaj
9-May-2011
[2375x2]
What you would be developing is already in R3, so It's a lot simpler 
to just interface R2 and R3. Probably the most straightforward option 
for that is 0MQ
I mean touching as in changing anything in R2, such as including 
an extensions interface
Geomol
9-May-2011
[2377]
Why is that not an option? Maybe not very likely, but if enough ask 
for it, maybe then?
Kaj
9-May-2011
[2378]
Good luck getting Carl to respond to anything REBOL related
Geomol
9-May-2011
[2379]
Ah yes, that's a good point.
Kaj
9-May-2011
[2380]
If you're approaching it from a theoretical standpoint, then yes, 
this whole situation could have been avoided by doing things such 
as implementing the new extensions interface in R2 first
BrianH
9-May-2011
[2381x4]
R2 is in the backwards-compatibility phase of its existence. No new 
changes are being made to it that would break a lot of R2 code.
That being said, something like this might be possible to add on 
to R2 as a library, though I haven't given much thought as to how.
To integrate the extension interface into R2 would be a huge task, 
and I'm not quite sure how to get around the lack of extendable objects 
(to build the module system on, since extensions are integrated with 
the module system). Adding the handle! type would be easy; adding 
the command! type would be a bit harder.
It would be rather difficult to fake the command! type if you are 
doing the library method, but you could use a similar method to that 
used to fake the closure! type. I am not sure how much you could 
replicate the value marshalling, and callbacks would likely be impossible.