adrien changed the topic of #ocaml to: Discussions about the OCaml programming language | http://www.ocaml.org | OCaml 4.09 release notes: https://caml.inria.fr/pub/distrib/ocaml-4.09/notes/Changes | Try OCaml in your browser: http://try.ocamlpro.com | Public channel logs at http://irclog.whitequark.org/ocaml
rosterok has quit [Quit: Connection closed for inactivity]
copy has quit [Read error: Connection reset by peer]
copy has joined #ocaml
Haudegen has quit [Ping timeout: 240 seconds]
Haudegen has joined #ocaml
Haudegen has quit [Ping timeout: 256 seconds]
amiloradovsky has quit [Ping timeout: 265 seconds]
ygrek_ has joined #ocaml
ygrek_ has quit [Remote host closed the connection]
ygrek_ has joined #ocaml
mfp has quit [Ping timeout: 256 seconds]
Guest52650 has joined #ocaml
Guest52650 has quit [Remote host closed the connection]
ygrek_ has quit [Ping timeout: 256 seconds]
mbuf has joined #ocaml
delysin has quit [Ping timeout: 265 seconds]
delysin has joined #ocaml
TC01 has quit [Ping timeout: 256 seconds]
TC01 has joined #ocaml
noddy has quit [Ping timeout: 250 seconds]
narimiran has joined #ocaml
_whitelogger has joined #ocaml
<Armael> you have a trailing semicolon at the end of the first function
<lubegasimon[m]> oh thanks Armael , the compile is not informative though
<lubegasimon[m]> * oh thanks Armael , the compiler is not informative though
chripell has joined #ocaml
madroach has quit [Read error: Connection reset by peer]
madroach has joined #ocaml
mbuf has quit [Quit: Leaving]
Haudegen has joined #ocaml
amiloradovsky has joined #ocaml
webshinra has quit [Remote host closed the connection]
<flux1> btw, an automatically indenting editor (or ocamlformat) would have likely pointed it out
<flux1> (by indenting the second let)
webshinra has joined #ocaml
Anarchos has joined #ocaml
maya11 has joined #ocaml
Exagone313 has quit [Ping timeout: 265 seconds]
Exagone313 has joined #ocaml
mfp has joined #ocaml
Exagone313 has quit [Quit: see ya!]
Exagone313 has joined #ocaml
<Leonidas> Anarchos: yes, but that shows progress and then you can ping some people to get it reviewed (so they won't say "fix the issues that were pointed out" first)
<Leonidas> any caml-community maintainer in here?
<Anarchos> Leonidas i don't understand the details of what you said
nullcone has quit [Quit: Connection closed for inactivity]
<Armael> Anarchos: you have to rebase your PR on top of master
<Armael> trunk*
<Anarchos> Armael i never do a rebase, how do i achieve that ?
<Anarchos> Armael does it explain how to rebase a PR on github ?
<Armael> once you have rebased your branch locally, you just have to "git push --force"
<Armael> there isn't anything github specific there
<Anarchos> Armael yes, but my PR was for the 4.10.0 branch
<Armael> you should base your PR on top of trunk
<Anarchos> Armael ok
<Anarchos> so i need do to another PR ?
<Armael> ah hmm, I think in github you can change the destination branch of a PR
<Anarchos> but how to delete one of the two commits in my PR , since it become irrelevant with the fix of Xavier Leroy ?
<Armael> delete it locally with "git rebase -i"
<Armael> then git push --force the branch
<Anarchos> ok thanks
Ekho has quit [Quit: An alternate universe was just created where I didn't leave. But here, I left you. I'm sorry.]
Ekho has joined #ocaml
<Anarchos> Armael git rebase -i : Pas d'information de suivi distant pour la branche actuelle.
CcxWrk has quit [Quit: ZNC 1.7.4 - https://znc.in]
CcxWrk has joined #ocaml
maya11 has left #ocaml [#ocaml]
<ebb> I think that translates as "this branch has no remote tracking"
<Anarchos> ebb yes i think so.
<Anarchos> anyway i will just switch my local repo to trunk, remade my modifications and commit/push to my github repo, then redo my pull request
<Anarchos> cause with git everything go in hell once you made the littlest error in your command line
<hannes> Anarchos: another way is: git checkout trunk ; git pull -- now your trunk is up to date with the origin.
<hannes> Anarchos: git branch -m 4.10.0-Haiku old-haiku ; git checkout -b 4.10.0-Haiku ; git cherry-pick <commit-id of the one commit you like> ; git push -f mine
<hannes> this renames your haiku branch locally, creates a new one, picks the one commit you like to have on that branch on top of trunk ; and force-pushes (to mine -- which should be the name of the remote refering to your github ocaml repo)
mbuf has joined #ocaml
tane has joined #ocaml
* lubegasimon[m] uploaded an image: Screenshot from 2020-04-22 15-02-26.png (124KB) < https://matrix.org/_matrix/media/r0/download/matrix.org/egGfDswEDLQiJcHsFYmMxkvw >
<lubegasimon[m]> Hello everyone, whenever I make changes to this file, the errors rise, and when I reload window, they varnish. This started after I installed `merlin`, how can I get rid of them ?
<lubegasimon[m]> * ^^ Hello everyone, whenever I make changes to this file, the errors rise, and when I reload window, they varnish. This started after I installed `merlin`, how can I get rid of them ?
* lubegasimon[m] uploaded an image: Screenshot from 2020-04-22 15-02-26.png (124KB) < https://matrix.org/_matrix/media/r0/download/matrix.org/DLcpmtrkgOOOdVWskTXtjywr >
<lubegasimon[m]> * Hello everyone, whenever I make changes to this file, the errors rise, and when I reload window, they varnish. This started after I installed `merlin`, how can I get rid of them ?
gahr has quit [Quit: leaving]
<Anarchos> hannes i have conflicts cause configure is generated by my modification in configure.ac, and this conflicts with configure in the official repo
gahr has joined #ocaml
spew has joined #ocaml
Anarchos has quit [Quit: Vision[0.10.3]: i've been blurred!]
raver has quit [Read error: Connection reset by peer]
Haudegen has quit [Quit: Bin weg.]
TheLemonMan has joined #ocaml
jbrown has quit [Ping timeout: 246 seconds]
amiloradovsky has quit [Remote host closed the connection]
amiloradovsky has joined #ocaml
jbrown has joined #ocaml
mbuf has quit [Quit: Leaving]
mbuf has joined #ocaml
Anarchos has joined #ocaml
<Anarchos> hannes thanks to your help, i did the pull request 9486. Anyway i went too fast and i want to modify the commit with a newer version of my configure file....
zolk3ri has quit [Ping timeout: 240 seconds]
andreas303 has quit [Ping timeout: 240 seconds]
nicoo has quit [Ping timeout: 240 seconds]
cantstanya has quit [Ping timeout: 240 seconds]
Haudegen has joined #ocaml
nicoo has joined #ocaml
cantstanya has joined #ocaml
andreas303 has joined #ocaml
ygrek_ has joined #ocaml
Anarchos has quit [Quit: Vision[0.10.3]: i've been blurred!]
Anarchos has joined #ocaml
<lubegasimon[m]> hey buddies, just need pieces of your advice, am a newbie to Ocaml, what could be an effective to learn Ocaml, is it learning a particular section and then hunting for problems about that particular subject or going through resorce first, i.e https://www.cs.cornell.edu/courses/cs3110/2019sp/textbook/, and then solve problems
raver has joined #ocaml
<hannes> lubegasimon[m]: I like the text book you linked to, and find it worth going through it. I can as well recommend the "OCaml from the very beginning" (the first few chapters are online) http://ocaml-book.com/
<hannes> and there's "real world ocaml" http://dev.realworldocaml.org/ as well, which describes a lot of technical detail.
Haudegen has quit [Quit: Bin weg.]
<Anarchos> for adavance use, there is also
<Anarchos> "Modern Compiler Implementation in ML" by Andrew W. Appel
noddy has joined #ocaml
jbrown has quit [Ping timeout: 272 seconds]
jbrown has joined #ocaml
Haudegen has joined #ocaml
mbuf has quit [Quit: Leaving]
TakinOver has quit [Remote host closed the connection]
Anarchos has quit [Quit: Vision[0.10.3]: i've been blurred!]
zolk3ri has joined #ocaml
nullcone has joined #ocaml
undu[m] has joined #ocaml
chripell has quit [Ping timeout: 256 seconds]
muskan has joined #ocaml
muskan has quit [Ping timeout: 240 seconds]
muskan has joined #ocaml
Anarchos has joined #ocaml
TheLemonMan has quit [Quit: "It's now safe to turn off your computer."]
leah2 has quit [Ping timeout: 265 seconds]
leah2 has joined #ocaml
<Anarchos> I installed merlin, but no :MerlinXXXX commands show up in vim
<Anarchos> how to verify what i missed ?
<reynir> Anarchos: I can recommend using opam user-setup install. That sets up vim for using merlin etc
Hrundi_V_Bakshi has joined #ocaml
<Anarchos> reynir my vimrc is not in a standard path...
narimiran has quit [Ping timeout: 240 seconds]
<reynir> hm okay
<Anarchos> i wonder what is responsible to launch ocamlmerlin.
<companion_cube> your editor
<Anarchos> ok
Haudegen has quit [Quit: No Ping reply in 180 seconds.]
Anarchos has quit [Quit: Vision[0.10.3]: i've been blurred!]
Haudegen has joined #ocaml
Anarchos has joined #ocaml
Serpent7776 has quit [Quit: leaving]
srax has quit [Ping timeout: 265 seconds]
nullcone has quit [Quit: Connection closed for inactivity]
srax has joined #ocaml
Anarchos has quit [Quit: Vision[0.10.3]: i've been blurred!]
Anarchos has joined #ocaml
tane has quit [Quit: Leaving]
CcxWrk has quit [Ping timeout: 256 seconds]
Anarchos has quit [Remote host closed the connection]
Anarchos has joined #ocaml
Anarchos has quit [Remote host closed the connection]
Anarchos has joined #ocaml
Hrundi_V_Bakshi has quit [Ping timeout: 260 seconds]
Haudegen has quit [Ping timeout: 260 seconds]
webshinra has quit [Remote host closed the connection]
webshinra has joined #ocaml
ygrek_ has quit [Ping timeout: 256 seconds]
Anarchos has quit [Ping timeout: 256 seconds]
Anarchos has joined #ocaml
pierpa has joined #ocaml
Anarchos has quit [Ping timeout: 256 seconds]
spew has quit [Quit: Connection closed for inactivity]