Re: [Factor-talk] : (

2017-06-01 Thread fede s
seen it affect the code I'm working on. El Jueves, 1 de junio, 2017 5:34:06, Alexander Ilin <ajs...@yandex.ru> escribió: 01.06.2017, 05:39, "fede s" <elfeder...@yahoo.com.ar>: I've seen those glitches in the Factor UI, Factor 64 bits build, Win7 64.Sorry I never

Re: [Factor-talk] Factor C Interface

2017-06-01 Thread fede s
Hi Alexander: I took a look at making comdlg32.dll bindings some time ago, but I don't know much about calling conventions or how the Factor FFI stuff works, so it was a struggle. I just gave up shortly after. Is there somewhere to look at how you did it? If I can help with something please let

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

Re: [Factor-talk] Slot by Name

2017-05-23 Thread fede s
Ah, there was a slots.macros vocab, interesting. Now I have to see what it does... down the rabbit hole. I think I was more misleading than anything, but good thing you solved it anyway! El Martes, 23 de mayo, 2017 8:51:10, Alexander Ilin <ajs...@yandex.ru> escribió: Hello,

Re: [Factor-talk] Slot by Name

2017-05-22 Thread fede s
Hi, looks like you could make a word for that, using "slot-named" and "slot" from the "slots" vocab.Something like: USING: slots ; : slot-by-name>> ( object name -- value )    slot-named ! returns a slot-spec     offset>>  ! the offset of that slot    slot ; But haven't tried it... El

[Factor-talk] Just a test

2017-02-15 Thread fede s
Sorry to pollute the list, this is just a test mail, because I got a notification from the list about disabling my account. >Your membership in the mailing list Factor-talk has been disabled due >to excessive bounces The last bounce received from you was dated >01-Feb-2017.  You will not get any

[Factor-talk] sending multipart/form-data post requests?

2017-02-05 Thread fede s
: test.org     user-agent: Factor http.client     Some data     IN: scratchpad For ref: https://www.w3.org/TR/html401/interact/forms.html#h-17.13.4 If this is not present, what would be a good way of implementing it? Thanks, fede s. --

Re: [Factor-talk] unclip performance on ranges

2017-02-01 Thread fede s
have smalltalk seizures sometimes :P). Thank you both, Александр and Jon!Fede s. El Jueves, 26 de enero, 2017 8:27:43, Jon Harper <jon.harpe...@gmail.com> escribió: Hi, instead of creating range-unclip, a simpler idea is to use unclip-slice. this article has some insights reg

[Factor-talk] unclip performance on ranges

2017-01-22 Thread fede s
Hi, I noticed this Q in StackExchange http://codereview.stackexchange.com/questions/153288/codewars-gap-in-primes  and attempted a (naive) solution for the problem: : next-prime ( range -- rest prime? )     dup empty?     [ f ]     [ unclip dup prime?   [ drop next-prime ] unless     ] if ;

Re: [Factor-talk] Hello, and deply problems

2016-08-20 Thread fede s
com> escribió: Does a console-only application deploy? Like "hello" deploy? (One that doesn't use the UI).  It might be that the new theme images are causing problems with Windows deploys. Will try and look into this later.  Thanks,John. On Aug 20, 2016, at 7:25 PM, fede s <elfe

Re: [Factor-talk] Hello, and deply problems

2016-08-20 Thread fede s
I wonder if something in my system interferes with the build process BesidesC:\Users\\AppData\Local\factorcode.org\*C:\Users\\AppData\Local\Temp\factorcode.org\*C:\Users\\.factor-rc C:\Users\\.factor-boot-rcis there anything else Factor uses? I tried removing all these, unzipping factor like it

Re: [Factor-talk] Specializing new?

2016-08-20 Thread fede s
, Aug 19, 2016 at 12:49 PM, fede s <elfeder...@yahoo.com.ar> wrote: Hi I see "new" is a generic word, with the regular behavior set as a method for object.I tried specializing it on other tuple class, but it didn't work.    TUPLE: no-news field ;   : same-one ( -- t ) T{ no-news f

[Factor-talk] Specializing new?

2016-08-19 Thread fede s
Hi I see "new" is a generic word, with the regular behavior set as a method for object.I tried specializing it on other tuple class, but it didn't work.    TUPLE: no-news field ;   : same-one ( -- t ) T{ no-news f "same one" } ;  M: no-news new  drop same-one ; I expect this:   no-news new  

[Factor-talk] Hello, and deply problems

2016-08-18 Thread fede s
get an image truncated error message. I'll try with the 32 bit version now and see what happens. fede s -- ___ Factor-talk mailing list Factor-talk@lists.sourceforge.net https