Zac Nowicki

Results 101 comments of Zac Nowicki

> Interestingly, I can't seem to reproduce the original issue now. [This code snippet](https://github.com/crystal-lang/crystal/issues/10911#issuecomment-877163793) doesn't crash for me. I can still repro on 1.5: ``` Unhandled exception: BUG: 0 (Exception)...

I've enjoyed using heredocs in languages like Crystal: ```cr sql =

@gingerBill To be clear, I was not suggesting Odin implement heredocs like Crystal precisely as illustrated. I was suggesting that I would really like leading space to be trimmed in...

I assume you meant this as the example: ``` package main main :: proc() { ver_1 :: proc(a: $S, b: $T) where S != T {} ver_2 :: proc(a: $T,...

Sure. A disclaimer, I've cleaned the verbose-ness of this a bit but haven't pushed the code yet (learning how to use this lib and PG at the same time! :smile:...

Perhaps 0.22 then haha. again not at my home PC to check :( And okay. I'll try to do some more digging later.. :sweat: I'll also perhaps try running the...

Hey @imdrasil . The last time I worked on this I was trying to just run your existing specs for `jennifer.cr` to help narrow the issue, but I ran into...

Hey there! Sorry for the long delay :disappointed: I've managed to run the specs after some fiddling with permissions on the postgres side that weren't right. It almost seemed like...

So, I took a step back and tried to reproduce the issue using only `crystal-pg`: ```cr require "pg" puts "Opening connection" PG_DB = PG.connect("postgres://traikoa:traikoa@localhost") puts "Creating table" PG_DB.exec

I believe I did, and this threw other exceptions. Don't have access to them right this moment. It seems like the supported array decoded types are defined here: ```cr {%...