[Factor-talk] : (

2017-05-31 Thread Alexander Ilin
Hello! Factor crashed twice today. Both times when I was doing this code (with different strings in the middle): ! Delete a path (subtree) from the DB. "C:/Path/To/table.db" [ resource-path new select-tuples [ path>> "/Some/Path/Prefix/" head? ] filter [ [ delete-tuples ] each ] wi

Re: [Factor-talk] : (

2017-05-31 Thread John Benediktsson
I'm sorry to hear that. I don't see any of those issues on any of the three platforms. But I mostly use 64-bit. It is possible to have an issue with the 32-bit version, possibly a library issue maybe where we define a struct wrong for 32-bit? I doubt we have major issues with the GC. > On May

Re: [Factor-talk] How to introduce factor to java programmers?

2017-05-31 Thread Sankaranarayanan Viswanathan
Thanks for the ideas John! I have been looking at the collection of talks, and they've been quite helpful. Your thoughts about discussing "Java like" things makes a lot of sense and I think contrasting Factor's object system with Java's should be a nice topic. That said, I did run into a que

Re: [Factor-talk] How to introduce factor to java programmers?

2017-05-31 Thread John Benediktsson
Well, technically neither ``dip`` nor ``keep`` need those stack effects, they are inlined which means the non-inline word that includes them will have it's stack effect checked by the compiler for correctness. There are few reasons why we want to have the ".." variadic stack effects, and those are

Re: [Factor-talk] : (

2017-05-31 Thread fede s
I've seen those glitches in the Factor UI, Factor 64 bits build, Win7 64.Sorry I never reported, I was hoping to find a way to reproduce it.They seem to happen after having some errors in the code I'm working on. I suspect of memory leaks, I'm not sure.If you suspect of something, I think I coul