Re: [Factor-talk] 4DStroll - a 4D visualisation tool

2014-01-31 Thread Jean-François Bigot
Hi, I updated a bit the code since last post. Source can be found on https://github.com/Bigot/factor/tree/4DStroll/extra/4DStroll It's now possible to : - group/ungroup solids. - choose solids to add (simple way) - modify name and color of objects (basic way) 4DStroll begin to be usable to

Re: [Factor-talk] Parse ini file

2009-12-04 Thread Jean-François Bigot
Hi I tried once to do something like that. It's probably far simplier that what you want, but you can find the source at http://thread.gmane.org/gmane.comp.lang.factor.general/2475 I didn't tested this for a long time, I don't know if it still works. Jeff Le 30 nov. 09 à 05:15, Le Hoang

Re: [Factor-talk] LaTeX

2009-08-24 Thread Jean-François Bigot
Hi I worked a little about a latex generator for factor doc. You can find all information on the enclosed mail I posted a few month ago. I will be interested If you have feedback. Jeff Début du message réexpédié : De : Jean-François Bigot jeff.bi...@wanadoo.fr Date : 5 février 2009 22

[Factor-talk] talks demos are unreadable

2009-04-20 Thread Jean-François Bigot
Hi Just a small thing to correct with the new font vocabulary. Previously the text in talks apps (google-talk etc) had a transparent background. With the new UI improvements, on the windows last builds, the background is now black, text is unreadable. Jeff

Re: [Factor-talk] My first OpenGL program in Factor, need some help

2009-04-05 Thread Jean-François Bigot
Hi I'am not sure my code is up to date but you can give a look at extra/ 4DNav. The word add-keyboard-delegate links keys to actions. Jeff Le 5 avr. 09 à 20:12, Joe Groff a écrit : On Apr 5, 2009, at 3:31 AM, Jon Kleiser wrote: Hi, Thanks for your reply! - Make use of the arrow key

Re: [Factor-talk] Genetic Programming in Factor?

2009-01-26 Thread Jean-François Bigot
Hi I posted a simple GP vocab. You can find it on the page : http://paste.factorcode.org/paste?id=336 There are two very simple examples in annotation, a 24 game solver and a ( x -- y ) function finder. Jeff Le 26 janv. 09 à 14:44, Charles Summers a écrit : Are there any examples of

Re: [Factor-talk] updated with-slots

2009-01-21 Thread Jean-François Bigot
Hi Your with-slots word would be interesting to reimplement the loadable-values vocab I proposed a few days ago. Nevertheless I really don't understand why the slots of abc are lowercase and accessors in the scope are uppercase. It's really hard for me to switch from the one to other and

Re: [Factor-talk] wiki - recover password

2009-01-18 Thread Jean-François Bigot
already reported it about 2 weeks ago, *sigh*). In the mean time, I suggest creating a new account. Slava On Sun, Jan 18, 2009 at 7:25 AM, Jean-François Bigot jeff.bi...@wanadoo.fr wrote: Hi I'm very thoughtless and rely on password recover functions. But unfortunately I'm not sure

Re: [Factor-talk] factor-bgt repository

2008-12-26 Thread Jean-François Bigot
Doug wrote: Jeff, I tried your 4DNav app -- it's really cool! One thing I had to change to get it working is in extra/4DNav/ 4DNav.factor -extra/4DNav +resource:extra/4DNav The resource: is interpreted by the normalize-path word and replaced with the Factor directory.

Re: [Factor-talk] factor-bgt repository

2008-12-25 Thread Jean-François Bigot
Ed wrote : Jeff, I did a pull from 'factor-bgt' and I noticed these changes: rename {build-support = unmaintained/build-support}/factor.sh (100%) rename {build-support = unmaintained/build-support}/grovel.c (100%) Were those accidental? Ed Hi yes, I think it's accidental, I probably

[Factor-talk] file chooser gadget

2008-12-22 Thread Jean-François Bigot
On Saturday 13 December 2008 04:29:10 pm Jean-François Bigot wrote: I wanted to add a file chooser to 4DNav (http://github.com/Bigot/ factor-bgt) in order to choose the 4D object to visualize but I didn't find one in ui.gadget. Hi Jeff, Minor note; I checked out your repository

[Factor-talk] GENERIC: in doc browser

2008-11-24 Thread Jean-François Bigot
Not the latest, but if I well understand, a git pull will make me happy ! thanks a lot jeff Have you tried the latest git version? On Mon, Nov 24, 2008 at 4:51 PM, Jean-François Bigot [EMAIL PROTECTED] wrote: Hi, Doc browser is a really nice tool to jump from a definition to an other

[Factor-talk] deep-cleave-quots

2008-11-23 Thread Jean-François Bigot
Hi, When I try to do something in Factor: 1. I look in libraries if a word do what I want (not always simple, and sometimes really hard) 2. I try to do it by myself if it is easy 3. I look at examples in extra vocabs and try to understand what is done (a great hand parsing job !) When I

[Factor-talk] ID with postgres DB

2008-10-26 Thread Jean-François Bigot
Hi I want to use factor database library wih postgres but I have a little problem with primary key names. It looks like primary key must be id. When create-table is called, create-function-sql uses table name and suffix it with _id_seq to give a name to currval select currval('' 0% 0%

Re: [Factor-talk] gl.camera and adsoda

2008-10-07 Thread Jean-François Bigot
working version before I implement my own camera. Jeff On Friday 03 October 2008 15:51:45 Jean-François Bigot wrote: During the summer I wrote a simple tool to navigate in a 4D space. For the core, I used adsoda algorithm (http://www.flowerfire.com/ ADSODA/) which I rewrote in factor

[Factor-talk] gl.camera and adsoda

2008-10-04 Thread Jean-François Bigot
Hi, During the summer I wrote a simple tool to navigate in a 4D space. For the core, I used adsoda algorithm (http://www.flowerfire.com/ ADSODA/) which I rewrote in factor. The viewer was design following the lsys example ie using gl.camera vocabulary. My problem is that i didn't found

Re: [Factor-talk] What is a good definition ?

2008-04-25 Thread Jean-François Bigot
Hi, Eric nicely gave me his solution : DEFER: combinations : (combinations) [ 1 tail ] dip combinations ; : prefix-each [ prefix ] curry map ; : combinations ( seq n -- seqs ) { { [ dup 0 = ] [ 2drop { { } } ] } { [ over empty? ] [ 2drop { } ] } { [ t ] [