Haudegen has quit [Read error: Connection reset by peer]
Haudegen has joined #ocaml
wingsorc has quit [Quit: Leaving]
jlrnick has joined #ocaml
<d_bot>
<romachkuna> this returns list (at n=5) = [([5], [6; 7; 8; 9; 10])] can someone tell how do i make it return [([1;2;3;4;5], [6; 7; 8; 9; 10])] i cant figure out how do i store the previous values
dextaa has quit [Remote host closed the connection]
<d_bot>
<octachron> You should avoid calling `List.length` inside the recursive function: you are traversing the whole list as each iteration.
<d_bot>
<octachron> The test in the `h::t` is unneeded.
<d_bot>
<octachron> It will be simpler to focus on how to add `h` to the result of `split_helper (n-1) t`.
dextaa has joined #ocaml
dextaa has quit [Remote host closed the connection]
gentauro has quit [Read error: Connection reset by peer]
gentauro has joined #ocaml
horninghack has quit [Read error: Connection reset by peer]
horninghack has joined #ocaml
azimut has quit [Ping timeout: 240 seconds]
kurfen_ has quit [Ping timeout: 252 seconds]
kurfen has joined #ocaml
azimut has joined #ocaml
mro has joined #ocaml
dextaa has joined #ocaml
zebrag has joined #ocaml
mro has quit [Remote host closed the connection]
mro has joined #ocaml
mro has quit [Remote host closed the connection]
horninghack has quit [Read error: Connection reset by peer]
horninghack has joined #ocaml
mro has joined #ocaml
<d_bot>
<AZAH> Hi Guys, question about this discord server here. Sometimes it does not load for me, is someone facing smiliar issues?
<Corbin>
Yes.
<d_bot>
<AZAH> Hmm so the Bot is facing similiar issues, interesting 😅
<companion_cube>
the bot is the bridge to IRC :)
<d_bot>
<NULL> What do you mean "does not load" ? It loads for as long as any other server for me
motherfsck has joined #ocaml
<d_bot>
<AZAH> It does not load the messages sometime, don't know man, have the problem just with 2-3 server. All the other work fine
mro has quit [Remote host closed the connection]
<d_bot>
<AZAH> I guess just the support can help, thanks anyway
mro has joined #ocaml
<Corbin>
Discord "servers" are not discrete or disconnected from each other; they're facets of a single chat service.
<Corbin>
It's entirely possible that Discord isn't very reliable.
mro has quit [Remote host closed the connection]
mro has joined #ocaml
<d_bot>
<VPhantom> It has its moments.
mro has quit [Remote host closed the connection]
gravicappa has quit [Ping timeout: 246 seconds]
<companion_cube>
Corbin: it's probably as reliable as IRC, on average
mro has joined #ocaml
mro has quit [Remote host closed the connection]
horninghack has quit [Read error: Connection reset by peer]
horninghack has joined #ocaml
mro has joined #ocaml
mro has quit [Remote host closed the connection]
chrisz has quit [Ping timeout: 272 seconds]
chrisz has joined #ocaml
mro has joined #ocaml
mro has quit [Remote host closed the connection]
mro has joined #ocaml
mro has quit [Remote host closed the connection]
mro has joined #ocaml
waleee has joined #ocaml
bobo has joined #ocaml
mclemenceau has joined #ocaml
spip has quit [Ping timeout: 268 seconds]
mro has quit [Remote host closed the connection]
jlrnick has quit [Ping timeout: 248 seconds]
mclemenceau has left #ocaml [WeeChat 3.5]
kaph_ has joined #ocaml
<sleepydog>
come to IRC :)
gravicappa has joined #ocaml
mro has joined #ocaml
mro has quit [Remote host closed the connection]
rgrinberg has joined #ocaml
horninghack has quit [Read error: Connection reset by peer]
horninghack has joined #ocaml
horninghack has quit [Ping timeout: 260 seconds]
mbuf has quit [Quit: Leaving]
<d_bot>
<Ambika E.> gm
xgqt has quit [Ping timeout: 246 seconds]
xgqt has joined #ocaml
Anarchos has quit [Ping timeout: 248 seconds]
Anarchos has joined #ocaml
rgrinberg has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jlrnick has joined #ocaml
vicfred has joined #ocaml
vicfred has quit [Remote host closed the connection]
vicfred has joined #ocaml
gravicappa has quit [Ping timeout: 248 seconds]
olle has quit [Ping timeout: 268 seconds]
mro has joined #ocaml
mro has quit [Remote host closed the connection]
mro has joined #ocaml
rgrinberg has joined #ocaml
mro has quit [Remote host closed the connection]
spip has joined #ocaml
bobo has quit [Ping timeout: 246 seconds]
jlrnick has quit [Ping timeout: 248 seconds]
mro has joined #ocaml
dextaa7 has joined #ocaml
dextaa has quit [Ping timeout: 248 seconds]
dextaa7 is now known as dextaa
<d_bot>
<raedr7n> Hey, how do i turn "x is not used" sorts of errors into warnings so that I can compile my code? I know it's not used. I want it like that; I'll use it soon, trust me.
<d_bot>
<EduardoRFS> I would say IRC is more reliable than discord in general, Discord up time is just not great
rgrinberg has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Anarchos has quit [Quit: Vision[]: i've been blurred!]
<d_bot>
<AZAH> can you share a link to it?
<d_bot>
<RegularSpatula> Anyone else having “fun” upgrading JS libs to v0.15
bartholin has quit [Ping timeout: 260 seconds]
olle has joined #ocaml
bartholin has joined #ocaml
rgrinberg has joined #ocaml
dextaa has quit [Read error: Connection reset by peer]
dextaa has joined #ocaml
<d_bot>
<Alistair> I'm getting a bug where running `dune runtest --auto-promote` with ppx-expect tests isn't promoting the correcting output, despite it generating the correct `.corrected` files in the `_build` directory
<d_bot>
<Alistair> Any suggestions?
Serpent7776 has quit [Quit: leaving]
mro has quit [Quit: Leaving...]
wyrd has quit [Ping timeout: 240 seconds]
wingsorc has joined #ocaml
wyrd has joined #ocaml
rgrinberg has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<d_bot>
<leviroth> @raedr7n you can also put an underscore at the start of an unused variable to suppress the warning
<d_bot>
<leviroth> @RegularSpatula I did that recently. Encountered a few papercuts but nothing terrible for my modest codebase. Feel free to ask if you’re stuck on anything I might know about.
<d_bot>
<raedr7n> It's about unused type constructors, in those case.
<d_bot>
<leviroth> Ahhh, i see
<d_bot>
<raedr7n> I just set it to run in release mode, which I think is a fine solution since the warning source won't be around very long.
<d_bot>
<RegularSpatula> leviroth: thanks...it's not too bad honestly...switching from core_kernel quickcheck to base_quickcheck took the most time so far
<d_bot>
<RegularSpatula> i did somehow mess up my vscode ...but that's probably another issue
wingsorc__ has joined #ocaml
wingsorc has quit [Read error: Connection reset by peer]