Ary Borenszweig
Ary Borenszweig
``` $ brew install mint-lang ==> Fetching mint-lang/mint-lang/mint-lang ==> Downloading https://github.com/mint-lang/mint/releases/download/0.17.0/mint-0.17.0-osx ==> Downloading from https://objects.githubusercontent.com/github-production-release-asset-2e65b ######################################################################################### 100.0% Error: mint-lang: SHA256 mismatch Expected: ebc67f17eeca18cf8187791ad6b496610064b522eec97bc42fbc59266c5d1761 Actual: 017468e8a34e68fc5eb011a09fb6bc516aab2e738ed0c11080762377faab9fb9 File: /Users/aryborenszweig/Library/Caches/Homebrew/downloads/0c379ea78842c93d69a2c6e690cd35c6cfa0865e254484192c93656d6f1568ff--mint-0.17.0-osx To retry an...
Hi! This PR is not meant to be merged. Instead, I'd like to open the discussion to find possible solutions to #257 Debugging the code, not fully looking at it,...
## Description When running `ghci` and passing `--test something`, if you press ctrl+C quickly twice then a dangling `gch` process will remain. The `ghc` process consumes 100% of the CPU....
I saw [this thread](https://forum.crystal-lang.org/t/performance-issues-with-the-json-parser/6678), so... Two things here: 1. Read string/IO byte per byte instead of char per char 2. When trying to parse a string in the IO case,...
Hi! This feature is super cool! Would you care sending a PR to [shards](https://github.com/crystal-lang/shards) so we can integrate it there and everyone can benefit from it without having to install...
The autocomplete data isn't escaped for being presented in HTML. For example try using `'alert("hello")'` as the text of an item, and you'll see an alert pop up when showing...
It would be really nice if we could automatically generate binaries (tar-gzipped) for these platforms and make them available in the release page after each release. In fact, given that...
Right now it doesn't because the `etc` directory is not in the generated tar.gz
Given: ``` crystal class Foo end class Bar < Foo end class Baz < Foo end ``` We have: ``` crystal var = rand < 0.5 ? Bar.new : Baz.new...
Hi! Really nice project. It helps to decide what to use. Just a note: when benchmark iteration times are around 2~3 nanoseconds then there's probably really no difference at all....