ChanServ changed the topic of #ocaml to: Discussions about the OCaml programming language | http://caml.inria.fr/ | http://www.ocaml.org | OCaml 4.01.0 announce at http://bit.ly/1851A3R | Logs at http://irclog.whitequark.org/ocaml
ontologiae has quit [Ping timeout: 252 seconds]
nikki93 has quit [Remote host closed the connection]
Eyyub has quit [Ping timeout: 252 seconds]
maattdd has joined #ocaml
maattdd has quit [Ping timeout: 250 seconds]
racycle_ has joined #ocaml
bernardofpc has quit [Ping timeout: 252 seconds]
bernardofpc has joined #ocaml
philtor has joined #ocaml
racycle_ has quit [Client Quit]
lostcuaz_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nikki93 has joined #ocaml
nikki93 has quit [Remote host closed the connection]
nikki93 has joined #ocaml
madroach has joined #ocaml
ollehar has quit [Ping timeout: 252 seconds]
philtor has quit [Ping timeout: 264 seconds]
boogie has quit [Remote host closed the connection]
maattdd has joined #ocaml
maattdd has quit [Ping timeout: 252 seconds]
iorivur has quit [Ping timeout: 250 seconds]
DigitalRunes has joined #ocaml
manizzle has quit [Ping timeout: 240 seconds]
nikki93 has quit [Remote host closed the connection]
sheijk has quit [Quit: .]
<Drup> whitequark: I see we don't have the same ocp-indent settings =')
<whitequark> Drup: I don't use ocp-indent...
<whitequark> (I couldn't even if I wanted, it's broken on trunk.)
<whitequark> Drup: anyway, you're free to reformat, but I say one thing--whatever you had there with tabs is 1) silly 2) doesn't match the rest of code
<Drup> there shouldn't be any tabs in the code
<whitequark> well, your code had plenty of tabs. basically, the settings were "indent with 2 spaces but replace 8 spaces with a tab"
<Drup> wat O_o
<whitequark> exactly@
<whitequark> did you edit it in mc? :D
<Drup> huum
<Drup> ok
<Drup> yeah
<Drup> ocp-indent broken :/
malo has quit [Quit: Leaving]
<Drup> I really don't like the raise :/
maattdd has joined #ocaml
<whitequark> well, not having raise is not an option imo
<whitequark> having sane error handling is what separates lwt from nodejs
<Drup> yeah :/
<Drup> I just dislike the inconsistency a lot
<whitequark> I agree
<whitequark> arguably, raise%lwt foo could be parsed as [%lwt raise foo]
maattdd has quit [Ping timeout: 255 seconds]
<Drup> we could actually implement this
<whitequark> yes, that's what I was going to do
<whitequark> after I fix the camlp4 package
<Drup> "raise%lwt ..." is parsed as "( (%) raise lwt) .. ", I think
<Drup> but I suspect it would break quite easily
<Drup> hum
<Drup> more like "( (%) raise (lwt ..) )"
<whitequark> yep
<whitequark> how do I tell opam "remove these files from $bindir" ?
<whitequark> at uninstalling
Nuki has joined #ocaml
Nuki has quit [Remote host closed the connection]
q66 has quit [Quit: Leaving]
<whitequark> Drup: perhaps just ask users to write [%lwt raise Not_found] ?
<whitequark> that's actually... not too bad at all
<Drup> backward compatibility is not completly relevant here, since there is nothing before :3
<whitequark> right, right
<whitequark> ok, let me add [%lwt raise ...]. if we decide that it's too verbose, we could always add a (shorter|crapper) form.
<Drup> but raise%lwt is very fragile, if there is another operator with a higher priority
<whitequark> I think raise%lwt as it is is horrible.
<Drup> so we need the "not pretty one"
<whitequark> it's *way* worse than raise_lwt.
S11001001 has joined #ocaml
S11001001 has quit [Changing host]
S11001001 has joined #ocaml
<whitequark> updated the PR.
<Drup> why do you call Expr.apply by hand ?
<whitequark> args
<Drup> oh, right.
rz has joined #ocaml
NoNNaN has quit [Read error: Connection reset by peer]
maattdd has joined #ocaml
maattdd has quit [Ping timeout: 255 seconds]
<whitequark> Drup: so... what do you think? mergeable?
<Drup> sure, I was just doing something else :p
NoNNaN has joined #ocaml
<Drup> but raise is false.
<Drup> oh no
<Drup> just misread
<Drup> however, it's not implemented exactly as in the original syntax extension
<whitequark> oh?
<whitequark> I took the code generated by camlp4 as template
<Drup> I wonder if we should implement this debug option again
<whitequark> oh, right, debug option
<whitequark> what's the downside?
<Drup> is it used ?
<whitequark> sure, I always compile my code with -lwt-debug
<Drup> ok
<whitequark> otherwise the backtraces are incomprehensible
shinnya has quit [Ping timeout: 252 seconds]
<whitequark> I mean, what's the downside to just always behaving like -lwt-debug is passed?
<Drup> more exception handler => slower
<whitequark> the slowdown is an insignificant constant factor
<whitequark> basically a few dozen instructions per raise
<Drup> I have counter examples to the "insignificant" part, but yeah, in this case, I would tend to agree
<Drup> just that there is no reason to change that
<Drup> I mean, it's fine with the option, isn't it ?
<whitequark> hm?
<Drup> let's just stick with the same behavior as the current syntax
<whitequark> my opinion is that [%lwt raise] should always be translated with try .. with exn -> Lwt.fail exn
<whitequark> I mean, if backtraces are slow for you, just don't use -g
<whitequark> what is the point of collecting a backtrace which is entirely useless for the user?
<Drup> except that this option is not correlated to -g
<Drup> it will slow down stuff a bit, regardless of the presence or not of -g.
<whitequark> do I have to count nanoseconds to show you how insignificant exactly the slowdown is?
<whitequark> -lwt-debug in pa_lwt is useless
<whitequark> and as you have said above, backwards compatibility is not needed, because there's nothing to be compatible with
<Drup> that was on the syntax level
<Drup> on the semantic level, there is something to be compatible with
<Drup> I see no point on removing this option, as it's simple to provide and simple to implement.
<whitequark> I see a problem with existing of this option, because it just causes unnecessary pain to the first-time users of ppx_lwt
<whitequark> *if* there is any point of implementing it, it should be done backwards
<whitequark> i.e. -no-lwt-debug. or something.
<whitequark> there is no reason to deliberately screw up backtraces by default. it's just user-hostile.
<whitequark> (I very well remember my own attempts to figure out what the hell is wrong with the traces, hence the strong opinion.)
<Drup> I don't really care, tbh.
<whitequark> about what?
<Drup> the behavior of this option
<Drup> I don't have an opinion about it
<whitequark> ok
<Drup> (hence, I would have kept the current behavior)
<Drup> so, if you want to change it in the new ppx
<Drup> ask the maintaners
<whitequark> who are they?
<Drup> but you can just open a question as a bug report on github.
<whitequark> ok
<Drup> whitequark: I will properly review (and merge) this tomorrow
<Drup> it's 6h in the morning, and my brain is dead. :)
philtor has joined #ocaml
<whitequark> Drup: thanks!
S11001001 has quit [Remote host closed the connection]
<Drup> whitequark: don't thank me, you did a good part too :p
maattdd has joined #ocaml
<whitequark> Drup: btw, it now works perfectly within my app
<Drup> nice
<Drup> I fixed a few issue last time when I added the tests :p
maattdd has quit [Ping timeout: 240 seconds]
<whitequark> I've noticed, yeah
philtor has quit [Ping timeout: 240 seconds]
axiles has joined #ocaml
rgrinberg has quit [Quit: Leaving.]
maattdd has joined #ocaml
maattdd has quit [Ping timeout: 255 seconds]
Simn has joined #ocaml
SrPx has joined #ocaml
<SrPx> is it possible to create 3d games using ocaml and export them so they work as html5 / android apps?
ggole has joined #ocaml
<whitequark> SrPx: in principle, yes; but there's no simple ready-to-use solution for that.
<SrPx> ah I see, that is what I wanted to know
<SrPx> ty
<whitequark> you could use js_of_ocaml for the html5 part and ocamlopt -output-obj for the android part
<whitequark> and there's already bindings for OpenGL; writing bindings for WebGL would be trivial
<whitequark> overall I think it's a good path to take
<SrPx> pardon?
WraithM has quit [Ping timeout: 255 seconds]
WraithM has joined #ocaml
maattdd has joined #ocaml
<whitequark> using ocaml for your task
maattdd has quit [Ping timeout: 245 seconds]
_obad_ has quit [Ping timeout: 255 seconds]
_obad_ has joined #ocaml
troydm has quit [Ping timeout: 252 seconds]
troydm has joined #ocaml
DigitalRunes has quit [Remote host closed the connection]
<SrPx> Uh? It seems like that shader was hand coded
<flux> they typically are?
<SrPx> Oh I was expecting something that replaced the shaders with pure Ocaml, but I see what it does now
<SrPx> thanks (:
<flux> well, there is this one system that compiles 'ocaml' to opencl, but that's not a shader yet :)
<flux> I think there might not be much benefit in compiling ocaml to shaders. well, maybe some shared functions.
<ousado> his nick is dsheets here
<SrPx> flux: listen, if it compiles ocaml to opencl, then I guess I don't need a shader at all? I can just write what I'd write in a vertex shader/fragment shader as ocaml functions? If it runs on the GPU via OpenGL it will be fast enough to handle the big images?
<SrPx> flawhat is that system?
<whitequark> it doesn't compile ocaml to opencl, it can only compile a subset
<SrPx> ah i see
<flux> srpx, I don't think you can use opencl functions as pixel shaders
<SrPx> why?
<flux> so opencl could be used for generating a texture
<flux> because there is no way to express how that happens :)
<flux> how do you say the opengl that use this opencl function? there is no interface for doing that.
<flux> how do you express that you have these uniform variables with these values? etc
<flux> or if there's a way to do that, I'm not aware of it.
<SrPx> uhm but cant you just program a game using big arrays as images?
<flux> yes..
<flux> but you probably want to have the images in the GPU memory..
<SrPx> (I don't understand the problem^^)
<flux> big arrays are not in the GPU memory
<flux> srpx, hmm, have you written opencl or opengl shaders?
typedlambda has joined #ocaml
<SrPx> only opengl, I dont know much about opencl. I thought it was just the same as opengl, except taking out the focus on 3d games. I thought opencl could actually be used to host and process arrays on the gpu
<SrPx> 3d stuff*
<flux> yes, opencl can do that
<flux> so basically you would be able to render the stuff completely in opencl
<flux> but then you would not be using any of the opengl mechanisms around, for example for texturing
<flux> or automatic interpolation
<SrPx> ah I see but as long as you are willing to code your own texturing functions and calculations that is fine?
<flux> I think it's possible, though I have not heard of people doing it
<SrPx> I see, the motivation I see to do it is that now you have the rendering logic in a functional language so you can go wild with the effects
<SrPx> so anyway, what is the name of that ocaml->opencl experimental compiler again?
ygrek has joined #ocaml
<flux> Spoc
<flux> btw, if you do that you cannot really target mobile platforms
<flux> because they don't support opencl
<flux> or webcl
<SrPx> or even webgl for most
<SrPx> :(
<SrPx> great point anyway
<flux> who knows, maybe they'll support it some day :)
<flux> btw, Sarek is the syntax extension
<flux> SPOC/SpocLibs/Sarek
maattdd has joined #ocaml
thomasga has joined #ocaml
shinnya has joined #ocaml
<SrPx> so anyway, is there a good tutorial on how I can get started with some graphical applications using ocaml? need not to be anything gpu for now, just so I get used to the language. something similar to Processing, I can draw some circles and deal with some events
<flux> maybe sdl
<flux> ocamlsdl is the ocamliest
<flux> then there's lablgl
<flux> and then there's the more automatically generated but less type safe tgls
<flux> and a similar set of automatically generated thin bindings tsdl
eizo has joined #ocaml
<flux> oh, and then there's a contender I had not noticed, lit -- Lightweight OpenGL-based rendering engine for OCaml
maattdd has quit [Ping timeout: 250 seconds]
<flux> and irrlicht -- An OCaml binding for the Irrlicht Engine.
<flux> opam is your stepping board for all these :-)
* rwmjones grumbles ... whyohwhy is there not a mailing list for me to post patches ....
<whitequark> rwmjones: patches for what?
<SrPx> great stuff might keep me busy, thanks
Anarchos has joined #ocaml
Kakadu has joined #ocaml
robink_ has joined #ocaml
<rwmjones> for the compiler
seliopou has quit [Ping timeout: 258 seconds]
habnabit has joined #ocaml
xitology_ has joined #ocaml
rz has quit [Ping timeout: 258 seconds]
robink has quit [Ping timeout: 258 seconds]
keen__ has joined #ocaml
_habnabit has quit [Ping timeout: 258 seconds]
thomasga has quit [Ping timeout: 258 seconds]
seliopou has joined #ocaml
keen_ has quit [Ping timeout: 258 seconds]
studybot_ has quit [Read error: Connection reset by peer]
Averell has quit [*.net *.split]
nicoo has quit [*.net *.split]
zebr has quit [*.net *.split]
keen__ has quit [*.net *.split]
Simn has quit [*.net *.split]
tautologico has quit [*.net *.split]
__marius____ has quit [*.net *.split]
ousado has quit [*.net *.split]
rwmjones has quit [*.net *.split]
hyperboreean has quit [*.net *.split]
tov has quit [*.net *.split]
Valdo has quit [*.net *.split]
_2can has quit [*.net *.split]
diginux has quit [*.net *.split]
tlockney_away has quit [*.net *.split]
_obad_ has quit [*.net *.split]
j0sh has quit [*.net *.split]
PM has quit [*.net *.split]
zarul has quit [*.net *.split]
Ptival has quit [*.net *.split]
ivan\ has quit [*.net *.split]
milosn has quit [*.net *.split]
Derander has quit [*.net *.split]
lopex has quit [*.net *.split]
maufred_ has quit [*.net *.split]
alinab has quit [*.net *.split]
maurer has quit [*.net *.split]
hto has quit [*.net *.split]
tristero has quit [*.net *.split]
nickmeharry has quit [*.net *.split]
Anarchos has quit [*.net *.split]
troydm has quit [*.net *.split]
axiles has quit [*.net *.split]
madroach has quit [*.net *.split]
typedlambda has quit [*.net *.split]
Enjolras has quit [*.net *.split]
emias has quit [*.net *.split]
Mandus has quit [*.net *.split]
johnelse has quit [*.net *.split]
Muzer has quit [*.net *.split]
vpm has quit [*.net *.split]
deavidsedice has quit [*.net *.split]
vbmithr has quit [*.net *.split]
ia0 has quit [*.net *.split]
wormphle1m has quit [*.net *.split]
cow-orke1 has quit [*.net *.split]
hcarty has quit [*.net *.split]
xitology_ has quit [*.net *.split]
WraithM has quit [*.net *.split]
adrien_oww has quit [*.net *.split]
venk has quit [*.net *.split]
brendan has quit [*.net *.split]
alex_nx has quit [*.net *.split]
reynir has quit [*.net *.split]
aqz has quit [*.net *.split]
Asmadeus has quit [*.net *.split]
SHODAN has quit [*.net *.split]
ccasin has quit [*.net *.split]
so has quit [*.net *.split]
cross has quit [*.net *.split]
tchell has quit [*.net *.split]
samebchase has quit [*.net *.split]
rs0 has quit [*.net *.split]
AeroNotix has quit [*.net *.split]
Armael has quit [*.net *.split]
saarin has quit [*.net *.split]
robink_ has quit [*.net *.split]
habnabit has quit [*.net *.split]
darkf has quit [*.net *.split]
tianon has quit [*.net *.split]
rossberg has quit [*.net *.split]
mdenes has quit [*.net *.split]
steshaw has quit [*.net *.split]
termos has quit [*.net *.split]
asmanur_ has quit [*.net *.split]
ninegrid has quit [*.net *.split]
sgnb has quit [*.net *.split]
mrvn has quit [*.net *.split]
whitequark has quit [*.net *.split]
bunzen has quit [*.net *.split]
mal`` has quit [*.net *.split]
_5kg has quit [*.net *.split]
flux has quit [*.net *.split]
companion_cube has quit [*.net *.split]
eizo has quit [*.net *.split]
SrPx has quit [*.net *.split]
dant3 has quit [*.net *.split]
bitbckt has quit [*.net *.split]
olasd has quit [*.net *.split]
Kakadu has quit [*.net *.split]
bernardofpc has quit [*.net *.split]
Rotacidni has quit [*.net *.split]
cdidd has quit [*.net *.split]
thizanne has quit [*.net *.split]
bjorkintosh has quit [*.net *.split]
arj has quit [*.net *.split]
smondet_ has quit [*.net *.split]
iZsh has quit [*.net *.split]
Snark has quit [*.net *.split]
jpdeplaix has quit [*.net *.split]
jbrown has quit [*.net *.split]
NoNNaN has quit [*.net *.split]
ggole has quit [*.net *.split]
Nahra has quit [*.net *.split]
yastero has quit [*.net *.split]
Fullma has quit [*.net *.split]
wwilly has quit [*.net *.split]
mfp has quit [*.net *.split]
penryu has quit [*.net *.split]
_tca has quit [*.net *.split]
martintrojer has quit [*.net *.split]
rks` has quit [*.net *.split]
cthuluh has quit [*.net *.split]
gargawel has quit [*.net *.split]
Khady has quit [*.net *.split]
willb1 has quit [*.net *.split]
ggherdov_ has quit [*.net *.split]
thorsten` has quit [*.net *.split]
fds has quit [*.net *.split]
teiresias has quit [*.net *.split]
passiveobserver has quit [*.net *.split]
caligula has quit [*.net *.split]
bartbes has quit [*.net *.split]
strmpnk has quit [*.net *.split]
jzelinskie has quit [*.net *.split]
gustav___ has quit [*.net *.split]
rsnous has quit [*.net *.split]
tizoc has quit [*.net *.split]
ski has quit [*.net *.split]
adrien has quit [*.net *.split]
pollux has quit [*.net *.split]
waneck has quit [*.net *.split]
srcerer has quit [*.net *.split]
siddharthv_away has quit [*.net *.split]
pdewacht has quit [*.net *.split]
mbac_ has quit [*.net *.split]
dinosaure has quit [*.net *.split]
The_third_man has quit [*.net *.split]
marky has quit [*.net *.split]
ygrek has quit [*.net *.split]
shinnya has quit [*.net *.split]
puzza007____ has quit [*.net *.split]
clog has quit [*.net *.split]
finnrobi has quit [*.net *.split]
araujo has quit [*.net *.split]
ruzu has quit [*.net *.split]
inr has quit [*.net *.split]
igitoor has quit [*.net *.split]
jonludlam has quit [*.net *.split]
contempt has quit [*.net *.split]
ohama has quit [*.net *.split]
shalicke has quit [*.net *.split]
dlat has quit [*.net *.split]
BiDOrD has quit [*.net *.split]
xaimus has quit [*.net *.split]
def-lkb has quit [*.net *.split]
Cypi has quit [*.net *.split]
hnrgrgr has quit [*.net *.split]
sgray10 has quit [*.net *.split]
chris2 has quit [*.net *.split]
hyPiRion has quit [*.net *.split]
nk0 has quit [*.net *.split]
smiler has quit [*.net *.split]
gasche has quit [*.net *.split]
acieroid has quit [*.net *.split]
LU324 has quit [*.net *.split]
bacam has quit [*.net *.split]
amiller has quit [*.net *.split]
testcocoon has quit [*.net *.split]
msch has quit [*.net *.split]
kerneis has quit [*.net *.split]
patronus has quit [*.net *.split]
petterw has quit [*.net *.split]
yetanotherion has quit [*.net *.split]
yroeht2 has quit [*.net *.split]
macron has quit [*.net *.split]
jlouis has quit [*.net *.split]
orbitz has quit [*.net *.split]
pippijn has quit [*.net *.split]
aggelos has quit [*.net *.split]
Drup has quit [*.net *.split]
seliopou has quit [*.net *.split]
pyon has quit [*.net *.split]
ebzzry has quit [*.net *.split]
jave_ has quit [*.net *.split]
IbnFirnas has quit [*.net *.split]
n0v has quit [*.net *.split]
Axman6 has quit [*.net *.split]
eizo has joined #ocaml
maattdd has joined #ocaml
seliopou has joined #ocaml
Kakadu has joined #ocaml
WraithM has joined #ocaml
tautologico has joined #ocaml
emias has joined #ocaml
NoNNaN has joined #ocaml
robink_ has joined #ocaml
srcerer has joined #ocaml
zpe has joined #ocaml
cdidd has joined #ocaml
clog has joined #ocaml
pminten has joined #ocaml
puzza007____ has joined #ocaml
madroach has joined #ocaml
habnabit has joined #ocaml
gasche has joined #ocaml
ggole has joined #ocaml
_obad_ has joined #ocaml
adrien_oww has joined #ocaml
thorsten` has joined #ocaml
finnrobi has joined #ocaml
Simn has joined #ocaml
keen__ has joined #ocaml
darth_lumbergh has joined #ocaml
_2can has joined #ocaml
xitology_ has joined #ocaml
SrPx has joined #ocaml
hyperboreean has joined #ocaml
ousado has joined #ocaml
bernardofpc has joined #ocaml
waneck has joined #ocaml
shinnya has joined #ocaml
__marius____ has joined #ocaml
axiles has joined #ocaml
nicoo has joined #ocaml
Rotacidni has joined #ocaml
brendan has joined #ocaml
j0sh has joined #ocaml
typedlambda has joined #ocaml
rwmjones has joined #ocaml
teiresias has joined #ocaml
zebr has joined #ocaml
Muzer has joined #ocaml
fds has joined #ocaml
troydm has joined #ocaml
ebzzry has joined #ocaml
smondet_ has joined #ocaml
bjorkintosh has joined #ocaml
Averell has joined #ocaml
darkf has joined #ocaml
ruzu has joined #ocaml
tianon has joined #ocaml
Mandus has joined #ocaml
zarul has joined #ocaml
ggherdov_ has joined #ocaml
venk has joined #ocaml
thizanne has joined #ocaml
Nahra has joined #ocaml
yastero has joined #ocaml
vpm has joined #ocaml
IbnFirnas has joined #ocaml
passiveobserver has joined #ocaml
acieroid has joined #ocaml
iZsh has joined #ocaml
Axman6 has joined #ocaml
bacam has joined #ocaml
diginux has joined #ocaml
pyon has joined #ocaml
tov has joined #ocaml
macron has joined #ocaml
mfp has joined #ocaml
Snark has joined #ocaml
bartbes has joined #ocaml
Enjolras has joined #ocaml
n0v has joined #ocaml
arj has joined #ocaml
caligula has joined #ocaml
alex_nx has joined #ocaml
johnelse has joined #ocaml
Ptival has joined #ocaml
Fullma has joined #ocaml
dant3 has joined #ocaml
LU324 has joined #ocaml
araujo has joined #ocaml
jonludlam has joined #ocaml
amiller has joined #ocaml
SHODAN has joined #ocaml
tlockney_away has joined #ocaml
wwilly has joined #ocaml
contempt has joined #ocaml
ivan\ has joined #ocaml
jpdeplaix has joined #ocaml
igitoor has joined #ocaml
penryu has joined #ocaml
inr has joined #ocaml
pdewacht has joined #ocaml
ohama has joined #ocaml
mdenes has joined #ocaml
steshaw has joined #ocaml
jave_ has joined #ocaml
testcocoon has joined #ocaml
jbrown has joined #ocaml
siddharthv_away has joined #ocaml
Valdo has joined #ocaml
Derander has joined #ocaml
pollux has joined #ocaml
mal`` has joined #ocaml
flux has joined #ocaml
companion_cube has joined #ocaml
rossberg has joined #ocaml
whitequark has joined #ocaml
PM has joined #ocaml
bunzen has joined #ocaml
milosn has joined #ocaml
_5kg has joined #ocaml
sgnb has joined #ocaml
ninegrid has joined #ocaml
mrvn has joined #ocaml
asmanur_ has joined #ocaml
hto has joined #ocaml
nickmeharry has joined #ocaml
termos has joined #ocaml
maurer has joined #ocaml
lopex has joined #ocaml
maufred_ has joined #ocaml
hcarty has joined #ocaml
jlouis has joined #ocaml
alinab has joined #ocaml
tristero has joined #ocaml
wormphle1m has joined #ocaml
cow-orke1 has joined #ocaml
pippijn has joined #ocaml
orbitz has joined #ocaml
chris2 has joined #ocaml
nk0 has joined #ocaml
aggelos has joined #ocaml
hyPiRion has joined #ocaml
marky has joined #ocaml
smiler has joined #ocaml
adrien has joined #ocaml
bitbckt has joined #ocaml
olasd has joined #ocaml
cross has joined #ocaml
tchell has joined #ocaml
Armael has joined #ocaml
saarin has joined #ocaml
Khady has joined #ocaml
rs0 has joined #ocaml
cthuluh has joined #ocaml
ia0 has joined #ocaml
gargawel has joined #ocaml
vbmithr has joined #ocaml
ccasin has joined #ocaml
willb1 has joined #ocaml
Cypi has joined #ocaml
so has joined #ocaml
def-lkb has joined #ocaml
dinosaure has joined #ocaml
BiDOrD has joined #ocaml
hnrgrgr has joined #ocaml
petterw has joined #ocaml
ski has joined #ocaml
yetanotherion has joined #ocaml
Drup has joined #ocaml
yroeht2 has joined #ocaml
samebchase has joined #ocaml
AeroNotix has joined #ocaml
Asmadeus has joined #ocaml
The_third_man has joined #ocaml
rks` has joined #ocaml
deavidsedice has joined #ocaml
aqz has joined #ocaml
reynir has joined #ocaml
martintrojer has joined #ocaml
xaimus has joined #ocaml
sgray10 has joined #ocaml
tizoc has joined #ocaml
dlat has joined #ocaml
patronus has joined #ocaml
mbac_ has joined #ocaml
rsnous has joined #ocaml
kerneis has joined #ocaml
gustav___ has joined #ocaml
msch has joined #ocaml
jzelinskie has joined #ocaml
_tca has joined #ocaml
strmpnk has joined #ocaml
shalicke has joined #ocaml
maattdd has quit [Ping timeout: 255 seconds]
manizzle has joined #ocaml
Cyanure has joined #ocaml
nikki93 has joined #ocaml
<adrien> krkrkr
pminten has quit [Quit: Leaving]
maattdd has joined #ocaml
nikki93 has quit [Read error: Connection reset by peer]
nikki93 has joined #ocaml
ontologiae has joined #ocaml
Averell has quit [*.net *.split]
nicoo has quit [*.net *.split]
zebr has quit [*.net *.split]
ontologiae has quit [*.net *.split]
zpe has quit [*.net *.split]
keen__ has quit [*.net *.split]
Simn has quit [*.net *.split]
tautologico has quit [*.net *.split]
ousado has quit [*.net *.split]
rwmjones has quit [*.net *.split]
__marius____ has quit [*.net *.split]
hyperboreean has quit [*.net *.split]
_2can has quit [*.net *.split]
Valdo has quit [*.net *.split]
tov has quit [*.net *.split]
diginux has quit [*.net *.split]
tlockney_away has quit [*.net *.split]
Cyanure has quit [*.net *.split]
_obad_ has quit [*.net *.split]
j0sh has quit [*.net *.split]
PM has quit [*.net *.split]
zarul has quit [*.net *.split]
Ptival has quit [*.net *.split]
milosn has quit [*.net *.split]
ivan\ has quit [*.net *.split]
Derander has quit [*.net *.split]
lopex has quit [*.net *.split]
maufred_ has quit [*.net *.split]
alinab has quit [*.net *.split]
maurer has quit [*.net *.split]
hto has quit [*.net *.split]
tristero has quit [*.net *.split]
nickmeharry has quit [*.net *.split]
troydm has quit [*.net *.split]
axiles has quit [*.net *.split]
madroach has quit [*.net *.split]
typedlambda has quit [*.net *.split]
emias has quit [*.net *.split]
Enjolras has quit [*.net *.split]
Mandus has quit [*.net *.split]
Muzer has quit [*.net *.split]
johnelse has quit [*.net *.split]
vpm has quit [*.net *.split]
deavidsedice has quit [*.net *.split]
vbmithr has quit [*.net *.split]
ia0 has quit [*.net *.split]
wormphle1m has quit [*.net *.split]
cow-orke1 has quit [*.net *.split]
hcarty has quit [*.net *.split]
nikki93 has quit [*.net *.split]
xitology_ has quit [*.net *.split]
WraithM has quit [*.net *.split]
adrien_oww has quit [*.net *.split]
brendan has quit [*.net *.split]
venk has quit [*.net *.split]
alex_nx has quit [*.net *.split]
reynir has quit [*.net *.split]
aqz has quit [*.net *.split]
Asmadeus has quit [*.net *.split]
SHODAN has quit [*.net *.split]
ccasin has quit [*.net *.split]
so has quit [*.net *.split]
tchell has quit [*.net *.split]
cross has quit [*.net *.split]
samebchase has quit [*.net *.split]
rs0 has quit [*.net *.split]
Armael has quit [*.net *.split]
AeroNotix has quit [*.net *.split]
habnabit has quit [*.net *.split]
saarin has quit [*.net *.split]
robink_ has quit [*.net *.split]
darkf has quit [*.net *.split]
tianon has quit [*.net *.split]
rossberg has quit [*.net *.split]
mdenes has quit [*.net *.split]
steshaw has quit [*.net *.split]
termos has quit [*.net *.split]
asmanur_ has quit [*.net *.split]
ninegrid has quit [*.net *.split]
mrvn has quit [*.net *.split]
bunzen has quit [*.net *.split]
sgnb has quit [*.net *.split]
whitequark has quit [*.net *.split]
mal`` has quit [*.net *.split]
_5kg has quit [*.net *.split]
flux has quit [*.net *.split]
companion_cube has quit [*.net *.split]
eizo has quit [*.net *.split]
SrPx has quit [*.net *.split]
dant3 has quit [*.net *.split]
olasd has quit [*.net *.split]
bitbckt has quit [*.net *.split]
maattdd has quit [*.net *.split]
darth_lumbergh has quit [*.net *.split]
Kakadu has quit [*.net *.split]
thizanne has quit [*.net *.split]
bernardofpc has quit [*.net *.split]
cdidd has quit [*.net *.split]
Rotacidni has quit [*.net *.split]
bjorkintosh has quit [*.net *.split]
arj has quit [*.net *.split]
smondet_ has quit [*.net *.split]
iZsh has quit [*.net *.split]
jpdeplaix has quit [*.net *.split]
Snark has quit [*.net *.split]
jbrown has quit [*.net *.split]
NoNNaN has quit [*.net *.split]
ggole has quit [*.net *.split]
Nahra has quit [*.net *.split]
yastero has quit [*.net *.split]
Fullma has quit [*.net *.split]
wwilly has quit [*.net *.split]
mfp has quit [*.net *.split]
penryu has quit [*.net *.split]
_tca has quit [*.net *.split]
martintrojer has quit [*.net *.split]
rks` has quit [*.net *.split]
cthuluh has quit [*.net *.split]
willb1 has quit [*.net *.split]
gargawel has quit [*.net *.split]
Khady has quit [*.net *.split]
ggherdov_ has quit [*.net *.split]
thorsten` has quit [*.net *.split]
fds has quit [*.net *.split]
teiresias has quit [*.net *.split]
passiveobserver has quit [*.net *.split]
caligula has quit [*.net *.split]
bartbes has quit [*.net *.split]
strmpnk has quit [*.net *.split]
jzelinskie has quit [*.net *.split]
rsnous has quit [*.net *.split]
gustav___ has quit [*.net *.split]
tizoc has quit [*.net *.split]
ski has quit [*.net *.split]
adrien has quit [*.net *.split]
pollux has quit [*.net *.split]
manizzle has quit [*.net *.split]
waneck has quit [*.net *.split]
srcerer has quit [*.net *.split]
siddharthv_away has quit [*.net *.split]
pdewacht has quit [*.net *.split]
mbac_ has quit [*.net *.split]
The_third_man has quit [*.net *.split]
dinosaure has quit [*.net *.split]
marky has quit [*.net *.split]
shinnya has quit [*.net *.split]
puzza007____ has quit [*.net *.split]
clog has quit [*.net *.split]
finnrobi has quit [*.net *.split]
ruzu has quit [*.net *.split]
araujo has quit [*.net *.split]
inr has quit [*.net *.split]
igitoor has quit [*.net *.split]
jonludlam has quit [*.net *.split]
ohama has quit [*.net *.split]
contempt has quit [*.net *.split]
shalicke has quit [*.net *.split]
dlat has quit [*.net *.split]
xaimus has quit [*.net *.split]
BiDOrD has quit [*.net *.split]
def-lkb has quit [*.net *.split]
Cypi has quit [*.net *.split]
hnrgrgr has quit [*.net *.split]
sgray10 has quit [*.net *.split]
chris2 has quit [*.net *.split]
hyPiRion has quit [*.net *.split]
nk0 has quit [*.net *.split]
smiler has quit [*.net *.split]
gasche has quit [*.net *.split]
acieroid has quit [*.net *.split]
amiller has quit [*.net *.split]
bacam has quit [*.net *.split]
LU324 has quit [*.net *.split]
testcocoon has quit [*.net *.split]
msch has quit [*.net *.split]
kerneis has quit [*.net *.split]
patronus has quit [*.net *.split]
yetanotherion has quit [*.net *.split]
petterw has quit [*.net *.split]
yroeht2 has quit [*.net *.split]
macron has quit [*.net *.split]
jlouis has quit [*.net *.split]
orbitz has quit [*.net *.split]
pippijn has quit [*.net *.split]
Drup has quit [*.net *.split]
aggelos has quit [*.net *.split]
seliopou has quit [*.net *.split]
pyon has quit [*.net *.split]
ebzzry has quit [*.net *.split]
jave_ has quit [*.net *.split]
IbnFirnas has quit [*.net *.split]
n0v has quit [*.net *.split]
Axman6 has quit [*.net *.split]
ebzzry has joined #ocaml
tane has joined #ocaml
ollehar has joined #ocaml
ontologiae has joined #ocaml
nikki93 has joined #ocaml
shinnya has joined #ocaml
typedlambda has joined #ocaml
SrPx has joined #ocaml
zpe has joined #ocaml
darkf has joined #ocaml
xitology_ has joined #ocaml
maattdd has joined #ocaml
ggole has joined #ocaml
eizo has joined #ocaml
NoNNaN has joined #ocaml
_obad_ has joined #ocaml
thizanne has joined #ocaml
WraithM has joined #ocaml
tautologico has joined #ocaml
habnabit has joined #ocaml
troydm has joined #ocaml
rwmjones has joined #ocaml
Nahra has joined #ocaml
ggherdov_ has joined #ocaml
seliopou has joined #ocaml
__marius____ has joined #ocaml
Kakadu has joined #ocaml
ousado has joined #ocaml
cdidd has joined #ocaml
Cyanure has joined #ocaml
axiles has joined #ocaml
Rotacidni has joined #ocaml
pyon has joined #ocaml
puzza007____ has joined #ocaml
darth_lumbergh has joined #ocaml
bernardofpc has joined #ocaml
robink_ has joined #ocaml
manizzle has joined #ocaml
madroach has joined #ocaml
Simn has joined #ocaml
macron has joined #ocaml
clog has joined #ocaml
adrien_oww has joined #ocaml
keen__ has joined #ocaml
emias has joined #ocaml
j0sh has joined #ocaml
waneck has joined #ocaml
bjorkintosh has joined #ocaml
srcerer has joined #ocaml
hyperboreean has joined #ocaml
ruzu has joined #ocaml
gasche has joined #ocaml
fds has joined #ocaml
finnrobi has joined #ocaml
araujo has joined #ocaml
venk has joined #ocaml
Enjolras has joined #ocaml
PM has joined #ocaml
Mandus has joined #ocaml
Averell has joined #ocaml
zebr has joined #ocaml
acieroid has joined #ocaml
_2can has joined #ocaml
brendan has joined #ocaml
yastero has joined #ocaml
teiresias has joined #ocaml
smondet_ has joined #ocaml
tianon has joined #ocaml
tov has joined #ocaml
thorsten` has joined #ocaml
Valdo has joined #ocaml
arj has joined #ocaml
siddharthv_away has joined #ocaml
nicoo has joined #ocaml
Muzer has joined #ocaml
wwilly has joined #ocaml
Fullma has joined #ocaml
igitoor has joined #ocaml
pollux has joined #ocaml
johnelse has joined #ocaml
caligula has joined #ocaml
zarul has joined #ocaml
jave_ has joined #ocaml
passiveobserver has joined #ocaml
inr has joined #ocaml
Ptival has joined #ocaml
vpm has joined #ocaml
iZsh has joined #ocaml
IbnFirnas has joined #ocaml
n0v has joined #ocaml
amiller has joined #ocaml
jonludlam has joined #ocaml
rossberg has joined #ocaml
Axman6 has joined #ocaml
bacam has joined #ocaml
diginux has joined #ocaml
LU324 has joined #ocaml
bartbes has joined #ocaml
ivan\ has joined #ocaml
mfp has joined #ocaml
milosn has joined #ocaml
jbrown has joined #ocaml
tlockney_away has joined #ocaml
Snark has joined #ocaml
SHODAN has joined #ocaml
dant3 has joined #ocaml
mdenes has joined #ocaml
jpdeplaix has joined #ocaml
alex_nx has joined #ocaml
contempt has joined #ocaml
testcocoon has joined #ocaml
penryu has joined #ocaml
ohama has joined #ocaml
pdewacht has joined #ocaml
Derander has joined #ocaml
steshaw has joined #ocaml
companion_cube has joined #ocaml
_5kg has joined #ocaml
mal`` has joined #ocaml
flux has joined #ocaml
whitequark has joined #ocaml
sgnb has joined #ocaml
bunzen has joined #ocaml
mrvn has joined #ocaml
ninegrid has joined #ocaml
asmanur_ has joined #ocaml
termos has joined #ocaml
nickmeharry has joined #ocaml
tristero has joined #ocaml
hto has joined #ocaml
maurer has joined #ocaml
alinab has joined #ocaml
maufred_ has joined #ocaml
lopex has joined #ocaml
wormphle1m has joined #ocaml
hcarty has joined #ocaml
cow-orke1 has joined #ocaml
jlouis has joined #ocaml
orbitz has joined #ocaml
pippijn has joined #ocaml
aggelos has joined #ocaml
marky has joined #ocaml
chris2 has joined #ocaml
nk0 has joined #ocaml
hyPiRion has joined #ocaml
smiler has joined #ocaml
adrien has joined #ocaml
bitbckt has joined #ocaml
olasd has joined #ocaml
cross has joined #ocaml
tchell has joined #ocaml
Armael has joined #ocaml
rs0 has joined #ocaml
Khady has joined #ocaml
gargawel has joined #ocaml
dinosaure has joined #ocaml
saarin has joined #ocaml
willb1 has joined #ocaml
hnrgrgr has joined #ocaml
samebchase has joined #ocaml
Cypi has joined #ocaml
so has joined #ocaml
cthuluh has joined #ocaml
ia0 has joined #ocaml
ccasin has joined #ocaml
def-lkb has joined #ocaml
vbmithr has joined #ocaml
yroeht2 has joined #ocaml
The_third_man has joined #ocaml
rks` has joined #ocaml
petterw has joined #ocaml
Drup has joined #ocaml
aqz has joined #ocaml
deavidsedice has joined #ocaml
martintrojer has joined #ocaml
xaimus has joined #ocaml
AeroNotix has joined #ocaml
reynir has joined #ocaml
sgray10 has joined #ocaml
ski has joined #ocaml
Asmadeus has joined #ocaml
dlat has joined #ocaml
yetanotherion has joined #ocaml
patronus has joined #ocaml
tizoc has joined #ocaml
BiDOrD has joined #ocaml
rsnous has joined #ocaml
mbac_ has joined #ocaml
kerneis has joined #ocaml
msch has joined #ocaml
gustav___ has joined #ocaml
strmpnk has joined #ocaml
jzelinskie has joined #ocaml
_tca has joined #ocaml
shalicke has joined #ocaml
rsnous is now known as osnr
ousado has quit [Read error: Connection reset by peer]
_2can has quit [Ping timeout: 265 seconds]
_2can has joined #ocaml
ousado has joined #ocaml
eikke__ has joined #ocaml
darth_lumbergh has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
pyon is now known as pyon-cbpv
ontologiae has quit [Ping timeout: 265 seconds]
Submarine has joined #ocaml
Submarine has quit [Changing host]
Submarine has joined #ocaml
eikke__ has quit [Ping timeout: 250 seconds]
SrPx has quit [Ping timeout: 240 seconds]
racycle has joined #ocaml
Submarine has quit [Quit: Leaving]
pyon-cbpv has quit [Quit: restart]
nicoo has quit [*.net *.split]
Averell has quit [*.net *.split]
zebr has quit [*.net *.split]
zpe has quit [*.net *.split]
keen__ has quit [*.net *.split]
Simn has quit [*.net *.split]
tautologico has quit [*.net *.split]
__marius____ has quit [*.net *.split]
rwmjones has quit [*.net *.split]
hyperboreean has quit [*.net *.split]
Valdo has quit [*.net *.split]
tov has quit [*.net *.split]
diginux has quit [*.net *.split]
tlockney_away has quit [*.net *.split]
Cyanure has quit [*.net *.split]
_obad_ has quit [*.net *.split]
j0sh has quit [*.net *.split]
PM has quit [*.net *.split]
zarul has quit [*.net *.split]
Ptival has quit [*.net *.split]
milosn has quit [*.net *.split]
ivan\ has quit [*.net *.split]
Derander has quit [*.net *.split]
lopex has quit [*.net *.split]
maufred_ has quit [*.net *.split]
alinab has quit [*.net *.split]
maurer has quit [*.net *.split]
hto has quit [*.net *.split]
tristero has quit [*.net *.split]
nickmeharry has quit [*.net *.split]
axiles has quit [*.net *.split]
troydm has quit [*.net *.split]
madroach has quit [*.net *.split]
typedlambda has quit [*.net *.split]
Enjolras has quit [*.net *.split]
emias has quit [*.net *.split]
Mandus has quit [*.net *.split]
johnelse has quit [*.net *.split]
Muzer has quit [*.net *.split]
vpm has quit [*.net *.split]
deavidsedice has quit [*.net *.split]
vbmithr has quit [*.net *.split]
ia0 has quit [*.net *.split]
wormphle1m has quit [*.net *.split]
cow-orke1 has quit [*.net *.split]
hcarty has quit [*.net *.split]
nikki93 has quit [*.net *.split]
xitology_ has quit [*.net *.split]
WraithM has quit [*.net *.split]
adrien_oww has quit [*.net *.split]
venk has quit [*.net *.split]
brendan has quit [*.net *.split]
alex_nx has quit [*.net *.split]
reynir has quit [*.net *.split]
aqz has quit [*.net *.split]
Asmadeus has quit [*.net *.split]
SHODAN has quit [*.net *.split]
ccasin has quit [*.net *.split]
so has quit [*.net *.split]
cross has quit [*.net *.split]
tchell has quit [*.net *.split]
rs0 has quit [*.net *.split]
samebchase has quit [*.net *.split]
Armael has quit [*.net *.split]
AeroNotix has quit [*.net *.split]
habnabit has quit [*.net *.split]
robink_ has quit [*.net *.split]
saarin has quit [*.net *.split]
darkf has quit [*.net *.split]
tianon has quit [*.net *.split]
rossberg has quit [*.net *.split]
mdenes has quit [*.net *.split]
steshaw has quit [*.net *.split]
termos has quit [*.net *.split]
asmanur_ has quit [*.net *.split]
bunzen has quit [*.net *.split]
ninegrid has quit [*.net *.split]
mrvn has quit [*.net *.split]
sgnb has quit [*.net *.split]
whitequark has quit [*.net *.split]
mal`` has quit [*.net *.split]
_5kg has quit [*.net *.split]
flux has quit [*.net *.split]
companion_cube has quit [*.net *.split]
eizo has quit [*.net *.split]
ollehar has quit [*.net *.split]
dant3 has quit [*.net *.split]
bitbckt has quit [*.net *.split]
olasd has quit [*.net *.split]
_2can has quit [*.net *.split]
maattdd has quit [*.net *.split]
Kakadu has quit [*.net *.split]
bernardofpc has quit [*.net *.split]
Rotacidni has quit [*.net *.split]
cdidd has quit [*.net *.split]
thizanne has quit [*.net *.split]
bjorkintosh has quit [*.net *.split]
arj has quit [*.net *.split]
smondet_ has quit [*.net *.split]
iZsh has quit [*.net *.split]
Snark has quit [*.net *.split]
jbrown has quit [*.net *.split]
jpdeplaix has quit [*.net *.split]
NoNNaN has quit [*.net *.split]
ggole has quit [*.net *.split]
Nahra has quit [*.net *.split]
yastero has quit [*.net *.split]
Fullma has quit [*.net *.split]
wwilly has quit [*.net *.split]
mfp has quit [*.net *.split]
penryu has quit [*.net *.split]
_tca has quit [*.net *.split]
rks` has quit [*.net *.split]
martintrojer has quit [*.net *.split]
cthuluh has quit [*.net *.split]
gargawel has quit [*.net *.split]
Khady has quit [*.net *.split]
willb1 has quit [*.net *.split]
ggherdov_ has quit [*.net *.split]
thorsten` has quit [*.net *.split]
fds has quit [*.net *.split]
teiresias has quit [*.net *.split]
passiveobserver has quit [*.net *.split]
caligula has quit [*.net *.split]
bartbes has quit [*.net *.split]
jzelinskie has quit [*.net *.split]
strmpnk has quit [*.net *.split]
osnr has quit [*.net *.split]
gustav___ has quit [*.net *.split]
tizoc has quit [*.net *.split]
ski has quit [*.net *.split]
adrien has quit [*.net *.split]
pollux has quit [*.net *.split]
manizzle has quit [*.net *.split]
waneck has quit [*.net *.split]
srcerer has quit [*.net *.split]
siddharthv_away has quit [*.net *.split]
pdewacht has quit [*.net *.split]
mbac_ has quit [*.net *.split]
dinosaure has quit [*.net *.split]
The_third_man has quit [*.net *.split]
marky has quit [*.net *.split]
ousado has quit [*.net *.split]
shinnya has quit [*.net *.split]
puzza007____ has quit [*.net *.split]
clog has quit [*.net *.split]
finnrobi has quit [*.net *.split]
ruzu has quit [*.net *.split]
araujo has quit [*.net *.split]
igitoor has quit [*.net *.split]
inr has quit [*.net *.split]
jonludlam has quit [*.net *.split]
contempt has quit [*.net *.split]
ohama has quit [*.net *.split]
shalicke has quit [*.net *.split]
dlat has quit [*.net *.split]
xaimus has quit [*.net *.split]
BiDOrD has quit [*.net *.split]
def-lkb has quit [*.net *.split]
Cypi has quit [*.net *.split]
hnrgrgr has quit [*.net *.split]
sgray10 has quit [*.net *.split]
chris2 has quit [*.net *.split]
nk0 has quit [*.net *.split]
hyPiRion has quit [*.net *.split]
smiler has quit [*.net *.split]
ebzzry has quit [*.net *.split]
tane has quit [*.net *.split]
gasche has quit [*.net *.split]
acieroid has quit [*.net *.split]
amiller has quit [*.net *.split]
bacam has quit [*.net *.split]
LU324 has quit [*.net *.split]
testcocoon has quit [*.net *.split]
msch has quit [*.net *.split]
kerneis has quit [*.net *.split]
patronus has quit [*.net *.split]
yetanotherion has quit [*.net *.split]
petterw has quit [*.net *.split]
yroeht2 has quit [*.net *.split]
macron has quit [*.net *.split]
jlouis has quit [*.net *.split]
orbitz has quit [*.net *.split]
pippijn has quit [*.net *.split]
Drup has quit [*.net *.split]
aggelos has quit [*.net *.split]
racycle has quit [*.net *.split]
seliopou has quit [*.net *.split]
jave_ has quit [*.net *.split]
IbnFirnas has quit [*.net *.split]
n0v has quit [*.net *.split]
Axman6 has quit [*.net *.split]
ousado has joined #ocaml
pyon-cbpv has joined #ocaml
manizzle has joined #ocaml
tane has joined #ocaml
Cyanure has joined #ocaml
_2can has joined #ocaml
ebzzry has joined #ocaml
nikki93 has joined #ocaml
habnabit has joined #ocaml
racycle has joined #ocaml
ollehar has joined #ocaml
Submarine has joined #ocaml
keen__ has joined #ocaml
zpe has joined #ocaml
troydm has joined #ocaml
WraithM has joined #ocaml
shinnya has joined #ocaml
_obad_ has joined #ocaml
typedlambda has joined #ocaml
rwmjones has joined #ocaml
darkf has joined #ocaml
robink_ has joined #ocaml
Simn has joined #ocaml
seliopou has joined #ocaml
puzza007____ has joined #ocaml
ggherdov_ has joined #ocaml
macron has joined #ocaml
axiles has joined #ocaml
madroach has joined #ocaml
bernardofpc has joined #ocaml
NoNNaN has joined #ocaml
xitology_ has joined #ocaml
arj has joined #ocaml
araujo has joined #ocaml
tautologico has joined #ocaml
venk has joined #ocaml
__marius____ has joined #ocaml
waneck has joined #ocaml
nicoo has joined #ocaml
ggole has joined #ocaml
finnrobi has joined #ocaml
emias has joined #ocaml
bjorkintosh has joined #ocaml
cdidd has joined #ocaml
srcerer has joined #ocaml
gasche has joined #ocaml
zebr has joined #ocaml
fds has joined #ocaml
clog has joined #ocaml
yastero has joined #ocaml
PM has joined #ocaml
j0sh has joined #ocaml
Muzer has joined #ocaml
thorsten` has joined #ocaml
igitoor has joined #ocaml
Nahra has joined #ocaml
acieroid has joined #ocaml
Mandus has joined #ocaml
smondet_ has joined #ocaml
rossberg has joined #ocaml
ruzu has joined #ocaml
alex_nx has joined #ocaml
whitequark has joined #ocaml
marky has joined #ocaml
Axman6 has joined #ocaml
mal`` has joined #ocaml
pollux has joined #ocaml
Enjolras has joined #ocaml
_5kg has joined #ocaml
LU324 has joined #ocaml
ivan\ has joined #ocaml
inr has joined #ocaml
smiler has joined #ocaml
companion_cube has joined #ocaml
jpdeplaix has joined #ocaml
SHODAN has joined #ocaml
eizo has joined #ocaml
bunzen has joined #ocaml
alinab has joined #ocaml
contempt has joined #ocaml
mfp has joined #ocaml
hyPiRion has joined #ocaml
n0v has joined #ocaml
maufred_ has joined #ocaml
diginux has joined #ocaml
amiller has joined #ocaml
lopex has joined #ocaml
wwilly has joined #ocaml
tianon has joined #ocaml
rs0 has joined #ocaml
vpm has joined #ocaml
brendan has joined #ocaml
tchell has joined #ocaml
Fullma has joined #ocaml
termos has joined #ocaml
cow-orke1 has joined #ocaml
jlouis has joined #ocaml
gargawel has joined #ocaml
tov has joined #ocaml
steshaw has joined #ocaml
nickmeharry has joined #ocaml
sgnb has joined #ocaml
Kakadu has joined #ocaml
wormphle1m has joined #ocaml
saarin has joined #ocaml
bartbes has joined #ocaml
maurer has joined #ocaml
ia0 has joined #ocaml
mrvn has joined #ocaml
samebchase has joined #ocaml
olasd has joined #ocaml
passiveobserver has joined #ocaml
willb1 has joined #ocaml
ninegrid has joined #ocaml
cross has joined #ocaml
adrien_oww has joined #ocaml
johnelse has joined #ocaml
tristero has joined #ocaml
asmanur_ has joined #ocaml
testcocoon has joined #ocaml
IbnFirnas has joined #ocaml
yroeht2 has joined #ocaml
bacam has joined #ocaml
BiDOrD has joined #ocaml
dinosaure has joined #ocaml
Averell has joined #ocaml
caligula has joined #ocaml
pippijn has joined #ocaml
hto has joined #ocaml
pdewacht has joined #ocaml
ohama has joined #ocaml
Khady has joined #ocaml
Armael has joined #ocaml
jave_ has joined #ocaml
so has joined #ocaml
def-lkb has joined #ocaml
flux has joined #ocaml
ccasin has joined #ocaml
hcarty has joined #ocaml
iZsh has joined #ocaml
cthuluh has joined #ocaml
hnrgrgr has joined #ocaml
bitbckt has joined #ocaml
adrien has joined #ocaml
teiresias has joined #ocaml
milosn has joined #ocaml
nk0 has joined #ocaml
aggelos has joined #ocaml
thizanne has joined #ocaml
Cypi has joined #ocaml
Rotacidni has joined #ocaml
dant3 has joined #ocaml
Derander has joined #ocaml
mdenes has joined #ocaml
petterw has joined #ocaml
tlockney_away has joined #ocaml
Valdo has joined #ocaml
jbrown has joined #ocaml
vbmithr has joined #ocaml
jonludlam has joined #ocaml
siddharthv_away has joined #ocaml
hyperboreean has joined #ocaml
yetanotherion has joined #ocaml
penryu has joined #ocaml
Snark has joined #ocaml
Ptival has joined #ocaml
ski has joined #ocaml
orbitz has joined #ocaml
zarul has joined #ocaml
chris2 has joined #ocaml
Asmadeus has joined #ocaml
deavidsedice has joined #ocaml
The_third_man has joined #ocaml
sgray10 has joined #ocaml
tizoc has joined #ocaml
dlat has joined #ocaml
AeroNotix has joined #ocaml
jzelinskie has joined #ocaml
xaimus has joined #ocaml
martintrojer has joined #ocaml
rks` has joined #ocaml
osnr has joined #ocaml
strmpnk has joined #ocaml
gustav___ has joined #ocaml
shalicke has joined #ocaml
reynir has joined #ocaml
mbac_ has joined #ocaml
aqz has joined #ocaml
msch has joined #ocaml
Drup has joined #ocaml
_tca has joined #ocaml
patronus has joined #ocaml
kerneis has joined #ocaml
tane has quit [Quit: Verlassend]
yacks has joined #ocaml
ontologiae has joined #ocaml
Nuki has joined #ocaml
jao has joined #ocaml
jao has quit [Changing host]
jao has joined #ocaml
jao has quit [Ping timeout: 265 seconds]
Nuki has quit [Ping timeout: 265 seconds]
Nuki has joined #ocaml
maattdd has joined #ocaml
<whitequark> hm, if I want something like the old fork-based listener-worker model, would this Lwt code do what I want?
<whitequark> let%lwt id, msg = Lwt_zmq.Socket.Router.recv server.socket in
<whitequark> Lwt.join [handle id msg; listen server]
<whitequark> er, all wrapped in:
<whitequark> let rec listen server =
<whitequark> I worry about memory usage...
ontologiae has quit [Ping timeout: 264 seconds]
ontologiae has joined #ocaml
vpit3833 has joined #ocaml
venk has quit [Ping timeout: 264 seconds]
Eyyub has joined #ocaml
* whitequark sighs
<whitequark> I want something like rubydoc.info but for ocaml
<whitequark> automatically built ocamldoc for any opam package
maattdd has quit [Ping timeout: 252 seconds]
ontologiae has quit [Ping timeout: 240 seconds]
<companion_cube> opamdoc is still not ready, apparently
<def-lkb> focus is on 4.02 release
<def-lkb> work on doc system will likely happen after :)
rand000 has joined #ocaml
<companion_cube> I didn't know opamdoc was made by the people who are working on 4.02 ^^
<def-lkb> It is.
<def-lkb> Or isn't it :) ?
<whitequark> oh, opam-doc looks great
pminten has joined #ocaml
maattdd has joined #ocaml
<gasche> opamdoc is mainly Leo as far as I know
<gasche> (I mean right now; Vincent Botbol worked on it previously)
<gasche> (in fact it's not quite true, just look at the commit logs)
Thooms has joined #ocaml
Submarine has quit [Quit: Leaving]
q66 has joined #ocaml
q66 has quit [Changing host]
q66 has joined #ocaml
<bernardofpc> what is in 4.02 radar ?
<whitequark> a lot :)
<bernardofpc> link ? :)
<whitequark> splitting of string into immutable strings and mutable bytes
<whitequark> exception cases in matches: match f x with y -> ... | exception Not_found -> ...
<whitequark> (helps with tail recursion)
<whitequark> open variant types (like exn, but user-defined)
rand000 has quit [Ping timeout: 240 seconds]
maattdd has quit [Ping timeout: 250 seconds]
rand000 has joined #ocaml
Submarine has joined #ocaml
Submarine has quit [Changing host]
Submarine has joined #ocaml
ontologiae has joined #ocaml
<ggole> Record like constructor arguments
<companion_cube> ohhhhhhh, exception cases are in 4.02 ?
<companion_cube> awesome
<whitequark> ggole: nope, they missed the merge window.
<ggole> Oh :(
<whitequark> exactly :(
<ggole> I was actually looking forward to that the most, I think
<def-lkb> yeah exception cases are nice <3
<ggole> No matter, they'll get here eventually
<whitequark> 4.03 is like... 1.5 years from now? :/
<whitequark> whoa, the branch is two years old... https://github.com/ocaml/ocaml/commits/constructors_with_record
rand000 has quit [Ping timeout: 258 seconds]
<adrien> there's no strict rule about releases
<adrien> in particular, with the tools being split from the compiler, it should make the release cycles faster
rand000 has joined #ocaml
<companion_cube> yeah, when someone implements implicits they will want to merge it immediatly because it's awesome
<companion_cube> :>
<whitequark> :D
<adrien> :D
<whitequark> what do you mean "when someone"? Alain has already implemented them, isn't it so?
<ggole> D
<ggole> (The : is implicit.)
<companion_cube> well there's someone else working on them, but I won't disclose their name for reason of national security
<whitequark> companion_cube: GLaDOS?
<whitequark> yes, that could pose... a few problems
Eyyub has quit [Ping timeout: 240 seconds]
<def-lkb> :D
<companion_cube> I'd love it, but GlaDOs isn't merged yet either
<ggole> Compiler emitting deadly neurotoxin?
<NoNNaN> hidden data collection types also added
<whitequark> you mean C++? I think we already have a few
<def-lkb> hidden data collection?
<whitequark> [an NSA joke]
<NoNNaN> it is possible to have something like this in ocaml? http://cm.bell-labs.com/who/ken/trust.html
<def-lkb> (ok :))
pminten has quit [Remote host closed the connection]
<whitequark> NoNNaN: I don't think there ever was a PoC
<whitequark> whoa, there was, and what a spectacular one!
<whitequark> In August 2009 a virus utilizing the Ken Thompson hack was seen in the wild. It infected Delphi 4 through 7 and applications genereated with it. http://www.h-online.com/security/Virus-infects-development-environment--/news/114031
<nicoo> whitequark: Wow. Nice :D
divyanshu has joined #ocaml
<nicoo> NoNNaN: It would be possible in basically any compilation toolchain (I didn't check, but this is _On Trusting Trust_ right ?)
<adrien> delphi 4 to 7? probably a spacetime fracture that made it come from the 90s
<nicoo> NoNNaN: A possible mitigation techique could be diverse compilation
<nicoo> NoNNaN: Ah, ok, you already know it.
Eyyub has joined #ocaml
maattdd has joined #ocaml
maattdd has quit [Ping timeout: 240 seconds]
darkf has quit [Quit: Leaving]
tane has joined #ocaml
racycle has quit [Ping timeout: 258 seconds]
araujo has quit [Quit: Leaving]
AltGr has joined #ocaml
divyanshu has quit [Ping timeout: 252 seconds]
racycle has joined #ocaml
yacks has quit [Ping timeout: 240 seconds]
ollehar has quit [Ping timeout: 252 seconds]
<gasche> I've been thinking about the level of trust we should have in the bootstrapped OCaml compiler
<gasche> currently there is no mechanism in place to check the bytecode compiler that is distributed
<gasche> rather annoyingly, the bootstrap is not deterministic, so two devs doing it on two different machines will produce different bytecodes
<whitequark> git provides a (weaker than it should be) form of authentication via a merkle tree
<gasche> (two different programs at last)
<whitequark> hm, why is it not deterministic?
<gasche> the easiest way to regain trust, rather than hash chains, would be an independent, non-bootstrapped interpreter
<gasche> Damien started working on an OCaml parser for the C language
<adrien> he's working on that right now?
<gasche> if you write a simple, terribly inefficient OCaml interpreter in C, you can compile the compiler with it and check that it corresponds to the distributed bytecode
<gasche> hm
<gasche> I actually meant "an OCaml parser implemented in C"
<gasche> and I don't know
<adrien> heh, I had understood it that way :)
<gasche> it was rather clear from the context
<def-lkb> gasche: so no type-checking, just interpreting ?
<gasche> yeah
<adrien> could it also avoid the putting the bootstrap under version control?
<gasche> I don't see the point
<def-lkb> interesting
<adrien> gasche: you probably have stockholm's syndrome when it comes to bootstrapping ocaml then :P
<whitequark> idk, most compilers use bootstrapping
<adrien> but not necessarily with binaries under source control
<gasche> adrien: do you have portability / cross-compilation in mind?
<adrien> gasche: mostly that it's been painful and risky to bootstrap
<adrien> a bootstrap is pretty much a build aborted in the middle
<gasche> I don't see it
<gasche> what would be better with a few thousands lines of C code instead of compiler bytecodes to distribute?
<def-lkb> but why is the bootstrap process non-deterministic ?
<gasche> it includes the destination PATH for example
<adrien> btw there was a talk about that at FOSDEM this year
<def-lkb> Hmm, yes, the whole ecosystem would benefit from less hardcoded paths :'
<adrien> :D
* adrien throws camomille flowers at def-lkb
<gasche> def-lkb: why is there a joke that one should not talk about your implicits work?
<gasche> (eg. this chan on 14:38 of my clock)
<adrien> gasche: groupy mentality
<adrien> now that you've told everyone def-lkb is going to get us implicits, he is going to be harassed day and night about it
<adrien> ='(
<adrien> https://sourceforge.net/p/mingw-w64/mailman/message/32324030/ <- win-builds 1.4 beta1 available
<whitequark> def-lkb: so what's the ETA on implicits?
* whitequark grins
<gasche> it's not *I*, it's public knowledge
<gasche> which is why I asked
<def-lkb> gasche: it was a joke on #ocaml-fr :)
<def-lkb> whitequark: a few months
<whitequark> def-lkb: you didn't need to answer :)
<gasche> also hm
<def-lkb> (though we plan to put a js toplevel on some website to show progress)
<adrien> I read that as "js towel"; was grammatically correct but quite surprising :)
<gasche> inline records did not "not make it for 4.02", there is no consensus that there should be accepted *at all* for now
<whitequark> gasche: what are the arguments against?
<gasche> they may just get dropped just like user-exposed staticraise was
ontologiae has quit [Ping timeout: 240 seconds]
<gasche> whitequark: that it makes the type system less regular for too little gain
<whitequark> less regular?
<gasche> (also that the t.A syntax is terrible but that's a minor point)
<gasche> more complex, if you want
<def-lkb> (I agree)
<Drup> I agree with the terrible syntax, but I disagree with the bloatyness of the type system.
<ggole> That's a shame :/
<gasche> well
<gasche> the fact that t.A would only make sense for constructors with take inline records, for example, is a kludge
<gasche> s/with/which/
<gasche> (in fact things already get ugly at (A of foo * bar), but that doesn't necessarily justify making things worse)
<ggole> Would you prefer a more conservative solution which essentially just names constructor arguments?
<gasche> I think Alain's design, barring the t.A syntax that probably cannot stay, is probably the best for this feature
S11001001 has joined #ocaml
<gasche> I would consider suggesting that (t * u * v) be turned into syntactic sugar for a built-in type {0: t; 1:u; 2:v}, as an addition
Eyyub has quit [Ping timeout: 264 seconds]
eizo has quit [Ping timeout: 240 seconds]
<ggole> Er, that seems a little strange? How exactly does it tie into named constructor arguments?
rand000 has quit [Ping timeout: 252 seconds]
<gasche> it lets you define t.A for any constructor
<whitequark> gasche: I would think that all of the advantages Alain lists are really compelling
eizo has joined #ocaml
<ggole> I think I'm missing part of the concept here, I'll go and read Alain's discussion
rand000 has joined #ocaml
<whitequark> gasche: also, what's wrong with the t.A syntax?
<gasche> well
<gasche> quizz time, whitequark: if you don't know the syntactic context, what may [a-zA-Z_]*.[a-zA-Z]* mean in OCaml?
<ggole> gasche: thanks (though I'd just found it)
<gasche> (forgot a _)
<whitequark> x.y means a record field, X.y means a struct field, X.Y means a module or a constructor, x.Y cannot exist
<ggole> Oh, the "inner type". I see.
<gasche> the point (not mine) is that the syntactic situation is already complicated enough as it is
<gasche> allowing X.x.X may not be the best idea ever
<whitequark> any alternatives?
<gasche> I sent some really-ugly ones to Alain
<whitequark> now that I look at it, t.A is not essential to the proposal, although it seems to allow some nice patterns
<whitequark> let's hope that the maintainers will yield to the users, in this case :]
<gasche> ah
<gasche> and you also forgot about the a.X.y syntax
<gasche> (which wasn't explicitly in my pattern, sorry)
<whitequark> the field syntax, yes
<gasche> so now we have a.X.y valid at the term level and invalid at the type level, and conversely for a.X
S11001001 has quit [Changing host]
S11001001 has joined #ocaml
mehdid has joined #ocaml
mehdid has left #ocaml [#ocaml]
boogie has joined #ocaml
<ggole> Mmm, access to the inner type does seem a little unnecessary
<whitequark> hmm, access to the inner not-tuple is not currently provided
<Drup> whitequark: you can't write "A x -> x" on the "not tuple"
<whitequark> true
<gasche> ggole: but if you remove it, you have a variable that has no type in the environment
<gasche> and that's not very good design-wise
<whitequark> you could say "you can't write a type t.A, but it can still appear in the environment"
<Drup> gasche: not worse than with "not tuples" (I like how you call them whitequark :D)
<whitequark> but that's *more* confusing
<ggole> One possibility is to just have matching, ie | A { x } but not | A r -> r.x
<whitequark> I mean, t.A does add a little more complexity, but it is generally quite logically placed and not that bad
<whitequark> ggole: mutables.
<ggole> You could work around that, I think
lostcuaz has joined #ocaml
<ggole> But I admit that A r -> ... would be nice in some ways
<whitequark> ggole: so far anything I could think about just makes it worse
<whitequark> t.A is kind of in a local minimum of horribleness
<gasche> Drup: yes, it is worse
shinnya has quit [Ping timeout: 245 seconds]
<Drup> gasche: well, if you disallow addressing the type and extracting the record, the situation would be the same.
<gasche> another problem with t.A is that (A v) takes a different meaning depending on the type of A and v
<gasche> Drup: but then you can't mutate anymore, and you may as well keep the statu quo
rgrinberg has joined #ocaml
<whitequark> well, there is also significant advantage in readability. but yeah, without mutation it loses quite some of the appeal.
<Drup> gasche: what different meanings do you have ?
<whitequark> they're not really records anymore, just some weird crutch.
<whitequark> gasche: but (A v) already has different meaning depending on type of A
<gasche> Drup: well sometimes it boxes, sometimes not
<Drup> hum
<whitequark> or rather, (A (x, y)) does
<Drup> if that's your reason, that's a poor one.
<whitequark> sometimes it boxes, sometimes not!
<Drup> ^ as whitequark said.
<Drup> the langage is full of "sometimes it boxes, sometimes not"
<whitequark> also, Int64.add sometimes boxes, sometimes not, depending on whether the compiler decides to optimize
<whitequark> this is not really a reason at all
<gasche> I respectfully disagree
<ggole> Would A r imply a copy of r?
<whitequark> ggole: no, it's a no-op
<ggole> Or would it just be id?
<ggole> Hmm.
<gasche> (but I do agree that the (A (x,y)) ambiguity is unfortunate, we should really write (A x y) for the one where it makes sense
<gasche> )
<ggole> Now I see gasche's concern, although I dunno how important that is
<whitequark> gasche: what is the reason that constructors can't be curried?
<whitequark> the compiler can easily convert A x to fun y -> A x y
<gasche> well the sucky syntax was the one everyone used at the time OCaml was designed
racycle has quit [Ping timeout: 250 seconds]
pyon-cbpv has quit [Ping timeout: 265 seconds]
<gasche> if I had to design a variant of OCaml today, I'm honestly not sure how I would define sums and product datatypes
studybot has joined #ocaml
racycle has joined #ocaml
Eyyub has joined #ocaml
<gasche> one solution would be to drop structural tuples, mandate that all datatypes have both constructors and named fields, with (a, b, c) being sugar for (Tuple {0=a; 1=b; 2=c})
studybot_ has joined #ocaml
<gasche> maybe only (Tuple a b c), same desugar, so that users can defined their curried non-named constructors as well
<ggole> This reminds me of ATS a little
<ggole> With it's x.0 tuple accessors
<gasche> Oz also uses that
<gasche> (possibly SML)
studybot has quit [Ping timeout: 258 seconds]
rwmjones has quit [Quit: Terminated with extreme prejudice - dircproxy 1.2.0]
<gasche> 16:52 < whitequark> t.A is kind of in a local minimum of horribleness
<gasche> I think that's a rather fair assessment of the situation
<gasche> (understanding that for that horribleness you get various nice benefits)
* whitequark nods
<gasche> now assume that some people don't like the system they maintain to grow more and more horrible over time, and you've got a good mental model of the opposition to the change
<gasche> I'm not saying it's right, but it's a position I can undertand
<whitequark> growing more horrible is a fate of any backwards-compatible system that is not stagnating
<ggole> Mmm, I had in mind a simpler idea without the t.A stuff
<gasche> whitequark: but people get to decide how much and which kind of horribleness they accept
<gasche> GADTs and extensible sums: won't affect most users, makes some expert happy, good deal
<gasche> inline records: everyone and their little brother are going to encounter them and their warts
<whitequark> so far everyone and their little brother are rather excited about inline records, though
<gasche> no
<whitequark> oh?
<gasche> a self-selected group of performance-obsessed expert users on IRC drool at unboxing some mutable references
<gasche> that's rather different
n0v has quit [Ping timeout: 255 seconds]
<whitequark> I don't think it's just about performance
<ggole> My (entirely baseless) impression is that names for constructor arguments are more appealing to more people
<Drup> yeah, for me it's only for the naming part
<whitequark> it's about removing stuff like | Foo (_, _, _, _, _, _, _, x, _, _, _) -> ..., and pexp_ everywhere (actual snippet from typedtree)
<gasche> pexp_ are unrelated, though
<ggole> That one should be a record, surely.
<ggole> And the hell with indirection.
<whitequark> it's about being able to refactor patterns without having to needlessly create once-used records or go through and perform some pointless "refactoring"
<Drup> ggole: and you instantly make warning about disambiguation pop everywhere
<whitequark> consisting of adding _,
<gasche> yeah, we could make those records right now
<gasche> why don't you use records whitequark?
<whitequark> I do, but I'd much rather use unboxed ones
<ggole> Which warning is that? (I'm still on 4.00.1, might be new).
<whitequark> they're semantically a perfect fit
<whitequark> gasche: (Also, the mental image of "performance-obsessed expert users" is priceless, thank you.)
n0v has joined #ocaml
Thooms has quit [Quit: WeeChat 0.3.8]
Thooms has joined #ocaml
* whitequark can't quite bring himself to care about performance of OCaml... after five years of Ruby, it's just too fast
<whitequark> Drup: hm, I just realized we don't actually need the __ppx_lwt pseudo-private namespace
<Drup> whitequark: no we don't, but it doesn't cost anything
<whitequark> we aren't constrained by some silly parsing rules in our choice of names. smth like ppx_lwt!foo woul d work just fine
<Drup> oh
<gasche> using cunning scope tricks to avoid name captures is one of the few pleasures of writing a syntax extension
<Drup> huuum
<whitequark> :D
<gasche> whitequark: what about -dsource?
yacks has joined #ocaml
<Drup> whitequark: that's very devious.
<gasche> I want -dsource-printed code to be compilable
<whitequark> gasche: good point
<gasche> (it is today)
<whitequark> it's actually not quite
<gasche> I think so, at least I bootstrapped the compiler with it
<gasche> (or maybe "it was last month")
<whitequark> it's easy to accidentally construct an AST that will result in an invalid -dsource output, is what I mean
rwmjones has joined #ocaml
<whitequark> I did that several times; it is extremely confusing
<gasche> that's what tests are for :]
<whitequark> I think I could even make it compile, with effort
<Drup> anyway, I don't see any reason to remove it
<Drup> it makes it easy to see what the extension is doing by looking at -dsource, and there is no drawback
<whitequark> yes, -dsource is a good argument
<whitequark> the drawback is that it's possible to have a naming conflict; e.g. implicits use the _* namespace for their own reasons.
<whitequark> (it's probably possible to define implicits so that they siphon _* but not __* names, but, ugh.)
ygrek has joined #ocaml
<gasche> whitequark: you mean Alain never-adopted proposal to use _ to allow implicit lookup
<gasche> I don't think any sensible implicit design would reuse that
<whitequark> oh
<whitequark> what does the current design use?
<gasche> Pierre Chambart and Grégoire Henry used explicit syntax for that
<gasche> whitequark: oud.ocaml.org/2012/abstracts/oud2012-paper4.pdf
<gasche> (what def-lkb works on seems to be closer to "Modular Type Classes" in spirit)
<whitequark> oh i see, that's pretty great
<whitequark> will ocaml-ty be ever merged, or is it already dead?
<gasche> currently it is not mergeable, and the people that work on it are too busy with other things
<whitequark> the Rust people (who currently have something very much like ocaml-ty) seem to be heavily leaning to deriving instead
<whitequark> the `ty' approach, which is almost exclusively used for printing, is 1) really slow 2) not customizable
<whitequark> and is generally somewhat bolted on
<whitequark> perhaps it is a good idea to not merge that and just have good deriving
<gasche> deriving won't replace type-classes
<whitequark> it combines with typeclasses well, though
ygrek has quit [Remote host closed the connection]
ygrek has joined #ocaml
n0v has quit [Quit: !]
<gasche> indeed
<gasche> whitequark: note that Pierre and Grégoire worked on two different branches, one being centered on reified types (which I think, btw., that we could make fast), the other on more general implicits
<gasche> (the OUD talk was on the latter, but there isn't enough info in the abstract to really tell)
boogie has quit [Remote host closed the connection]
ygrek has quit [Remote host closed the connection]
Submarine has quit [Ping timeout: 258 seconds]
Kakadu has quit [Read error: Connection reset by peer]
Kakadu has joined #ocaml
nicoo has quit [*.net *.split]
Averell has quit [*.net *.split]
zebr has quit [*.net *.split]
Thooms has quit [*.net *.split]
keen__ has quit [*.net *.split]
zpe has quit [*.net *.split]
Simn has quit [*.net *.split]
tautologico has quit [*.net *.split]
__marius____ has quit [*.net *.split]
hyperboreean has quit [*.net *.split]
Valdo has quit [*.net *.split]
tov has quit [*.net *.split]
diginux has quit [*.net *.split]
tlockney_away has quit [*.net *.split]
racycle has quit [*.net *.split]
Cyanure has quit [*.net *.split]
_obad_ has quit [*.net *.split]
j0sh has quit [*.net *.split]
PM has quit [*.net *.split]
zarul has quit [*.net *.split]
Ptival has quit [*.net *.split]
milosn has quit [*.net *.split]
ivan\ has quit [*.net *.split]
Derander has quit [*.net *.split]
lopex has quit [*.net *.split]
alinab has quit [*.net *.split]
maufred_ has quit [*.net *.split]
maurer has quit [*.net *.split]
hto has quit [*.net *.split]
tristero has quit [*.net *.split]
nickmeharry has quit [*.net *.split]
Eyyub has quit [*.net *.split]
yacks has quit [*.net *.split]
q66 has quit [*.net *.split]
axiles has quit [*.net *.split]
troydm has quit [*.net *.split]
madroach has quit [*.net *.split]
typedlambda has quit [*.net *.split]
emias has quit [*.net *.split]
Enjolras has quit [*.net *.split]
Mandus has quit [*.net *.split]
Muzer has quit [*.net *.split]
johnelse has quit [*.net *.split]
vpm has quit [*.net *.split]
deavidsedice has quit [*.net *.split]
vbmithr has quit [*.net *.split]
ia0 has quit [*.net *.split]
wormphle1m has quit [*.net *.split]
cow-orke1 has quit [*.net *.split]
hcarty has quit [*.net *.split]
studybot_ has quit [*.net *.split]
nikki93 has quit [*.net *.split]
xitology_ has quit [*.net *.split]
WraithM has quit [*.net *.split]
adrien_oww has quit [*.net *.split]
brendan has quit [*.net *.split]
alex_nx has quit [*.net *.split]
Asmadeus has quit [*.net *.split]
reynir has quit [*.net *.split]
aqz has quit [*.net *.split]
SHODAN has quit [*.net *.split]
so has quit [*.net *.split]
ccasin has quit [*.net *.split]
tchell has quit [*.net *.split]
cross has quit [*.net *.split]
samebchase has quit [*.net *.split]
Armael has quit [*.net *.split]
rs0 has quit [*.net *.split]
AeroNotix has quit [*.net *.split]
saarin has quit [*.net *.split]
habnabit has quit [*.net *.split]
robink_ has quit [*.net *.split]
tianon has quit [*.net *.split]
rossberg has quit [*.net *.split]
mdenes has quit [*.net *.split]
steshaw has quit [*.net *.split]
termos has quit [*.net *.split]
asmanur_ has quit [*.net *.split]
mrvn has quit [*.net *.split]
ninegrid has quit [*.net *.split]
bunzen has quit [*.net *.split]
sgnb has quit [*.net *.split]
whitequark has quit [*.net *.split]
mal`` has quit [*.net *.split]
_5kg has quit [*.net *.split]
flux has quit [*.net *.split]
companion_cube has quit [*.net *.split]
eizo has quit [*.net *.split]
dant3 has quit [*.net *.split]
bitbckt has quit [*.net *.split]
olasd has quit [*.net *.split]
_2can has quit [*.net *.split]
bernardofpc has quit [*.net *.split]
Rotacidni has quit [*.net *.split]
thizanne has quit [*.net *.split]
cdidd has quit [*.net *.split]
bjorkintosh has quit [*.net *.split]
arj has quit [*.net *.split]
smondet_ has quit [*.net *.split]
iZsh has quit [*.net *.split]
jbrown has quit [*.net *.split]
Snark has quit [*.net *.split]
jpdeplaix has quit [*.net *.split]
NoNNaN has quit [*.net *.split]
Kakadu has quit [*.net *.split]
rwmjones has quit [*.net *.split]
rand000 has quit [*.net *.split]
ggole has quit [*.net *.split]
Nahra has quit [*.net *.split]
yastero has quit [*.net *.split]
Fullma has quit [*.net *.split]
wwilly has quit [*.net *.split]
mfp has quit [*.net *.split]
penryu has quit [*.net *.split]
_tca has quit [*.net *.split]
rks` has quit [*.net *.split]
martintrojer has quit [*.net *.split]
cthuluh has quit [*.net *.split]
willb1 has quit [*.net *.split]
gargawel has quit [*.net *.split]
Khady has quit [*.net *.split]
rgrinberg has quit [*.net *.split]
ggherdov_ has quit [*.net *.split]
thorsten` has quit [*.net *.split]
fds has quit [*.net *.split]
teiresias has quit [*.net *.split]
passiveobserver has quit [*.net *.split]
caligula has quit [*.net *.split]
bartbes has quit [*.net *.split]
strmpnk has quit [*.net *.split]
osnr has quit [*.net *.split]
jzelinskie has quit [*.net *.split]
gustav___ has quit [*.net *.split]
tizoc has quit [*.net *.split]
ski has quit [*.net *.split]
adrien has quit [*.net *.split]
pollux has quit [*.net *.split]
manizzle has quit [*.net *.split]
srcerer has quit [*.net *.split]
waneck has quit [*.net *.split]
siddharthv_away has quit [*.net *.split]
pdewacht has quit [*.net *.split]
mbac_ has quit [*.net *.split]
dinosaure has quit [*.net *.split]
The_third_man has quit [*.net *.split]
marky has quit [*.net *.split]
vpit3833 has quit [*.net *.split]
ousado has quit [*.net *.split]
puzza007____ has quit [*.net *.split]
clog has quit [*.net *.split]
finnrobi has quit [*.net *.split]
ruzu has quit [*.net *.split]
inr has quit [*.net *.split]
jonludlam has quit [*.net *.split]
igitoor has quit [*.net *.split]
contempt has quit [*.net *.split]
ohama has quit [*.net *.split]
shalicke has quit [*.net *.split]
dlat has quit [*.net *.split]
xaimus has quit [*.net *.split]
BiDOrD has quit [*.net *.split]
def-lkb has quit [*.net *.split]
Cypi has quit [*.net *.split]
hnrgrgr has quit [*.net *.split]
sgray10 has quit [*.net *.split]
chris2 has quit [*.net *.split]
hyPiRion has quit [*.net *.split]
smiler has quit [*.net *.split]
nk0 has quit [*.net *.split]
lostcuaz has quit [*.net *.split]
AltGr has quit [*.net *.split]
ebzzry has quit [*.net *.split]
gasche has quit [*.net *.split]
acieroid has quit [*.net *.split]
amiller has quit [*.net *.split]
bacam has quit [*.net *.split]
LU324 has quit [*.net *.split]
testcocoon has quit [*.net *.split]
msch has quit [*.net *.split]
kerneis has quit [*.net *.split]
patronus has quit [*.net *.split]
petterw has quit [*.net *.split]
yetanotherion has quit [*.net *.split]
yroeht2 has quit [*.net *.split]
macron has quit [*.net *.split]
jlouis has quit [*.net *.split]
pippijn has quit [*.net *.split]
orbitz has quit [*.net *.split]
aggelos has quit [*.net *.split]
Drup has quit [*.net *.split]
tane has quit [*.net *.split]
Nuki has quit [*.net *.split]
seliopou has quit [*.net *.split]
S11001001 has quit [*.net *.split]
jave_ has quit [*.net *.split]
IbnFirnas has quit [*.net *.split]
Axman6 has quit [*.net *.split]
rand000 has joined #ocaml
AltGr has joined #ocaml
Kakadu has joined #ocaml
araujo has joined #ocaml
_2can has joined #ocaml
S11001001 has joined #ocaml
Cyanure has joined #ocaml
zpe has joined #ocaml
Simn has joined #ocaml
habnabit has joined #ocaml
__marius____ has joined #ocaml
_obad_ has joined #ocaml
tautologico has joined #ocaml
clog has joined #ocaml
seliopou has joined #ocaml
Nahra has joined #ocaml
bernardofpc has joined #ocaml
Nuki has joined #ocaml
Rotacidni has joined #ocaml
Thooms has joined #ocaml
macron has joined #ocaml
srcerer has joined #ocaml
emias has joined #ocaml
rwmjones has joined #ocaml
ebzzry has joined #ocaml
WraithM has joined #ocaml
arj has joined #ocaml
puzza007____ has joined #ocaml
nikki93 has joined #ocaml
hyperboreean has joined #ocaml
q66 has joined #ocaml
Submarine has joined #ocaml
cdidd has joined #ocaml
studybot_ has joined #ocaml
gasche has joined #ocaml
rgrinberg has joined #ocaml
rossberg has joined #ocaml
smondet_ has joined #ocaml
thorsten` has joined #ocaml
Averell has joined #ocaml
caligula has joined #ocaml
Fullma has joined #ocaml
thizanne has joined #ocaml
passiveobserver has joined #ocaml
inr has joined #ocaml
tov has joined #ocaml
zarul has joined #ocaml
acieroid has joined #ocaml
teiresias has joined #ocaml
pollux has joined #ocaml
adrien_oww has joined #ocaml
axiles has joined #ocaml
Enjolras has joined #ocaml
finnrobi has joined #ocaml
igitoor has joined #ocaml
ruzu has joined #ocaml
ggole has joined #ocaml
Muzer has joined #ocaml
johnelse has joined #ocaml
j0sh has joined #ocaml
iZsh has joined #ocaml
tianon has joined #ocaml
Snark has joined #ocaml
fds has joined #ocaml
NoNNaN has joined #ocaml
zebr has joined #ocaml
eizo has joined #ocaml
tane has joined #ocaml
jonludlam has joined #ocaml
manizzle has joined #ocaml
typedlambda has joined #ocaml
vpit3833 has joined #ocaml
waneck has joined #ocaml
IbnFirnas has joined #ocaml
LU324 has joined #ocaml
wwilly has joined #ocaml
vpm has joined #ocaml
diginux has joined #ocaml
brendan has joined #ocaml
tlockney_away has joined #ocaml
keen__ has joined #ocaml
lostcuaz has joined #ocaml
nicoo has joined #ocaml
Ptival has joined #ocaml
xitology_ has joined #ocaml
robink_ has joined #ocaml
milosn has joined #ocaml
madroach has joined #ocaml
jpdeplaix has joined #ocaml
PM has joined #ocaml
ggherdov_ has joined #ocaml
contempt has joined #ocaml
amiller has joined #ocaml
troydm has joined #ocaml
Mandus has joined #ocaml
mdenes has joined #ocaml
dant3 has joined #ocaml
alex_nx has joined #ocaml
siddharthv_away has joined #ocaml
testcocoon has joined #ocaml
Axman6 has joined #ocaml
yastero has joined #ocaml
mfp has joined #ocaml
pdewacht has joined #ocaml
bjorkintosh has joined #ocaml
SHODAN has joined #ocaml
ohama has joined #ocaml
bacam has joined #ocaml
jbrown has joined #ocaml
Valdo has joined #ocaml
ivan\ has joined #ocaml
penryu has joined #ocaml
jave_ has joined #ocaml
ousado has joined #ocaml
bartbes has joined #ocaml
Derander has joined #ocaml
flux has joined #ocaml
_5kg has joined #ocaml
steshaw has joined #ocaml
whitequark has joined #ocaml
companion_cube has joined #ocaml
nickmeharry has joined #ocaml
ninegrid has joined #ocaml
mrvn has joined #ocaml
maurer has joined #ocaml
hto has joined #ocaml
tristero has joined #ocaml
mal`` has joined #ocaml
termos has joined #ocaml
alinab has joined #ocaml
hcarty has joined #ocaml
sgnb has joined #ocaml
lopex has joined #ocaml
cow-orke1 has joined #ocaml
jlouis has joined #ocaml
maufred_ has joined #ocaml
bunzen has joined #ocaml
wormphle1m has joined #ocaml
pippijn has joined #ocaml
asmanur_ has joined #ocaml
aggelos has joined #ocaml
orbitz has joined #ocaml
marky has joined #ocaml
nk0 has joined #ocaml
chris2 has joined #ocaml
hyPiRion has joined #ocaml
smiler has joined #ocaml
adrien has joined #ocaml
bitbckt has joined #ocaml
olasd has joined #ocaml
cross has joined #ocaml
tchell has joined #ocaml
Armael has joined #ocaml
rs0 has joined #ocaml
saarin has joined #ocaml
Khady has joined #ocaml
dinosaure has joined #ocaml
gargawel has joined #ocaml
willb1 has joined #ocaml
samebchase has joined #ocaml
hnrgrgr has joined #ocaml
so has joined #ocaml
Cypi has joined #ocaml
ia0 has joined #ocaml
ccasin has joined #ocaml
vbmithr has joined #ocaml
def-lkb has joined #ocaml
cthuluh has joined #ocaml
yroeht2 has joined #ocaml
ski has joined #ocaml
dlat has joined #ocaml
deavidsedice has joined #ocaml
tizoc has joined #ocaml
BiDOrD has joined #ocaml
_tca has joined #ocaml
mbac_ has joined #ocaml
reynir has joined #ocaml
AeroNotix has joined #ocaml
gustav___ has joined #ocaml
Drup has joined #ocaml
petterw has joined #ocaml
jzelinskie has joined #ocaml
strmpnk has joined #ocaml
xaimus has joined #ocaml
shalicke has joined #ocaml
patronus has joined #ocaml
martintrojer has joined #ocaml
osnr has joined #ocaml
msch has joined #ocaml
sgray10 has joined #ocaml
kerneis has joined #ocaml
rks` has joined #ocaml
yetanotherion has joined #ocaml
Asmadeus has joined #ocaml
aqz has joined #ocaml
The_third_man has joined #ocaml
Eyyub has joined #ocaml
Anarchos has joined #ocaml
ygrek has joined #ocaml
ygrek_ has joined #ocaml
ygrek has quit [Ping timeout: 252 seconds]
<Drup> AltGr: the set of commit to fix pinning broke "opam unpin" :p
<AltGr> er yeah I've got a patch for that already
<Drup> you're too fast =')
<AltGr> it's deprecated, you should now write "opam pin remove"
<AltGr> just need to push :p
<Drup> oh, ok
<AltGr> (but it should still work)
<Drup> it's deprecated before even being in a version of opam ? :p
<gasche> ggole: List.mapn TyNat.three f la lb lc
<Drup> (also, going from before to after this set of commit triggers a big amount of errors and various warnings)
<gasche> but in fact you don't necessarily need GADTs for that, just map combinators
<Drup> (it's fixable by repining everything, so nothing terrible)
<ggole> gasche: hmm, that's a lot nicer than I was expecting
<gasche> as whitequark says, the obvious implementation is equivalent to applicative functors (pure f <$> la <$> lb <$> lc), and boxes a few intermediate lists
<AltGr> hm, https://github.com/ocaml/opam/commit/1de7077b9da131748b7eb2689aa5f7a3a70c6167 should take care of the upgrade but it requires that ~/.opam/config has 'opam-version: "1.1.0"'
<AltGr> try changing that and running "opam list" ?
<gasche> nice GADT-based arity was the motivating example for GADTs in one of Grégoire Henry's talk at a Paris OCaml user meeting, iirc
<Drup> AltGr: indeed, I have it to 1.2
<gasche> AltGr: while you're here, I had an unpleasant problem when I last hacked a tiny thing on OPAM's trunk
<gasche> I compiled and ran the development version for testing
<gasche> and it silently converted my ~/.opam metadata to the most recent version
<Drup> AltGr: indeed, it worked
<gasche> which of course broke the real, non-development installation I used at the time
<gasche> it would be nice to be able to disable this silent conversion on dev builds
<AltGr> hm; sorry about that, yes
<gasche> (by default if possible, so that users don't have to know about it)
<gasche> that's not a life-or-dead issue so I didn't even report it as a bug, I probably should have
<gasche> *death
<Drup> AltGr: can we have "rm" as an aliase for all those "remove" ? I liked "unpin" because it was short
<AltGr> You can keep using it :)
<Drup> hum, deprecated, in my mind is "going to be removed"
<AltGr> but yes, I always want to type "rm" for repo, switch etc.
<Drup> (especially since opam is not even 1.1.1, afair)
<Drup> opam unpin*
<AltGr> note that cmdliner allows you to type any non-ambiguous prefix
ygrek_ has quit [Remote host closed the connection]
<AltGr> so you could write eg "rem"
<Drup> hum, right
<Drup> I always forgot about this feature
<Drup> (it's a weird one, imho)
<AltGr> g2g
<Drup> AltGr: thanks!
<AltGr> gasche: I'll think about the best solution, it's annoying indeed
<whitequark> Drup: git also allows that sometimes
<flux> never use it in scripts, though, as they could break
<AltGr> Bye !
AltGr has left #ocaml [#ocaml]
* whitequark . o O ( http://i.imgur.com/aHwfl.png )
<flux> nice picture, though I don't quite get what it's trying to say :)
<whitequark> it's from Hellsing
<Drup> x)
<flux> though I thought git only says 'you entered the wrong command, maybe you meant this another command'
<flux> (which, for a powerful tool like git, seems like the right approach)
<flux> maybe in future Cmdliner could have that optional feature as well
<flux> whitequark, well, it reallly doesn't explain the picture to me :)
<flux> or the text
* whitequark coughs
<gasche> Hellsing is one of those Japanese mangas that is fascinated with the catholic church: vatican, warrior priests fighting vampires
<gasche> "amen" here is a pun on that
Thooms has quit [Quit: WeeChat 0.3.8]
<whitequark> I couldn't have said it better.
<whitequark> (Hellsing takes it a bit to the extreme: warrior priests fighting nazi cyborg vampires. It makes about as much sense in the context)
<adrien> gasche: you forgot nazis :P
Rotacidni has quit [Ping timeout: 240 seconds]
<adrien> whitequark: you haven't given up trying to understand japanese people?
<adrien> I mean, they even make large unicode libs and make them again
<whitequark> here is a fragment I usually refer people to when they need to get a gist of Hellsing: https://www.youtube.com/watch?v=fwQleI-UoY8
<whitequark> adrien: Japanese people and Unicode is a topic on its own.
<whitequark> CJK unification >_<
<adrien> :)
<whitequark> I mean, it should've been obvious even to the Unicode committee that placing words Chinese, Japanese, unification in one sentence is just asking for trouble, but nooo
<whitequark> afaik, CJK unification was somehow one of the primary reasons that Ruby went with its abysmal multi-encoding system, as opposed to all-Unicode
robink_ is now known as robink
<whitequark> it doesn't really work, and it's so underspecified that attempts to replicate it in other implementations have been basically unsuccessful
<whitequark> you *still* have a rather high chance of accidentally stumbling into a weird corner case which doesn't make any sense whatsoever
<whitequark> or this pearl: because of an accidentally semi-exposed implementation detail, all objects (and not just Strings and Regexes) have encoding.
<whitequark> which is not directly user-accessible, but has some apparently important implications which are so obscure I'm not going to even try to explain what they are
jao has joined #ocaml
jao has quit [Changing host]
jao has joined #ocaml
maattdd has joined #ocaml
Nahra has quit [Remote host closed the connection]
Nahra has joined #ocaml
maattdd has quit [Ping timeout: 245 seconds]
contempt has quit [Ping timeout: 245 seconds]
contempt has joined #ocaml
<Drup> whitequark: why did I tried to update the trunk switch ? T_T
axiles has quit [Ping timeout: 252 seconds]
Cyanure has quit [Remote host closed the connection]
seliopou has quit [Ping timeout: 258 seconds]
seliopou has joined #ocaml
philtor has joined #ocaml
Rotacidni has joined #ocaml
tlockney_away is now known as tlockney
tnguyen has joined #ocaml
jao has quit [Ping timeout: 250 seconds]
Hannibal_Smith has joined #ocaml
maattdd has joined #ocaml
maattdd has quit [Ping timeout: 240 seconds]
zpe has quit [Remote host closed the connection]
zpe has joined #ocaml
zpe has quit [Read error: Connection reset by peer]
zpe has joined #ocaml
axiles has joined #ocaml
<Drup> whitequark: ok, I just looked at your patch more carefully
<Drup> two minor nitpicks
<whitequark> yeah?
<Drup> you could factorise those "Location.Error (Location.error ...))" as "Location.(Error @@ error ..)"
<Drup> with added bonus to go back under 80 wide chars
<whitequark> uhhh, Error is a constructor
<whitequark> can't curry it
<Drup> right
<Drup> you can stiff factorise the Location. :p
<Drup> still*
<whitequark> and the second one?
<Drup> wouldn't be possible to put the finalize out of the function ?
<Drup> the "finally" code is repeated in each exception case
<whitequark> m
<whitequark> I never actually looked at how the camlp4 ext does it
<whitequark> ow, my try%lwt is all wrong.
<Drup> the code is simpler but uglier
<Drup> hum, is it ?
<whitequark> yes, look at it
<Drup> I was only looking at the code of the ppx
Eyyub has quit [Ping timeout: 252 seconds]
<whitequark> grmbl. I now see why -lwt-debug actually exists
<whitequark> I'll implement it (but as -lwt-release, with the inverse semantics.)
<Drup> :D
<whitequark> and now I'm going to sleep
<whitequark> o/
nicoo has quit [*.net *.split]
Averell has quit [*.net *.split]
zebr has quit [*.net *.split]
keen__ has quit [*.net *.split]
Simn has quit [*.net *.split]
tautologico has quit [*.net *.split]
__marius____ has quit [*.net *.split]
hyperboreean has quit [*.net *.split]
Valdo has quit [*.net *.split]
tov has quit [*.net *.split]
diginux has quit [*.net *.split]
tlockney has quit [*.net *.split]
Hannibal_Smith has quit [*.net *.split]
_obad_ has quit [*.net *.split]
j0sh has quit [*.net *.split]
PM has quit [*.net *.split]
zarul has quit [*.net *.split]
Ptival has quit [*.net *.split]
ivan\ has quit [*.net *.split]
milosn has quit [*.net *.split]
Derander has quit [*.net *.split]
lopex has quit [*.net *.split]
maufred_ has quit [*.net *.split]
alinab has quit [*.net *.split]
maurer has quit [*.net *.split]
hto has quit [*.net *.split]
tristero has quit [*.net *.split]
Rotacidni has quit [*.net *.split]
nickmeharry has quit [*.net *.split]
q66 has quit [*.net *.split]
madroach has quit [*.net *.split]
troydm has quit [*.net *.split]
emias has quit [*.net *.split]
typedlambda has quit [*.net *.split]
Enjolras has quit [*.net *.split]
Mandus has quit [*.net *.split]
johnelse has quit [*.net *.split]
Muzer has quit [*.net *.split]
vpm has quit [*.net *.split]
deavidsedice has quit [*.net *.split]
ia0 has quit [*.net *.split]
vbmithr has quit [*.net *.split]
cow-orke1 has quit [*.net *.split]
wormphle1m has quit [*.net *.split]
hcarty has quit [*.net *.split]
studybot_ has quit [*.net *.split]
nikki93 has quit [*.net *.split]
xitology_ has quit [*.net *.split]
WraithM has quit [*.net *.split]
adrien_oww has quit [*.net *.split]
brendan has quit [*.net *.split]
alex_nx has quit [*.net *.split]
reynir has quit [*.net *.split]
aqz has quit [*.net *.split]
Asmadeus has quit [*.net *.split]
SHODAN has quit [*.net *.split]
so has quit [*.net *.split]
ccasin has quit [*.net *.split]
tchell has quit [*.net *.split]
cross has quit [*.net *.split]
samebchase has quit [*.net *.split]
Armael has quit [*.net *.split]
rs0 has quit [*.net *.split]
AeroNotix has quit [*.net *.split]
saarin has quit [*.net *.split]
habnabit has quit [*.net *.split]
robink has quit [*.net *.split]
tianon has quit [*.net *.split]
rossberg has quit [*.net *.split]
mdenes has quit [*.net *.split]
steshaw has quit [*.net *.split]
termos has quit [*.net *.split]
asmanur_ has quit [*.net *.split]
ninegrid has quit [*.net *.split]
mrvn has quit [*.net *.split]
bunzen has quit [*.net *.split]
sgnb has quit [*.net *.split]
whitequark has quit [*.net *.split]
mal`` has quit [*.net *.split]
_5kg has quit [*.net *.split]
flux has quit [*.net *.split]
companion_cube has quit [*.net *.split]
eizo has quit [*.net *.split]
dant3 has quit [*.net *.split]
bitbckt has quit [*.net *.split]
olasd has quit [*.net *.split]
araujo has quit [*.net *.split]
_2can has quit [*.net *.split]
bernardofpc has quit [*.net *.split]
cdidd has quit [*.net *.split]
thizanne has quit [*.net *.split]
bjorkintosh has quit [*.net *.split]
arj has quit [*.net *.split]
iZsh has quit [*.net *.split]
smondet_ has quit [*.net *.split]
jbrown has quit [*.net *.split]
Snark has quit [*.net *.split]
jpdeplaix has quit [*.net *.split]
NoNNaN has quit [*.net *.split]
axiles has quit [*.net *.split]
Kakadu has quit [*.net *.split]
rwmjones has quit [*.net *.split]
ggole has quit [*.net *.split]
yastero has quit [*.net *.split]
wwilly has quit [*.net *.split]
Fullma has quit [*.net *.split]
mfp has quit [*.net *.split]
penryu has quit [*.net *.split]
_tca has quit [*.net *.split]
martintrojer has quit [*.net *.split]
rks` has quit [*.net *.split]
cthuluh has quit [*.net *.split]
gargawel has quit [*.net *.split]
willb1 has quit [*.net *.split]
Khady has quit [*.net *.split]
rgrinberg has quit [*.net *.split]
ggherdov_ has quit [*.net *.split]
thorsten` has quit [*.net *.split]
fds has quit [*.net *.split]
teiresias has quit [*.net *.split]
caligula has quit [*.net *.split]
passiveobserver has quit [*.net *.split]
bartbes has quit [*.net *.split]
strmpnk has quit [*.net *.split]
jzelinskie has quit [*.net *.split]
osnr has quit [*.net *.split]
gustav___ has quit [*.net *.split]
tizoc has quit [*.net *.split]
ski has quit [*.net *.split]
adrien has quit [*.net *.split]
pollux has quit [*.net *.split]
Anarchos has quit [*.net *.split]
manizzle has quit [*.net *.split]
waneck has quit [*.net *.split]
srcerer has quit [*.net *.split]
siddharthv_away has quit [*.net *.split]
pdewacht has quit [*.net *.split]
mbac_ has quit [*.net *.split]
The_third_man has quit [*.net *.split]
dinosaure has quit [*.net *.split]
marky has quit [*.net *.split]
philtor has quit [*.net *.split]
rand000 has quit [*.net *.split]
vpit3833 has quit [*.net *.split]
ousado has quit [*.net *.split]
puzza007____ has quit [*.net *.split]
clog has quit [*.net *.split]
finnrobi has quit [*.net *.split]
ruzu has quit [*.net *.split]
igitoor has quit [*.net *.split]
jonludlam has quit [*.net *.split]
inr has quit [*.net *.split]
ohama has quit [*.net *.split]
shalicke has quit [*.net *.split]
dlat has quit [*.net *.split]
xaimus has quit [*.net *.split]
BiDOrD has quit [*.net *.split]
def-lkb has quit [*.net *.split]
hnrgrgr has quit [*.net *.split]
Cypi has quit [*.net *.split]
sgray10 has quit [*.net *.split]
chris2 has quit [*.net *.split]
nk0 has quit [*.net *.split]
hyPiRion has quit [*.net *.split]
smiler has quit [*.net *.split]
tnguyen has quit [*.net *.split]
contempt has quit [*.net *.split]
lostcuaz has quit [*.net *.split]
ebzzry has quit [*.net *.split]
gasche has quit [*.net *.split]
acieroid has quit [*.net *.split]
amiller has quit [*.net *.split]
bacam has quit [*.net *.split]
LU324 has quit [*.net *.split]
testcocoon has quit [*.net *.split]
msch has quit [*.net *.split]
kerneis has quit [*.net *.split]
patronus has quit [*.net *.split]
yetanotherion has quit [*.net *.split]
yroeht2 has quit [*.net *.split]
petterw has quit [*.net *.split]
macron has quit [*.net *.split]
jlouis has quit [*.net *.split]
pippijn has quit [*.net *.split]
aggelos has quit [*.net *.split]
orbitz has quit [*.net *.split]
Drup has quit [*.net *.split]
Nuki has quit [*.net *.split]
seliopou has quit [*.net *.split]
tane has quit [*.net *.split]
Nahra has quit [*.net *.split]
Submarine has quit [*.net *.split]
zpe has quit [*.net *.split]
S11001001 has quit [*.net *.split]
jave_ has quit [*.net *.split]
IbnFirnas has quit [*.net *.split]
Axman6 has quit [*.net *.split]
vpit3833` has joined #ocaml
pyon has joined #ocaml
axiles has joined #ocaml
rgrinberg has joined #ocaml
Kakadu has joined #ocaml
_2can has joined #ocaml
philtor has joined #ocaml
tnguyen has joined #ocaml
Hannibal_Smith has joined #ocaml
ggole has joined #ocaml
Nahra has joined #ocaml
ebzzry has joined #ocaml
_obad_ has joined #ocaml
manizzle has joined #ocaml
NoNNaN has joined #ocaml
Submarine has joined #ocaml
seliopou has joined #ocaml
S11001001 has joined #ocaml
tane has joined #ocaml
rwmjones has joined #ocaml
keen__ has joined #ocaml
bernardofpc has joined #ocaml
rand000 has joined #ocaml
typedlambda has joined #ocaml
habnabit has joined #ocaml
studybot_ has joined #ocaml
q66 has joined #ocaml
macron has joined #ocaml
puzza007____ has joined #ocaml
araujo has joined #ocaml
madroach has joined #ocaml
Simn has joined #ocaml
cdidd has joined #ocaml
WraithM has joined #ocaml
robink has joined #ocaml
nikki93 has joined #ocaml
__marius____ has joined #ocaml
Rotacidni has joined #ocaml
Anarchos has joined #ocaml
emias has joined #ocaml
ousado has joined #ocaml
zpe has joined #ocaml
thizanne has joined #ocaml
eizo has joined #ocaml
lostcuaz has joined #ocaml
ggherdov_ has joined #ocaml
xitology_ has joined #ocaml
contempt has joined #ocaml
Nuki has joined #ocaml
troydm has joined #ocaml
adrien_oww has joined #ocaml
clog has joined #ocaml
bjorkintosh has joined #ocaml
finnrobi has joined #ocaml
arj has joined #ocaml
srcerer has joined #ocaml
Enjolras has joined #ocaml
gasche has joined #ocaml
waneck has joined #ocaml
j0sh has joined #ocaml
PM has joined #ocaml
hyperboreean has joined #ocaml
Averell has joined #ocaml
thorsten` has joined #ocaml
acieroid has joined #ocaml
brendan has joined #ocaml
yastero has joined #ocaml
tlockney has joined #ocaml
_5kg has joined #ocaml
tov has joined #ocaml
siddharthv_away has joined #ocaml
Fullma has joined #ocaml
iZsh has joined #ocaml
diginux has joined #ocaml
alex_nx has joined #ocaml
bacam has joined #ocaml
fds has joined #ocaml
vpm has joined #ocaml
testcocoon has joined #ocaml
ninegrid has joined #ocaml
maurer has joined #ocaml
caligula has joined #ocaml
Muzer has joined #ocaml
Axman6 has joined #ocaml
Mandus has joined #ocaml
sgnb has joined #ocaml
aggelos has joined #ocaml
tristero has joined #ocaml
SHODAN has joined #ocaml
jonludlam has joined #ocaml
wwilly has joined #ocaml
Derander has joined #ocaml
mfp has joined #ocaml
passiveobserver has joined #ocaml
amiller has joined #ocaml
pippijn has joined #ocaml
penryu has joined #ocaml
mrvn has joined #ocaml
nicoo has joined #ocaml
Valdo has joined #ocaml
zarul has joined #ocaml
cow-orke1 has joined #ocaml
milosn has joined #ocaml
mdenes has joined #ocaml
nickmeharry has joined #ocaml
flux has joined #ocaml
smiler has joined #ocaml
hyPiRion has joined #ocaml
johnelse has joined #ocaml
jlouis has joined #ocaml
wormphle1m has joined #ocaml
teiresias has joined #ocaml
smondet_ has joined #ocaml
tchell has joined #ocaml
pollux has joined #ocaml
dant3 has joined #ocaml
marky has joined #ocaml
Armael has joined #ocaml
cross has joined #ocaml
alinab has joined #ocaml
olasd has joined #ocaml
hto has joined #ocaml
zebr has joined #ocaml
lopex has joined #ocaml
bartbes has joined #ocaml
saarin has joined #ocaml
igitoor has joined #ocaml
mal`` has joined #ocaml
rossberg has joined #ocaml
Ptival has joined #ocaml
asmanur_ has joined #ocaml
rs0 has joined #ocaml
Khady has joined #ocaml
willb1 has joined #ocaml
termos has joined #ocaml
samebchase has joined #ocaml
dinosaure has joined #ocaml
maufred_ has joined #ocaml
jave_ has joined #ocaml
hcarty has joined #ocaml
whitequark has joined #ocaml
hnrgrgr has joined #ocaml
LU324 has joined #ocaml
jpdeplaix has joined #ocaml
jbrown has joined #ocaml
steshaw has joined #ocaml
ia0 has joined #ocaml
Snark has joined #ocaml
inr has joined #ocaml
chris2 has joined #ocaml
ruzu has joined #ocaml
tianon has joined #ocaml
cthuluh has joined #ocaml
ivan\ has joined #ocaml
ccasin has joined #ocaml
so has joined #ocaml
companion_cube has joined #ocaml
BiDOrD has joined #ocaml
bitbckt has joined #ocaml
def-lkb has joined #ocaml
ohama has joined #ocaml
IbnFirnas has joined #ocaml
ski has joined #ocaml
Asmadeus has joined #ocaml
vbmithr has joined #ocaml
The_third_man has joined #ocaml
rks` has joined #ocaml
pdewacht has joined #ocaml
Drup has joined #ocaml
aqz has joined #ocaml
orbitz has joined #ocaml
gargawel has joined #ocaml
martintrojer has joined #ocaml
reynir has joined #ocaml
Cypi has joined #ocaml
nk0 has joined #ocaml
tizoc has joined #ocaml
deavidsedice has joined #ocaml
xaimus has joined #ocaml
sgray10 has joined #ocaml
patronus has joined #ocaml
AeroNotix has joined #ocaml
yroeht2 has joined #ocaml
dlat has joined #ocaml
yetanotherion has joined #ocaml
kerneis has joined #ocaml
mbac_ has joined #ocaml
gustav___ has joined #ocaml
jzelinskie has joined #ocaml
adrien has joined #ocaml
_tca has joined #ocaml
msch has joined #ocaml
petterw has joined #ocaml
osnr has joined #ocaml
shalicke has joined #ocaml
strmpnk has joined #ocaml
bunzen has joined #ocaml
zpe has quit [Remote host closed the connection]
zpe has joined #ocaml
nicoo has quit [*.net *.split]
zebr has quit [*.net *.split]
Averell has quit [*.net *.split]
keen__ has quit [*.net *.split]
Simn has quit [*.net *.split]
__marius____ has quit [*.net *.split]
hyperboreean has quit [*.net *.split]
Valdo has quit [*.net *.split]
tov has quit [*.net *.split]
diginux has quit [*.net *.split]
tlockney has quit [*.net *.split]
Hannibal_Smith has quit [*.net *.split]
_obad_ has quit [*.net *.split]
j0sh has quit [*.net *.split]
PM has quit [*.net *.split]
zarul has quit [*.net *.split]
Ptival has quit [*.net *.split]
ivan\ has quit [*.net *.split]
milosn has quit [*.net *.split]
Derander has quit [*.net *.split]
lopex has quit [*.net *.split]
maufred_ has quit [*.net *.split]
alinab has quit [*.net *.split]
maurer has quit [*.net *.split]
hto has quit [*.net *.split]
tristero has quit [*.net *.split]
nickmeharry has quit [*.net *.split]
Rotacidni has quit [*.net *.split]
q66 has quit [*.net *.split]
troydm has quit [*.net *.split]
madroach has quit [*.net *.split]
typedlambda has quit [*.net *.split]
emias has quit [*.net *.split]
Enjolras has quit [*.net *.split]
Mandus has quit [*.net *.split]
Muzer has quit [*.net *.split]
johnelse has quit [*.net *.split]
vpm has quit [*.net *.split]
deavidsedice has quit [*.net *.split]
vbmithr has quit [*.net *.split]
ia0 has quit [*.net *.split]
cow-orke1 has quit [*.net *.split]
wormphle1m has quit [*.net *.split]
hcarty has quit [*.net *.split]
studybot_ has quit [*.net *.split]
xitology_ has quit [*.net *.split]
nikki93 has quit [*.net *.split]
WraithM has quit [*.net *.split]
adrien_oww has quit [*.net *.split]
brendan has quit [*.net *.split]
alex_nx has quit [*.net *.split]
aqz has quit [*.net *.split]
reynir has quit [*.net *.split]
Asmadeus has quit [*.net *.split]
SHODAN has quit [*.net *.split]
ccasin has quit [*.net *.split]
so has quit [*.net *.split]
tchell has quit [*.net *.split]
cross has quit [*.net *.split]
samebchase has quit [*.net *.split]
Armael has quit [*.net *.split]
rs0 has quit [*.net *.split]
AeroNotix has quit [*.net *.split]
saarin has quit [*.net *.split]
habnabit has quit [*.net *.split]
robink has quit [*.net *.split]
tianon has quit [*.net *.split]
rossberg has quit [*.net *.split]
mdenes has quit [*.net *.split]
steshaw has quit [*.net *.split]
termos has quit [*.net *.split]
asmanur_ has quit [*.net *.split]
ninegrid has quit [*.net *.split]
sgnb has quit [*.net *.split]
bunzen has quit [*.net *.split]
mrvn has quit [*.net *.split]
whitequark has quit [*.net *.split]
mal`` has quit [*.net *.split]
_5kg has quit [*.net *.split]
flux has quit [*.net *.split]
companion_cube has quit [*.net *.split]
eizo has quit [*.net *.split]
dant3 has quit [*.net *.split]
bitbckt has quit [*.net *.split]
olasd has quit [*.net *.split]
araujo has quit [*.net *.split]
_2can has quit [*.net *.split]
bernardofpc has quit [*.net *.split]
cdidd has quit [*.net *.split]
thizanne has quit [*.net *.split]
bjorkintosh has quit [*.net *.split]
arj has quit [*.net *.split]
smondet_ has quit [*.net *.split]
iZsh has quit [*.net *.split]
Snark has quit [*.net *.split]
jbrown has quit [*.net *.split]
jpdeplaix has quit [*.net *.split]
NoNNaN has quit [*.net *.split]
vpit3833` has quit [*.net *.split]
axiles has quit [*.net *.split]
Kakadu has quit [*.net *.split]
rwmjones has quit [*.net *.split]
ggole has quit [*.net *.split]
yastero has quit [*.net *.split]
wwilly has quit [*.net *.split]
Fullma has quit [*.net *.split]
mfp has quit [*.net *.split]
penryu has quit [*.net *.split]
_tca has quit [*.net *.split]
rks` has quit [*.net *.split]
martintrojer has quit [*.net *.split]
cthuluh has quit [*.net *.split]
Khady has quit [*.net *.split]
gargawel has quit [*.net *.split]
willb1 has quit [*.net *.split]
rgrinberg has quit [*.net *.split]
ggherdov_ has quit [*.net *.split]
thorsten` has quit [*.net *.split]
fds has quit [*.net *.split]
teiresias has quit [*.net *.split]
caligula has quit [*.net *.split]
passiveobserver has quit [*.net *.split]
bartbes has quit [*.net *.split]
strmpnk has quit [*.net *.split]
jzelinskie has quit [*.net *.split]
osnr has quit [*.net *.split]
gustav___ has quit [*.net *.split]
tizoc has quit [*.net *.split]
ski has quit [*.net *.split]
adrien has quit [*.net *.split]
pollux has quit [*.net *.split]
zpe has quit [*.net *.split]
Anarchos has quit [*.net *.split]
manizzle has quit [*.net *.split]
waneck has quit [*.net *.split]
srcerer has quit [*.net *.split]
siddharthv_away has quit [*.net *.split]
pdewacht has quit [*.net *.split]
mbac_ has quit [*.net *.split]
dinosaure has quit [*.net *.split]
The_third_man has quit [*.net *.split]
marky has quit [*.net *.split]
philtor has quit [*.net *.split]
rand000 has quit [*.net *.split]
ousado has quit [*.net *.split]
puzza007____ has quit [*.net *.split]
clog has quit [*.net *.split]
finnrobi has quit [*.net *.split]
ruzu has quit [*.net *.split]
igitoor has quit [*.net *.split]
inr has quit [*.net *.split]
jonludlam has quit [*.net *.split]
ohama has quit [*.net *.split]
shalicke has quit [*.net *.split]
dlat has quit [*.net *.split]
xaimus has quit [*.net *.split]
BiDOrD has quit [*.net *.split]
def-lkb has quit [*.net *.split]
Cypi has quit [*.net *.split]
hnrgrgr has quit [*.net *.split]
sgray10 has quit [*.net *.split]
chris2 has quit [*.net *.split]
nk0 has quit [*.net *.split]
hyPiRion has quit [*.net *.split]
smiler has quit [*.net *.split]
contempt has quit [*.net *.split]
tnguyen has quit [*.net *.split]
lostcuaz has quit [*.net *.split]
ebzzry has quit [*.net *.split]
gasche has quit [*.net *.split]
acieroid has quit [*.net *.split]
amiller has quit [*.net *.split]
LU324 has quit [*.net *.split]
bacam has quit [*.net *.split]
testcocoon has quit [*.net *.split]
msch has quit [*.net *.split]
kerneis has quit [*.net *.split]
patronus has quit [*.net *.split]
yetanotherion has quit [*.net *.split]
petterw has quit [*.net *.split]
yroeht2 has quit [*.net *.split]
macron has quit [*.net *.split]
jlouis has quit [*.net *.split]
orbitz has quit [*.net *.split]
pippijn has quit [*.net *.split]
Drup has quit [*.net *.split]
aggelos has quit [*.net *.split]
seliopou has quit [*.net *.split]
Nuki has quit [*.net *.split]
tane has quit [*.net *.split]
pyon has quit [*.net *.split]
Nahra has quit [*.net *.split]
Submarine has quit [*.net *.split]
S11001001 has quit [*.net *.split]
jave_ has quit [*.net *.split]
IbnFirnas has quit [*.net *.split]
Axman6 has quit [*.net *.split]
_whitelogger has joined #ocaml
zpe has joined #ocaml
Tamae has joined #ocaml
lordkryss_ has joined #ocaml
typedlambda has joined #ocaml
pyon has joined #ocaml
vpit3833 has joined #ocaml
lostcuaz has joined #ocaml
araujo has joined #ocaml
q66 has joined #ocaml
eizo has joined #ocaml
ousado has joined #ocaml
axiles has joined #ocaml
Anarchos has joined #ocaml
keen__ has joined #ocaml
S11001001 has joined #ocaml
contempt has joined #ocaml
philtor has joined #ocaml
WraithM has joined #ocaml
Nahra has joined #ocaml
seliopou has joined #ocaml
rand000 has joined #ocaml
_obad_ has joined #ocaml
studybot_ has joined #ocaml
puzza007____ has joined #ocaml
Nuki has joined #ocaml
madroach has joined #ocaml
manizzle has joined #ocaml
ggole has joined #ocaml
robink has joined #ocaml
clog has joined #ocaml
_2can has joined #ocaml
rgrinberg has joined #ocaml
NoNNaN has joined #ocaml
arj has joined #ocaml
Rotacidni has joined #ocaml
srcerer has joined #ocaml
bjorkintosh has joined #ocaml
troydm has joined #ocaml
xitology_ has joined #ocaml
nikki93 has joined #ocaml
ebzzry has joined #ocaml
macron has joined #ocaml
emias has joined #ocaml
Kakadu has joined #ocaml
nicoo has joined #ocaml
__marius____ has joined #ocaml
waneck has joined #ocaml
Averell has joined #ocaml
Enjolras has joined #ocaml
tnguyen has joined #ocaml
cdidd has joined #ocaml
ggherdov_ has joined #ocaml
habnabit has joined #ocaml
finnrobi has joined #ocaml
gasche has joined #ocaml
thizanne has joined #ocaml
adrien_oww has joined #ocaml
zebr has joined #ocaml
tane has joined #ocaml
bernardofpc has joined #ocaml
brendan has joined #ocaml
ruzu has joined #ocaml
PM has joined #ocaml
j0sh has joined #ocaml
rwmjones has joined #ocaml
Submarine has joined #ocaml
Simn has joined #ocaml
fds has joined #ocaml
hyperboreean has joined #ocaml
thorsten` has joined #ocaml
Mandus has joined #ocaml
Hannibal_Smith has joined #ocaml
yastero has joined #ocaml
pollux has joined #ocaml
caligula has joined #ocaml
teiresias has joined #ocaml
wwilly has joined #ocaml
igitoor has joined #ocaml
Fullma has joined #ocaml
jave_ has joined #ocaml
johnelse has joined #ocaml
cow-orke1 has joined #ocaml
bitbckt has joined #ocaml
asmanur_ has joined #ocaml
whitequark has joined #ocaml
cross has joined #ocaml
LU324 has joined #ocaml
tlockney has joined #ocaml
pippijn has joined #ocaml
testcocoon has joined #ocaml
saarin has joined #ocaml
steshaw has joined #ocaml
companion_cube has joined #ocaml
smiler has joined #ocaml
dinosaure has joined #ocaml
SHODAN has joined #ocaml
penryu has joined #ocaml
sgnb has joined #ocaml
bartbes has joined #ocaml
mdenes has joined #ocaml
maurer has joined #ocaml
so has joined #ocaml
orbitz has joined #ocaml
tchell has joined #ocaml
amiller has joined #ocaml
tristero has joined #ocaml
flux has joined #ocaml
Ptival has joined #ocaml
jpdeplaix has joined #ocaml
gargawel has joined #ocaml
ohama has joined #ocaml
bacam has joined #ocaml
iZsh has joined #ocaml
ivan\ has joined #ocaml
olasd has joined #ocaml
hyPiRion has joined #ocaml
Khady has joined #ocaml
rs0 has joined #ocaml
jlouis has joined #ocaml
alex_nx has joined #ocaml
pdewacht has joined #ocaml
Derander has joined #ocaml
yroeht2 has joined #ocaml
mrvn has joined #ocaml
IbnFirnas has joined #ocaml
smondet_ has joined #ocaml
jbrown has joined #ocaml
nk0 has joined #ocaml
_5kg has joined #ocaml
alinab has joined #ocaml
inr has joined #ocaml
hnrgrgr has joined #ocaml
chris2 has joined #ocaml
maufred_ has joined #ocaml
lopex has joined #ocaml
reynir has joined #ocaml
martintrojer has joined #ocaml
rks` has joined #ocaml
mfp has joined #ocaml
nickmeharry has joined #ocaml
Snark has joined #ocaml
def-lkb has joined #ocaml
vbmithr has joined #ocaml
milosn has joined #ocaml
aqz has joined #ocaml
diginux has joined #ocaml
bunzen has joined #ocaml
tov has joined #ocaml
AeroNotix has joined #ocaml
cthuluh has joined #ocaml
Armael has joined #ocaml
Asmadeus has joined #ocaml
Cypi has joined #ocaml
jonludlam has joined #ocaml
zarul has joined #ocaml
Valdo has joined #ocaml
ccasin has joined #ocaml
mal`` has joined #ocaml
siddharthv_away has joined #ocaml
ski has joined #ocaml
petterw has joined #ocaml
marky has joined #ocaml
adrien has joined #ocaml
sgray10 has joined #ocaml
wormphle1m has joined #ocaml
dant3 has joined #ocaml
The_third_man has joined #ocaml
termos has joined #ocaml
rossberg has joined #ocaml
ninegrid has joined #ocaml
xaimus has joined #ocaml
Drup has joined #ocaml
yetanotherion has joined #ocaml
ia0 has joined #ocaml
Axman6 has joined #ocaml
hcarty has joined #ocaml
willb1 has joined #ocaml
vpm has joined #ocaml
tianon has joined #ocaml
passiveobserver has joined #ocaml
Muzer has joined #ocaml
deavidsedice has joined #ocaml
aggelos has joined #ocaml
hto has joined #ocaml
acieroid has joined #ocaml
BiDOrD has joined #ocaml
dlat has joined #ocaml
jzelinskie has joined #ocaml
gustav___ has joined #ocaml
kerneis has joined #ocaml
strmpnk has joined #ocaml
tizoc has joined #ocaml
patronus has joined #ocaml
shalicke has joined #ocaml
osnr has joined #ocaml
_tca has joined #ocaml
mbac_ has joined #ocaml
msch has joined #ocaml
Submarine has quit [Remote host closed the connection]
nicoo has quit [*.net *.split]
zebr has quit [*.net *.split]
Averell has quit [*.net *.split]
lordkryss_ has quit [*.net *.split]
Simn has quit [*.net *.split]
keen__ has quit [*.net *.split]
__marius____ has quit [*.net *.split]
hyperboreean has quit [*.net *.split]
tov has quit [*.net *.split]
Valdo has quit [*.net *.split]
diginux has quit [*.net *.split]
tlockney has quit [*.net *.split]
Hannibal_Smith has quit [*.net *.split]
_obad_ has quit [*.net *.split]
j0sh has quit [*.net *.split]
PM has quit [*.net *.split]
zarul has quit [*.net *.split]
Ptival has quit [*.net *.split]
ivan\ has quit [*.net *.split]
milosn has quit [*.net *.split]
Derander has quit [*.net *.split]
lopex has quit [*.net *.split]
maufred_ has quit [*.net *.split]
alinab has quit [*.net *.split]
maurer has quit [*.net *.split]
hto has quit [*.net *.split]
tristero has quit [*.net *.split]
nickmeharry has quit [*.net *.split]
vpit3833 has quit [*.net *.split]
Rotacidni has quit [*.net *.split]
typedlambda has quit [*.net *.split]
q66 has quit [*.net *.split]
troydm has quit [*.net *.split]
madroach has quit [*.net *.split]
emias has quit [*.net *.split]
Enjolras has quit [*.net *.split]
Mandus has quit [*.net *.split]
Muzer has quit [*.net *.split]
johnelse has quit [*.net *.split]
vpm has quit [*.net *.split]
deavidsedice has quit [*.net *.split]
vbmithr has quit [*.net *.split]
ia0 has quit [*.net *.split]
cow-orke1 has quit [*.net *.split]
wormphle1m has quit [*.net *.split]
hcarty has quit [*.net *.split]
studybot_ has quit [*.net *.split]
Tamae has quit [*.net *.split]
nikki93 has quit [*.net *.split]
xitology_ has quit [*.net *.split]
adrien_oww has quit [*.net *.split]
WraithM has quit [*.net *.split]
brendan has quit [*.net *.split]
alex_nx has quit [*.net *.split]
reynir has quit [*.net *.split]
aqz has quit [*.net *.split]
Asmadeus has quit [*.net *.split]
SHODAN has quit [*.net *.split]
ccasin has quit [*.net *.split]
so has quit [*.net *.split]
cross has quit [*.net *.split]
tchell has quit [*.net *.split]
AeroNotix has quit [*.net *.split]
rs0 has quit [*.net *.split]
Armael has quit [*.net *.split]
robink has quit [*.net *.split]
saarin has quit [*.net *.split]
habnabit has quit [*.net *.split]
tianon has quit [*.net *.split]
rossberg has quit [*.net *.split]
mdenes has quit [*.net *.split]
steshaw has quit [*.net *.split]
termos has quit [*.net *.split]
asmanur_ has quit [*.net *.split]
ninegrid has quit [*.net *.split]
bunzen has quit [*.net *.split]
mrvn has quit [*.net *.split]
sgnb has quit [*.net *.split]
whitequark has quit [*.net *.split]
mal`` has quit [*.net *.split]
_5kg has quit [*.net *.split]
flux has quit [*.net *.split]
companion_cube has quit [*.net *.split]
eizo has quit [*.net *.split]
dant3 has quit [*.net *.split]
olasd has quit [*.net *.split]
bitbckt has quit [*.net *.split]
araujo has quit [*.net *.split]
_2can has quit [*.net *.split]
bernardofpc has quit [*.net *.split]
cdidd has quit [*.net *.split]
thizanne has quit [*.net *.split]
arj has quit [*.net *.split]
bjorkintosh has quit [*.net *.split]
smondet_ has quit [*.net *.split]
iZsh has quit [*.net *.split]
jbrown has quit [*.net *.split]
Snark has quit [*.net *.split]
jpdeplaix has quit [*.net *.split]
NoNNaN has quit [*.net *.split]
axiles has quit [*.net *.split]
Kakadu has quit [*.net *.split]
rwmjones has quit [*.net *.split]
ggole has quit [*.net *.split]
yastero has quit [*.net *.split]
Fullma has quit [*.net *.split]
wwilly has quit [*.net *.split]
mfp has quit [*.net *.split]
penryu has quit [*.net *.split]
_tca has quit [*.net *.split]
martintrojer has quit [*.net *.split]
rks` has quit [*.net *.split]
cthuluh has quit [*.net *.split]
gargawel has quit [*.net *.split]
willb1 has quit [*.net *.split]
Khady has quit [*.net *.split]
rgrinberg has quit [*.net *.split]
ggherdov_ has quit [*.net *.split]
thorsten` has quit [*.net *.split]
fds has quit [*.net *.split]
teiresias has quit [*.net *.split]
caligula has quit [*.net *.split]
passiveobserver has quit [*.net *.split]
bartbes has quit [*.net *.split]
jzelinskie has quit [*.net *.split]
strmpnk has quit [*.net *.split]
osnr has quit [*.net *.split]
gustav___ has quit [*.net *.split]
tizoc has quit [*.net *.split]
ski has quit [*.net *.split]
adrien has quit [*.net *.split]
pollux has quit [*.net *.split]
Anarchos has quit [*.net *.split]
manizzle has quit [*.net *.split]
srcerer has quit [*.net *.split]
waneck has quit [*.net *.split]
siddharthv_away has quit [*.net *.split]
pdewacht has quit [*.net *.split]
mbac_ has quit [*.net *.split]
dinosaure has quit [*.net *.split]
The_third_man has quit [*.net *.split]
marky has quit [*.net *.split]
zpe has quit [*.net *.split]
philtor has quit [*.net *.split]
rand000 has quit [*.net *.split]
ousado has quit [*.net *.split]
puzza007____ has quit [*.net *.split]
clog has quit [*.net *.split]
ruzu has quit [*.net *.split]
finnrobi has quit [*.net *.split]
igitoor has quit [*.net *.split]
inr has quit [*.net *.split]
jonludlam has quit [*.net *.split]
ohama has quit [*.net *.split]
shalicke has quit [*.net *.split]
dlat has quit [*.net *.split]
xaimus has quit [*.net *.split]
BiDOrD has quit [*.net *.split]
def-lkb has quit [*.net *.split]
Cypi has quit [*.net *.split]
hnrgrgr has quit [*.net *.split]
sgray10 has quit [*.net *.split]
chris2 has quit [*.net *.split]
nk0 has quit [*.net *.split]
hyPiRion has quit [*.net *.split]
smiler has quit [*.net *.split]
contempt has quit [*.net *.split]
tnguyen has quit [*.net *.split]
lostcuaz has quit [*.net *.split]
ebzzry has quit [*.net *.split]
gasche has quit [*.net *.split]
acieroid has quit [*.net *.split]
amiller has quit [*.net *.split]
LU324 has quit [*.net *.split]
bacam has quit [*.net *.split]
testcocoon has quit [*.net *.split]
msch has quit [*.net *.split]
kerneis has quit [*.net *.split]
patronus has quit [*.net *.split]
yetanotherion has quit [*.net *.split]
petterw has quit [*.net *.split]
yroeht2 has quit [*.net *.split]
macron has quit [*.net *.split]
jlouis has quit [*.net *.split]
orbitz has quit [*.net *.split]
pippijn has quit [*.net *.split]
Drup has quit [*.net *.split]
aggelos has quit [*.net *.split]
seliopou has quit [*.net *.split]
tane has quit [*.net *.split]
Nuki has quit [*.net *.split]
pyon has quit [*.net *.split]
Nahra has quit [*.net *.split]
S11001001 has quit [*.net *.split]
jave_ has quit [*.net *.split]
IbnFirnas has quit [*.net *.split]
Axman6 has quit [*.net *.split]
_whitelogger has joined #ocaml
andreypopp has joined #ocaml
maattdd has quit [Ping timeout: 258 seconds]
esden has joined #ocaml
tlockney_away is now known as tlockney
shinnya has joined #ocaml
tobiasBora has joined #ocaml
tobiasBora has quit [Client Quit]
Kakadu has quit [Quit: Konversation terminated!]
zpe has quit [Remote host closed the connection]
zpe has joined #ocaml
aqz has quit [Ping timeout: 264 seconds]
zpe has quit [Ping timeout: 265 seconds]
ggole has quit []
philtor has quit [Remote host closed the connection]
maattdd has joined #ocaml
tlockney is now known as tlockney_away
maattdd has quit [Ping timeout: 264 seconds]
tane has quit [Quit: Verlassend]
lostcuaz has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
lopex has quit [Read error: Connection reset by peer]
lopex has joined #ocaml
Eyyub has joined #ocaml
zpe has joined #ocaml
malo has joined #ocaml
SHODAN has quit [Quit: No Ping reply in 180 seconds.]
SHODAN has joined #ocaml
tlockney_away is now known as tlockney
zpe has quit [Ping timeout: 250 seconds]
jao has joined #ocaml
jao has quit [Changing host]
jao has joined #ocaml
tlockney is now known as tlockney_away
maattdd has joined #ocaml
maattdd has quit [Ping timeout: 240 seconds]
axiles has quit [Remote host closed the connection]
Anarchos has quit [Quit: Vision[0.9.7-H-20140108]: i've been blurred!]
claudiuc has joined #ocaml
lordkryss_ has quit [Quit: Connection closed for inactivity]
zpe has joined #ocaml
eizo has quit [Ping timeout: 240 seconds]
zpe has quit [Ping timeout: 252 seconds]
ikaros has joined #ocaml
darkf has joined #ocaml
maattdd has joined #ocaml
nikki93 has quit [Remote host closed the connection]
maattdd has quit [Ping timeout: 255 seconds]
madroach has quit [Ping timeout: 252 seconds]
Simn has quit [Quit: Leaving]
madroach has joined #ocaml
nikki93 has joined #ocaml
NoNNaN has quit [Remote host closed the connection]
NoNNaN has joined #ocaml
nikki93 has quit [Remote host closed the connection]
eikke__ has joined #ocaml
nikki93 has joined #ocaml