00:03
joshcryer_ is now known as joshcryer
00:04
Smerdyakov has quit ["Leaving"]
00:09
ita is now known as ita|zzz
00:10
ita|zzz has quit [Remote closed the connection]
00:11
crabstick_ has joined #ocaml
00:26
crabstick has quit [Read error: 110 (Connection timed out)]
00:37
love-pingoo has joined #ocaml
00:59
nuncanada has quit [Remote closed the connection]
01:01
[azoic1 has joined #ocaml
01:11
[azoic] has quit [Connection timed out]
01:39
seafoodX has joined #ocaml
02:11
love-pingoo has quit ["really need to sleep"]
03:02
bengordon has joined #ocaml
03:17
szsz has joined #ocaml
03:42
bzzbzz has quit ["leaving"]
05:17
<
flux >
mbishop, looks interesting
05:17
<
flux >
I wonder if it handles tail-calls in the native java target
05:18
<
flux >
and if you can write gui software with it (I suppose you can, if the point it to allow access to java libraries)
05:35
<
flux >
hmm.. is there a version of sexplib for 3.10.0? apparently even debian is starting the transition to that ocamlc version, but it'd be much more convenient if that exists..
05:35
<
flux >
I suppose I could just start to use camlp5
06:32
joshcryer has quit [Connection reset by peer]
07:16
mordaunt has quit [Read error: 104 (Connection reset by peer)]
07:30
seafoodX has quit []
07:38
schme has quit [Remote closed the connection]
07:52
schme has joined #ocaml
08:04
[azoic1 has quit [Read error: 110 (Connection timed out)]
08:11
schme has quit [Remote closed the connection]
08:18
rwmjones has joined #ocaml
08:19
schme has joined #ocaml
08:33
Hadaka has quit [Read error: 60 (Operation timed out)]
09:40
seafoodX has joined #ocaml
09:44
olegfink has quit [Read error: 104 (Connection reset by peer)]
09:45
olegfink has joined #ocaml
09:50
seafoodX has quit []
11:40
Abo-Marwan has quit [Remote closed the connection]
11:40
screwt8 has quit [Remote closed the connection]
11:49
Abo-Marwan has joined #ocaml
11:51
Abo-Marwan has quit [Client Quit]
11:54
Tetsuo has joined #ocaml
11:54
|Jedai| has joined #ocaml
11:57
slipstream-- has joined #ocaml
12:06
Abo-Marwan has joined #ocaml
12:06
screwt8 has joined #ocaml
12:09
slipstream has quit [Read error: 110 (Connection timed out)]
12:12
jedai has quit [Read error: 110 (Connection timed out)]
12:14
Tetsuo has quit ["Leaving"]
12:19
|Jedai| has quit [Read error: 110 (Connection timed out)]
12:22
tty56 has joined #ocaml
12:29
Abo-Marwan has quit [Remote closed the connection]
12:29
screwt8 has quit [Remote closed the connection]
12:37
Abo-Marwan has joined #ocaml
12:37
screwt8 has joined #ocaml
12:57
nuncanada has joined #ocaml
13:29
Abo-Marwan has quit [Read error: 104 (Connection reset by peer)]
13:29
screwt8 has quit [Read error: 104 (Connection reset by peer)]
13:41
seafoodX has joined #ocaml
13:57
mvitale_ has joined #ocaml
13:57
mvitale has joined #ocaml
14:06
Demitar has quit [Read error: 113 (No route to host)]
14:11
Smerdyakov has joined #ocaml
14:25
Tetsuo has joined #ocaml
14:32
crabstick has joined #ocaml
14:48
crabstick_ has quit [Read error: 110 (Connection timed out)]
15:03
crathman has joined #ocaml
15:07
[azoic] has joined #ocaml
15:18
pango has quit [Remote closed the connection]
15:26
pango has joined #ocaml
15:47
[azoic] has quit ["Leaving."]
16:03
jonathanv has quit ["Leaving"]
16:28
jonathanv has joined #ocaml
16:51
nuncanada has quit [Remote closed the connection]
17:13
pantsd has quit ["Leaving."]
17:35
Demitar has joined #ocaml
17:41
bluestorm_ has joined #ocaml
17:43
lde has quit [Remote closed the connection]
17:44
lde has joined #ocaml
17:54
Cygaal has joined #ocaml
18:23
EliasAmaral has quit [Read error: 104 (Connection reset by peer)]
18:26
ygrek has joined #ocaml
19:00
nuncanada has joined #ocaml
19:31
bluestorm_ has quit ["Konversation terminated!"]
19:44
<
jonathanv >
ocaml lacks unsigned integers
19:44
<
jonathanv >
this displeases me
19:46
<
rwmjones >
yeah, it makes things like implementing encryption or parsing network packets a royal pain
19:47
<
jonathanv >
yeah.. i was going to write some network code
19:47
<
mbishop >
Does SML have unsigned integers?
19:48
<
jonathanv >
also how do you read binary data off a socket?
19:48
<
jonathanv >
you use read to dump the data into a string.. is there a good way to get the data out of the string then?
19:51
<
pango >
mldonkey has several binary protocol parsers...
19:51
<
Smerdyakov >
SML has WORD and its implementations.
19:54
<
jonathanv >
also, i'm reading someone's thesis on pure functional data structures
19:54
<
jonathanv >
way interesting
19:54
<
pango >
in each network subdirectory, the *Protocol.ml module(s) convert binary packets to sum type, and back
19:55
<
jonathanv >
i am going to download the source code now
19:56
<
pango >
src/utils/net/*Endian.ml modules provide small functions to read binary fields at some offset within a string
19:56
<
jonathanv >
ok looking now
19:57
seafoodX has quit [Read error: 110 (Connection timed out)]
19:58
<
pango >
(iirc SML library provide something very similar)
19:58
<
jonathanv >
this isn't so bad i guess
20:01
<
jonathanv >
there is still the troubling issue of 0x80000000 being a constant in this protocol
20:02
<
Smerdyakov >
SML has PACK_WORD and PACK_REAL. (Re: pango's "iirc")
20:07
<
pango >
jonathanv: it's ok with an Int32.t... you could even use Int64.t's if signness bothers you
20:07
<
pango >
# 0x80000000l ;;
20:07
<
pango >
- : int32 = -2147483648l
20:08
<
jonathanv >
ah i see
20:29
joshcryer has joined #ocaml
20:31
ygrek has quit [Remote closed the connection]
20:41
Tetsuo has quit [Remote closed the connection]
21:03
Mr_Awesome has quit ["aunt jemima is the devil!"]
21:03
lde has quit [Remote closed the connection]
21:06
lde has joined #ocaml
21:34
psnively has joined #ocaml
22:09
Cygaal has quit [Remote closed the connection]
22:50
mvitale_ has quit [Read error: 110 (Connection timed out)]
22:50
mvitale has quit [Read error: 110 (Connection timed out)]
22:50
mvitale_ has joined #ocaml
22:51
mvitale has joined #ocaml
22:52
crathman has quit [Read error: 110 (Connection timed out)]
23:32
evolvlng has joined #ocaml