Creatornator has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Creatornator has joined #crystal-lang
<FromGitter>
<Timbus> Oh, okay, so Crystal somehow messes with handles before I even open them in kernel.cr .. something in __crystal_main
<FromGitter>
<Timbus> wow what a rabbithole
woodruffw has left #crystal-lang ["And then he took off."]
woodruffw has joined #crystal-lang
<FromGitter>
<Timbus> Ugh, no, I'm just getting buried in all my small test cases.
abm has quit [Quit: Leaving]
Raimondii has joined #crystal-lang
Raimondi has quit [Ping timeout: 244 seconds]
Raimondii is now known as Raimondi
Creatornator has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
_whitelogger has joined #crystal-lang
Creatornator has joined #crystal-lang
Creatornator has quit [Client Quit]
alex`` has joined #crystal-lang
DTZUZO has joined #crystal-lang
DTZUZO has quit [Ping timeout: 240 seconds]
DTZUZO has joined #crystal-lang
<FromGitter>
<bararchy> Hi @bcardiff how goes the build?
<FromGitter>
<bararchy> Or more correctly the signing of binaries
DTZUZO has quit [Ping timeout: 272 seconds]
ashirase has quit [Ping timeout: 248 seconds]
ashirase has joined #crystal-lang
<RX14>
nobody wants to release on friday
<RX14>
they're probably just signed waiting to go
DTZUZO has joined #crystal-lang
<FromGitter>
<codenoid> `Error in csv_parser.cr:5: undefined method 'find_index' for Array(String)`
<FromGitter>
<codenoid> it's work on ruby
<FromGitter>
<codenoid> idk
<FromGitter>
<cpunion> Hi, is there a way to compare crystal version in macro? I want `{% if Crystal::VERSION.split('.').map(&.to_i) < [0, 25, 0] %}`, it doesn’t work.
<FromGitter>
<PlayLights_twitter> Does anybody know if possible to skip a compile time error on Crystal? Its giving me an error because im using a method defined by a macro
Raimondii has joined #crystal-lang
<FromGitter>
<kaukas_gitlab> I am trying to use a single method to generate a hash out of two arrays choosing types "dynamically". Would anyone please be able to give hints? Here's a very simplified version: https://play.crystal-lang.org/#/r/4pqp
Raimondi has quit [Ping timeout: 272 seconds]
Raimondii is now known as Raimondi
<RX14>
@PlayLights_twitter a compile error means the compiler doesn't know what you mean so it can't continue
<FromGitter>
<PlayLights_twitter> @RX14 oh, ok, i will try to make it work differently then, thanks
<FromGitter>
<vegai> @kaukas_gitlab might be useful to know what you’re trying to accomplish there
<FromGitter>
<vegai> you want a hash whose keys and values are int32s or strings?
Creatornator has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Creatornator has joined #crystal-lang
<FromGitter>
<kaukas_gitlab> @vegai, I want to create a hash with types chosen dynamically. I am working with a DB that supports storing hashes, e.g. `Hash(Int32, String)` or some other combination. My crystal code needs to retrieve keys and values and create a hash out of them.
<FromGitter>
<kaukas_gitlab> The code that parses keys and values dispatches to the concrete sub-class at runtime which produce e.g. `Array(Int32)` or `Array(String)`. I need to merge two such outputs into a hash.
<FromGitter>
<talbergs> Anyone working on web assembly support for crystal?