Berk Özkütük

Results 10 issues of Berk Özkütük

I am trying to run the example as explained in the project's landing page. However, the triangle is not displayed: ![image](https://user-images.githubusercontent.com/5948762/160304982-bc194028-1dd1-4145-add5-c7542f8b7da8.png) Corresponding terminal output: ```bash $ zig build run-example found...

driver-os-issue

```bash $ spago init $ spago -x .\spago.dhall build spago.exe: Error: Invalid input (input):1:4: | 1 | ./.\spago.dhall | ^ unexpected '\' expecting "", "", "", "", '/', ->, //,...

bug

Build of the documentation fails with the message provided in the "Actual behaviour" section. It fails regardless of the method used for building the documentation (i.e. both with `nix build...

type: bug
os: nixos
documentation

#### Minimal way to reproduce ```bash $ cabal run hs-jsonnet -- -e '[x for x in [1,2,3] if x > 1 if x < 3]' 1:30: | 1 | [x...

bug
help wanted

`tasty-hspec` removed the re-export of `Test.Hspec` with version 1.1.7, which made the test suite fail to compile. This commit adds `hspec` as a test dependency and adds explicit imports from...

This PR overhauls the entire project so that it compiles with modern GHC versions. Most notable changes are: - Migration from `haskell-src-exts` to `ghc-lib-parser` (Thereby supporting up to GHC 9.10)...

I have a use case where I need access to the header of the read CSV file, so I have added the following variant to my local fork: ```haskell fromNamedCsvWithHeader...

Supersedes #393. In addition to the work done in the original PR, this one: - does not rename the existing `failing`-family of optics, and instead uses `disjoin` as the name...

Recently I needed a way to find the index of the maximum element in a list, and I was surprised that there was not an indexed counterpart to `maximumOf`. I...