Search the web
Sign In
New User? Sign Up
ocaml_beginners · Ocaml Beginners
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 6184 - 6213 of 9747   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6184
Hello all, there's an issue I'm still confused about although I read the Unix module documentation about it several times, probably because I couldn't simple...
roparzhhemon
Offline Send Email
Jul 2, 2006
2:19 pm
6185
... This is a general Unix question, and nothing particular to OCaml. It looks like you need to investigate the '-S' option to sudo. You can run 'sudo -S...
Richard Jones
rwmjones
Offline Send Email
Jul 2, 2006
5:47 pm
6186
... In fact, in my experience the shell &bash on my Mac behave erratically and never seem to work the way the manuals or experts say they do ( I guess someone...
roparzhhemon
Offline Send Email
Jul 3, 2006
5:38 am
6187
Hi all, I would like to "scan" a configuration file, pick up some values from it, and pass them as arguments to some functions. I also would like to make the...
Julien Michel
julien.michel@...
Send Email
Jul 4, 2006
2:54 pm
6188
... there are various methods dependend on how complex your syntax is: - you can use fscanf to parse the lines, this works fine for simple constructs. - you...
Michael Wohlwend
scheischeischei
Offline Send Email
Jul 4, 2006
7:16 pm
6189
Hi, Julien-- I'm not really an expert in lexing and parsing either, but I think I can help clarify the problem and your options a bit. [BTW, should you notice...
Matt Gushee
mcgushee
Offline Send Email
Jul 4, 2006
8:01 pm
6190
Hi, I want to exchange text between an ocaml core program and a graphical interface written in another language. Ocaml Manual says that named pipes (mkfifo)...
agrings
Offline Send Email
Jul 5, 2006
1:52 am
6191
... Hi, Matt thank you for the long answer you g ... This message was sent using IMP, the Internet Messaging Program....
Julien Michel
julien.michel@...
Send Email
Jul 5, 2006
7:58 am
6192
Hi Matt, thank you for taking time to answer my questions. ... Yes, It would be a good way to manage what I want. This is what I mean by "the program would run...
Julien Michel
julien.michel@...
Send Email
Jul 5, 2006
9:24 am
6193
Hello all, after reading the documentation of the Unix module, I thought that the "logical" implementation of the "ls" function would go as follows :` let...
roparzhhemon
Offline Send Email
Jul 6, 2006
6:06 am
6194
... There's no difference between what you can do from OCaml and what you can do from the shell. ... What about: List.sort (Array.to_list (Sys.readdir...
Richard Jones
rwmjones
Offline Send Email
Jul 6, 2006
8:02 am
6195
... Yes. Basically, I was looking into the wrong module (Unix instead of sys). Thank you Rich. ewan...
roparzhhemon
Offline Send Email
Jul 6, 2006
10:48 am
6196
... And how do you explain this one (on my Mac ; unfortunately it is not reproducible on a different machine) : gai69-2-82-226-59-137:~ root# ocaml Objective...
roparzhhemon
Offline Send Email
Jul 6, 2006
12:38 pm
6197
... [Example of hacked shell doing some sort of interpretation of paths deleted] There's no difference between what an OCaml process can do and what your shell...
Richard Jones
rwmjones
Offline Send Email
Jul 6, 2006
3:01 pm
6198
... Well, that's not really the issue with his stat example. Note that lstat works just fine: # Unix.lstat ...
William D. Neumann
scoey13
Offline Send Email
Jul 6, 2006
3:37 pm
6199
Two programs attached, which are supposed to do the same thing. The C version (gcc -O3) runs in about half the time of the OCaml program (ocamlopt -unsafe), so...
Richard Jones
rwmjones
Offline Send Email
Jul 6, 2006
7:13 pm
6200
Try that again ... http://annexia.org/tmp/neural.ml http://annexia.org/tmp/b2_c.c Rich. -- Richard Jones, CTO Merjis Ltd. Merjis - web marketing and technology...
Richard Jones
rwmjones
Offline Send Email
Jul 6, 2006
8:33 pm
6201
Hello ! I'm now using OCaml to write some interesting functions. I would be great to check for performance using an high-accuracy counter. The problem is that...
Edouard Evangelisti
cacophrene
Offline Send Email
Jul 7, 2006
12:24 pm
6202
... I join tics, a little library I use, which is a wrap for QueryPerformanceCounter. I usually use it throug log, another one, that allow to accumulate ...
Matthieu Dubuget
dubuget
Offline Send Email
Jul 7, 2006
12:37 pm
6203
On Wed, Jul 05, 2006 at 11:04:18AM +0200, Julien Michel wrote: [...] ... [...] OK, so you have an idea about how your syntax/grammar should look. This is fine....
Oliver Bandel
oliver@...
Send Email
Jul 7, 2006
1:07 pm
6204
... [...] ... A broken symbolic link.... ... not especially an Apple-Problem ;-) Ciao, Oliver...
Oliver Bandel
oliver@...
Send Email
Jul 7, 2006
1:07 pm
6205
On Thu, Jul 06, 2006 at 09:00:53AM +0100, Richard Jones wrote: [...] ... [...] Necessary to mention, that Sys.readdir gives back the same as "ls -a" without...
Oliver Bandel
oliver@...
Send Email
Jul 7, 2006
1:13 pm
6206
... You may be interested in the Benchmark module: http://ocaml-benchmark.sourceforge.net/ Cheers, ChriS...
Christophe TROESTLER
Christophe.Troestler@...
Send Email
Jul 7, 2006
1:32 pm
6207
... [...] I doubt that this is the case.... When you are unexperienced with the shell, you have to work with it for a while to get experienced. Also shell is a...
Oliver Bandel
oliver@...
Send Email
Jul 7, 2006
1:48 pm
6208
How (if at all) could I go about writing a wrapper function to sprintf which does something with the string sprintf returns -- say, prints it with parentheses...
Mark White
ythls
Offline Send Email
Jul 7, 2006
2:21 pm
6209
... # let pfwrap fmt = let fmt = "(" ^^ fmt ^^ ")" in sprintf fmt;; val pfwrap : ('a, unit, string, string) format4 -> 'a = <fun> # pfwrap "%d,%d" 34 45;; - :...
Jonathan Roewen
consulatewizard
Offline Send Email
Jul 7, 2006
2:40 pm
6210
... ksprintf print_in_parens ... I am afraid there is no relationship......
Thierry Martinez
thywom
Offline Send Email
Jul 7, 2006
2:57 pm
6211
... Hmmm... the OP specified Windows XP, but this is one of the unfortunately large set of possibly very useful packages that can not be built on Windows...
Robert Roessler
robertr959
Offline Send Email
Jul 8, 2006
1:34 am
6212
... Not sure I understand you here. The distribution contains a file "Make.bat" that allows compiling without problem on Win32. Granted, it was not mentioned...
Christophe TROESTLER
Christophe.Troestler@...
Send Email
Jul 8, 2006
9:28 am
6213
... I just had the same problem (for a stochastic simulation) and I ended up using Genlex and Stream parsing using the camlp4o pre-processor. This ...
Daniel Andor
xandxor
Offline Send Email
Jul 8, 2006
4:17 pm
Messages 6184 - 6213 of 9747   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help