Re: [Caml-list] Desktop GUI toolkits - current state of the art?

2010-11-29 Thread Adrien
On 28/11/2010, Adrien camarade...@gmail.com wrote: Hi, As far as I'm concerned I've started experimenting with the concept of tiling (as used by tiling window managers) and zippers of horizontal and vertical boxes. That's pretty much what xmonad (window manager written in haskell) does

Re: [Caml-list] Desktop GUI toolkits - current state of the art?

2010-11-28 Thread Adrien
? -- Adrien Nader ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com/group/ocaml_beginners Bug reports: http

[Caml-list] Optional arguments between non-optional ones

2010-09-23 Thread Adrien
- unit but an expression was expected of type unit - unit - 'b If I remove the first unit argument of f, then it works as expected. There also seems to be variations around that. Is there any explanation for that difference? And any chance of it getting improved? Thanks. -- Adrien

Re: [Caml-list] Optional arguments between non-optional ones

2010-09-23 Thread Adrien
why it had failed. I was trying to coerce f into a more restrictive (or simply different?) type but the solution was keep the type of h's argument broader. Thanks. -- Adrien Nader ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr

Re: [Caml-list] More re GC hanging

2010-09-01 Thread Adrien
On 01/09/2010, Damien Doligez damien.doli...@inria.fr wrote: On 2010-08-15, at 12:45, Adrien wrote: First, remove all non-tail-rec functions: no more List.map, @ or List.concat. All lists were pretty short (definitely less than 1000 elements) but maybe the amount of calls generated garbage

[Caml-list] [ANN] lablwebkit, generated with cowboy/glib

2010-08-22 Thread Adrien
/GObjectIntrospection [3] https://forge.ocamlcore.org/frs/download.php/450/lablwebkit-1.2.3.tar.gz [4] https://forge.ocamlcore.org/frs/download.php/449/lablwebkit-1.3.3.tar.gz [5] https://forge.ocamlcore.org/frs/download.php/448/g_thread_init.tar.gz --- Adrien Nader

Re: [Caml-list] More re GC hanging

2010-08-22 Thread Adrien
don't think it has to do with the bug on 64bit systems with ASLR, at least not directly: I'm using ocaml 3.11.2 and tried with ASLR disabled. But I need to make a reproducer: the very high word count did not always show up (although the out-of-memory error always did). --- Adrien Nader

[Caml-list] [ANN] cowboy and cowboy/glib preview, C binding generation framework

2010-08-18 Thread Adrien
it!) --- Adrien Nader ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com/group/ocaml_beginners Bug reports: http://caml.inria.fr/bin

Re: [Caml-list] More re GC hanging

2010-08-15 Thread Adrien
/randomize_va_space r...@jarjar:~# echo 0 /proc/sys/kernel/randomize_va_space r...@jarjar:~# I can't use sudo to write to most files in /proc or /sys: I have to log in as root ('su -' does the job just fine). Hope this helps. --- Adrien Nader

Re: [Caml-list] ocamlcore.org not available

2010-04-24 Thread Adrien
Hi, There is indeed a problem with the forge currently but it should be working again soon. In the meantime, you should be able to reach ocamlcore.org at the following IP address: 87.98.154.45. --- Adrien Nader ___ Caml-list mailing list

[Caml-list] FRP and GTK

2010-04-12 Thread Adrien
can't find it anymore. I'm not afraid of working on that aspect myself but wanted to know if there was already something or maybe at least some work on that. Thanks. --- Adrien Nader ___ Caml-list mailing list. Subscription management: http

Re: [Caml-list] exception not registered.Abandon

2010-03-13 Thread Adrien
came from sdl stubs : sdl{stub,mixerstub,loaderstub}.{so,a}. --- Adrien Nader ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http

Re: [Caml-list] Howto execute a command without the cmd windows opening?

2009-11-04 Thread Adrien
That's a bit hackish but you can also try to change the COMSPEC environment variable which points to cmd.exe by default. --- Adrien Nader ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list

Re: [Caml-list] Binding C libraries which use variable arguments (stdarg.h)

2009-11-01 Thread Adrien
better. Any comment welcome. I also asked on the libffi mailing-list and was told by someone it should work almost everywhere except on really exotic architectures. That means I'll probably go the libffi way. :-) [1] http://vpaste.net/6vPst? --- Adrien Nader

Re: [Caml-list] Binding C libraries which use variable arguments (stdarg.h)

2009-11-01 Thread Adrien
On 01/11/2009, Florian Weimer f...@deneb.enyo.de wrote: * Adrien: It turned out it worked on linux x86_32, linux x86_64, netbsd sparc64 with 32-bit userland, debian's kfreebsd amd64 and ppc32. There's windows which I haven't checked yet though. x86_64 has different calling conventions

Re: [Caml-list] Binding C libraries which use variable arguments (stdarg.h)

2009-10-29 Thread Adrien
On 28/10/2009, Basile STARYNKEVITCH bas...@starynkevitch.net wrote: Adrien wrote: Hi, I am currently trying to bind a C function that takes variables arguments, like foo(int a, ...). I can't find how to make a C stub for that function. I am assuming that the a is the number of actual

[Caml-list] Binding C libraries which use variable arguments (stdarg.h)

2009-10-28 Thread Adrien
support varargs unfortunately. I also thought about doing it by hand but that's not the best idea for portability. Any other idea? Hint^WPointer? (sorry for the bad joke ;-) ) Thanks. PS: I was also told I was toast --- Adrien Nader ___ Caml-list mailing

