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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 6675 - 6704 of 9747   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6675
... Have you tried looking at using threads and the Event module? If you grab the Adwords Toolkit from http://merjis.com/developers/adwords_toolkit and look...
Richard Jones
rwmjones
Offline Send Email
Oct 1, 2006
9:30 am
6676
Sorry I couldnt get back here earlier - it takes so long for posts to appear. Anyway, I fixed it to work. Here's the working vesion: type pipes = {server_read...
jshaw10
Offline Send Email
Oct 1, 2006
3:30 pm
6677
Lukasz> What is the motivation behind this convention, and if it is not Lukasz> rational, can we promote uppercase names, that match module names? I can't...
Conrad Hughes
clonedrad
Online Now Send Email
Oct 2, 2006
3:58 pm
6678
... I don't think using names equivalent modulo captialisation is sane, I just insist that CamelCase.ml matching my uses of CamelCase in sources is much more...
Lukasz Stafiniak
luk_stafi
Offline Send Email
Oct 2, 2006
4:21 pm
6679
Hello, I have a list1 of elements in type t(x,y) like [t(x1,y1); t(x2,y2); t(x3,y3); t(x4,y4)], where y can be a single element or a list of the same with...
Tyson Fugel
tfugel
Offline Send Email
Oct 3, 2006
10:36 am
6680
Hi, there I'm wondering whether it is possible to define a "generic" (if I'm using the right terminology) map in plain OCaml. Basically, List.map of OCaml maps...
code17
code_1977
Offline Send Email
Oct 3, 2006
1:02 pm
6681
... So List.map is: ('a -> 'b) -> 'a list -> 'b list and you want to generalise this beyond "list" to: ('a -> 'b) -> 'a 't1 -> 'b 't2 I'm no expert on type...
Jon Harrop
harropjon
Offline Send Email
Oct 3, 2006
4:44 pm
6682
Hi, Something is going wrong when I try to use Glut menu's. On Mac OS X and Unix I get a bus error when I select a menu item with the following code. The menu...
Henry Chinaski
clindt01
Offline Send Email
Oct 3, 2006
5:12 pm
6683
... If you allow yourself to peek inside OCaml structures using Obj.magic or whatever then it's possible to (a) iterate over an arbitrary structure and (b)...
Richard Jones
rwmjones
Offline Send Email
Oct 3, 2006
7:37 pm
6684
Sorry for the previous post, I should have tried the obvious. With version 1.01 of lablgl everything works just fine....
clindt01
Offline Send Email
Oct 4, 2006
11:39 am
6685
Hello experts! this is my first time to meet objects in ocaml. Is there any difference (according performance, memory) between the next to tests? peter type t...
Peter Halacsy
halacsyp
Offline Send Email
Oct 6, 2006
12:53 pm
6686
Is there any ocaml library (or any library easily accessible from ocaml) that creates pdf documents? Thank you in advance. -- blog:...
Enrico Franchi
rik0atanubics
Offline Send Email
Oct 8, 2006
7:24 pm
6687
... Well, I guess you should test the performance and memory usage (see below). But the general issues you should be aware of: (1) Method calls are more...
Richard Jones
rwmjones
Offline Send Email
Oct 8, 2006
7:58 pm
6688
... Not that I'm aware of. Some directions you could think about: (1) Write out Postscript and pipe it through something like ps2pdf. Postscript is actually...
Richard Jones
rwmjones
Offline Send Email
Oct 8, 2006
8:11 pm
6689
... Funny you should ask. It happens I am working on one ... but I don't have any fixed timeline, and it will probably be at least two or three months before...
Matt Gushee
mcgushee
Offline Send Email
Oct 9, 2006
12:33 am
6690
... I suppose I'll wait some time. ... It seems what I was looking for. Unfortunately, I started studying OCaml a couple of days ago. I used various tools to...
Enrico Franchi
rik0atanubics
Offline Send Email
Oct 9, 2006
8:25 am
6691
... Thank you very much, but non of these options are feasible. In fact I wanted only to write a spider that retrieved web pages and constructed a pdf with...
Enrico Franchi
rik0atanubics
Offline Send Email
Oct 9, 2006
8:25 am
6692
... As a workaround you can use perl4caml together with PDF::Create Perl's module. Cheers. -- Stefano Zacchiroli -*- Computer Science PhD student @ Uny...
Stefano Zacchiroli
zacchiro
Online Now Send Email
Oct 9, 2006
8:35 am
6693
... I don't think this is easy in any language. To turn a web page (HTML tag soup) into a PDF document requires a complex rendering step. Take a look at the...
Richard Jones
rwmjones
Offline Send Email
Oct 9, 2006
8:43 am
6694
... Depends on which library you can count on :) However, since I really do not have to interpret generic webpages but only documentation stuff, I can just...
Enrico Franchi
rik0atanubics
Offline Send Email
Oct 10, 2006
7:29 am
6695
Is there any way of generating format types for Printf.xxx at runtime, or can this only be done from string constants? I'm looking for a way of converting...
Mark White
ythls
Offline Send Email
Oct 13, 2006
11:51 am
6696
... Not really, no. If you only have a handful of formats that you want to use, then use format_of_string (in Pervasives). However it isn't dynamic in the...
Richard Jones
rwmjones
Offline Send Email
Oct 13, 2006
5:41 pm
6697
... Yeah. You may want to take a look at Olivier Danvy's paper "Functional Unparsing" for som inspiration. http://www.brics.dk/RS/98/12/BRICS-RS-98-12.pdf ...
William D. Neumann
scoey13
Offline Send Email
Oct 13, 2006
6:01 pm
6698
Hi folks, I want to discuss the subject of operator (re)definition yet another time. This is because most tutorials and books I have read tell you how to...
Carlos Pita
cpitadev
Offline Send Email
Oct 15, 2006
7:11 pm
6699
... It seems you are now the best candidate for writing such a page :-) Martin -- Martin Jambon, PhD http://martin.jambon.free.fr...
Martin Jambon
BioMim
Offline Send Email
Oct 15, 2006
10:06 pm
6700
algorithm which takes in entry a table (its elements are 0 and 1) and 2 indices I and J of this table such as 1<=i<=j<=N and which returns the position and the...
linuxien123
Offline Send Email
Oct 16, 2006
2:35 pm
6701
... and ... consecutive...
linuxien123
Offline Send Email
Oct 16, 2006
5:12 pm
6702
I've been having trouble with this very simple thing, and I was wondering if anyone could help me out: I have three files: (* burp.mli: *) class type foo = ...
mikedebo_ca
Offline Send Email
Oct 16, 2006
10:40 pm
6703
... The problem here is that you are confusing class types with class signatures. They are two different things. What you need in burp.mli is class foo : int...
William Neumann
scoey13
Offline Send Email
Oct 16, 2006
11:12 pm
6704
... Right. So for a trivial application (in this case, I wanted to print integers with a user-specified amount of left zero padding), it's probably easiest to...
Mark White
ythls
Offline Send Email
Oct 17, 2006
5:18 pm
Messages 6675 - 6704 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