Konstantin A. Olkhovskiy

Results 179 comments of Konstantin A. Olkhovskiy

Of course it would be better to have opt-in linearity checking in OCaml type system and compiler. But compiler team is quite busy and won't have cycles to do this...

I love it! We currently publish packages to internal opam repository, which is just a git repo that points packages to, well, other git repos for actual sources with specific...

There is this file currently in the repo: https://github.com/Threagile/threagile/blob/master/pkg/risks/scripts/accidental-secret-leak.yaml, but looks like there is no documentation or json schema for that? We're also evaluating threagile for corporate environment, and have...

> I'm a little torn on this, mostly because I don't wanna steal anyone's thunder. As long as original copyright is retained, and licensing terms are met, I don't think...

> > > I'm a little torn on this, mostly because I don't wanna steal anyone's thunder. > > > > > > As long as original copyright is retained,...

In Golang functions are first class, it supports creating closures, and passing them as values, but Golang is statically typed, so this tagged lambda needs to be specialized for types...

@robz you want to look at this [announcement](https://discuss.ocaml.org/t/announcing-dune-deps-produces-a-project-centric-dependency-graph/5451), `dune-deps` might be helpful in building dune dependency tree.

@copy looks like just replacing ppx_core with ppxlib solves the issue. I've created a PR on this (it got linked in this thread), you can try it out. Works for...

One more user of `runtime::recover_handle` here. I'm trying to integrate async Rust with OCaml and here's the case when I need runtime handle out of thin air: ```rust #[ocaml::func] #[ocaml::sig("runtime...

> I am trying to get this solved for the next release which will support OCaml 5 and threads, but progress is slow because I am short on available time...