[Caml-list] [ANN] ocaml-gir: automated binding generator

2009-10-24 Thread Adrien
-bin/gitweb.cgi?p=ocaml-gir/ocaml-gir.git [3] https://forge.ocamlcore.org/frs/download.php/286/ocaml-gir-preview.tar.gz --- Adrien Nader ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list

Re: [Caml-list] Why don't you use batteries?

2009-09-06 Thread Adrien
there too) but they would at least show where the problems are and that's maybe the biggest part of the work. Please share them if you can. --- Adrien Nader On 06/09/2009, dmitry grebeniuk gds...@gmail.com wrote: 2009/9/5 David Allsopp dra-n...@metastack.com: I'm not sure that one is allowed

[Caml-list] OCaml users and developpers map

2009-07-03 Thread Adrien
://www.ohloh.net/accounts/new [1] https://www.ohloh.net/p/ocaml --- Adrien Nader ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http://groups.yahoo.com

Re: [Caml-list] CSL executable for Windows, 1995 vin tage. Or Jens Klöumlcker?

2009-04-12 Thread Adrien
The differences are small. You should read The big picture [1]. An automatic converter is mentionned (and still accessible) at the bottom of the page. [1] http://caml.inria.fr/pub/old_caml_site/ocaml/bigpicture.html Hope this helps --- Adrien Nader On 12/04/2009, Stéphane Glondu st

Re : [Caml-list] OCaml version 3.11.0+beta1

2008-10-16 Thread Adrien
of flexlink ? Basically, the question is : will it have to be updated from time to time or can we just drop it somewhere and forget everything about it ? --- Adrien Nader ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin

Re : [Caml-list] Re: Re : Road to native windows OCaml...

2008-10-14 Thread Adrien
2008/10/14, Sylvain Le Gall [EMAIL PROTECTED]: On 14-10-2008, Adrien [EMAIL PROTECTED] wrote: 2008/10/14, Daniel Bünzli [EMAIL PROTECTED]: Le 14 oct. 08 à 09:59, David Allsopp a écrit : Can I ask what the motivation is for this (out of interest, not criticism)? Maybe because if you want

Re : [Caml-list] Reading external references from cmo/cmx files

2008-10-05 Thread Adrien
I found a link but it's 2003, ocaml 3.04. I don't know how relevant it is. http://groups.google.com/group/fa.caml/msg/943e8b6642d23992 --- Adrien Nader 2008/10/5, Stefano Zacchiroli [EMAIL PROTECTED]: On Sat, Oct 04, 2008 at 10:41:56PM +0200, Stéphane Glondu wrote: Jason Noakes wrote

Re : [Caml-list] Syntax highlighting and Ocaml/PHP integration

2008-10-01 Thread Adrien
through (p)7zip to write bindings, why does C++ have to be that horrible ? *) The code might be perfectly understandable though, I've not looked at it. [1] http://www.andre-simon.de/doku/highlight/highlight.html [2] http://martin.jambon.free.fr/caml2html.html --- Adrien Nader

Re : Re : [Caml-list] Syntax highlighting and Ocaml/PHP integration

2008-10-01 Thread Adrien
Btw, geshi is not the fastest code highlighter around. --- Adrien Nader ___ Caml-list mailing list. Subscription management: http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list Archives: http://caml.inria.fr Beginner's list: http

Re : [Caml-list] XML library for validating MathML

2008-09-18 Thread Adrien
. --- Adrien Nader 2008/9/18, Matt Gushee [EMAIL PROTECTED]: Oops, shoulda sent to the list first time. Sorry, Rich. Richard Jones wrote: On Wed, Sep 17, 2008 at 11:58:05AM -0700, Dario Teixeira wrote: There are of course other XML libraries for Ocaml and let's not forget Cduce. Can someone recommend

Re: [Caml-list] Array copying in OCaml

2008-07-24 Thread Adrien
(or are not trying to catch any exception), you can safely use -unsafe. If you don't want to affect globally your program, you can also use Array.unsafe_get or Arra.unsafe_set. I don't know the full list though. --- Adrien Nader 2008/7/24 Raj Bandyopadhyay [EMAIL PROTECTED]: Hi I have

Re: [Caml-list] Re: thousands of CPU cores

2008-07-15 Thread Adrien
SFU need SFU installed to run so this limits portability but ocaml-compiled programs may not have this problem. The only way to know more about this is certainly to experiment. Also, I don't know how free is SFU's license. --- Adrien Nader ___ Caml-list

Re: [Caml-list] GODI News: RocketBoost Beta

2008-06-16 Thread Adrien
I just tried removing the files without the .exe suffix and godi_console perform -build godi-tools now works. If there is any test I can run, I'll be happy to do so. --- Adrien Nader 2008/6/16 Gerd Stolpmann [EMAIL PROTECTED]: Am Sonntag, den 15.06.2008, 23:42 +0200 schrieb Adrien: Can

Re: [Caml-list] GODI News: RocketBoost Beta

2008-06-15 Thread Adrien
: cannot find file perform Failure! I have time to install godi from scratch so if you need anything, don't hesitate. :) Btw, is there any chance the PATH gets automatically updated ? I've installed ocaml by hand several times but I keep on forgetting this step. Thanks. --- Adrien Nader