RX14 changed the topic of #crystal-lang to: The Crystal programming language | http://crystal-lang.org | Crystal 0.27.0 | Fund Crystal's development: http://is.gd/X7PRtI | GH: https://github.com/crystal-lang/crystal | Docs: http://crystal-lang.org/docs/ | API: http://crystal-lang.org/api/ | Gitter: https://gitter.im/crystal-lang/crystal
jhass has joined #crystal-lang
blove has joined #crystal-lang
kandayo has joined #crystal-lang
daemonwrangler has quit [Ping timeout: 246 seconds]
<FromGitter> <raydf> @ljuti maybe https://github.com/soveran/toro
DTZUZO has quit [Ping timeout: 268 seconds]
<FromGitter> <proyb6> Who is interested in building gRPC shard?
<FromGitter> <Blacksmoke16> ^ he is apparently :p
<FromGitter> <aaneto> Such a nice guy
rohitpaulk has joined #crystal-lang
<FromGitter> <Blacksmoke16> is there a way to prevent an ivar from displaying on `pp`
blove has quit [Quit: WeeChat 2.3]
blove has joined #crystal-lang
rohitpaulk has quit [Ping timeout: 268 seconds]
<FromGitter> <kimvex> hello, I have problems connecting mysql with the crystal-mysql shard, but it's mysql version 8 ⏎ ⏎ ```code paste, see link``` ⏎ ⏎ Has anyone had the same problem? [https://gitter.im/crystal-lang/crystal?at=5bf23bde4bad337eb900476c]
<FromGitter> <kimvex> this is the code ⏎ ⏎ ```code paste, see link``` [https://gitter.im/crystal-lang/crystal?at=5bf23c64a47c6c5d3b0a5b1b]
rohitpaulk has joined #crystal-lang
<FromGitter> <proyb6> Yeah
rohitpaulk has quit [Ping timeout: 244 seconds]
teardown has quit [Ping timeout: 246 seconds]
rohitpaulk has joined #crystal-lang
marmotini_ has joined #crystal-lang
marmotini_ has quit [Remote host closed the connection]
marmotini_ has joined #crystal-lang
marmotini_ has quit [Remote host closed the connection]
marmotini_ has joined #crystal-lang
marmotini_ has quit [Max SendQ exceeded]
marmotini_ has joined #crystal-lang
marmotini_ has quit [Remote host closed the connection]
marmotini_ has joined #crystal-lang
marmotini_ has quit [Remote host closed the connection]
marmotini_ has joined #crystal-lang
marmotini_ has quit [Remote host closed the connection]
marmotini_ has joined #crystal-lang
marmotini_ has quit [Remote host closed the connection]
marmotini_ has joined #crystal-lang
DTZUZO has joined #crystal-lang
marmotini_ has quit [Remote host closed the connection]
marmotini_ has joined #crystal-lang
marmotini_ has quit [Remote host closed the connection]
marmotini_ has joined #crystal-lang
marmotini_ has quit [Remote host closed the connection]
marmotini_ has joined #crystal-lang
marmotini_ has quit [Remote host closed the connection]
marmotini_ has joined #crystal-lang
marmotini_ has quit [Quit: Leaving]
marmotini_ has joined #crystal-lang
Groogy has quit [Ping timeout: 268 seconds]
rohitpaulk has quit [Ping timeout: 244 seconds]
ashirase has quit [Ping timeout: 240 seconds]
ashirase has joined #crystal-lang
rohitpaulk has joined #crystal-lang
atna has quit [Quit: Connection closed for inactivity]
rohitpaulk has quit [Ping timeout: 252 seconds]
marmotini_ has quit [Ping timeout: 268 seconds]
rohitpaulk has joined #crystal-lang
marmotini_ has joined #crystal-lang
rohitpaulk has quit [Ping timeout: 245 seconds]
marmotini_ has quit [Remote host closed the connection]
marmotini_ has joined #crystal-lang
marmotini_ has quit [Ping timeout: 268 seconds]
<FromGitter> <Blacksmoke16> @kimvex thats a known issue with mysql 8
rohitpaulk has joined #crystal-lang
rohitpaulk has quit [Ping timeout: 268 seconds]
rohitpaulk has joined #crystal-lang
rohitpaulk has quit [Ping timeout: 268 seconds]
rohitpaulk has joined #crystal-lang
rohitpaulk has quit [Ping timeout: 244 seconds]
daemonwrangler has joined #crystal-lang
<jokke> is there a way to use StaticFileHandler so that it will _not_ have directory listing?
<FromGitter> <r00ster91> `HTTP::StaticFileHandler.new(..., directory_listing: false)`
akaiiro has joined #crystal-lang
<jokke> lol
<jokke> i could've just read the docs. sorry for that.
<jokke> and thank you
<FromGitter> <r00ster91> you're welcome
akaiiro has quit [Remote host closed the connection]
akaiiro has joined #crystal-lang
<FromGitter> <kinxer> A day late, but @j8r: https://carc.in/#/r/5kh3
<FromGitter> <j8r> @kinxer thank you very much! I've replaced some of my checks with you solution
<FromGitter> <j8r> @kinxer How can I do with an Eum?
<FromGitter> <j8r> https://carc.in/#/r/5kii
jemc has joined #crystal-lang
<FromGitter> <bew> @j8r `A::Test` is not a class, it's an instance of `A`
non-aristotelian has joined #crystal-lang
<FromGitter> <j8r> not possible to mix this both type with a `forall` then :/
<FromGitter> <bew> Yeah.. forall is for types only
oprypin has quit [Disconnected by services]
oprypin has joined #crystal-lang
<FromGitter> <bararchy> Seems like `Bigint::MIN` and `Bigin::MAX` are missing?
<oprypin> bararchy, lol the limits are literally missing cuz it's unlimited
<FromGitter> <bararchy> XD
<FromGitter> <bararchy> Makes sense hahah
<jokke> any of you experience a really long delay when killing dockerized crystal apps?
<jokke> up to not being able to kill them at all
jemc has quit [Ping timeout: 246 seconds]
<FromGitter> <vlazar> what is the normal delay? I remember it taking several seconds ocasionally
jemc has joined #crystal-lang
<jokke> well, yeah closer to 10 than to 5 i'd say
<jokke> but right now it won't terminate at all
<jokke> i linked statically and run it from a scratch image
<FromGitter> <dscottboggs_gitlab> are you talking about `docker kill` or `docker stop`
<jokke> basically just hitting ctrl-c after starting with docker run
<FromGitter> <dscottboggs_gitlab> yeah that's stop
<FromGitter> <dscottboggs_gitlab> I've run into the same thing
<jokke> weird huh
<FromGitter> <dscottboggs_gitlab> `stop` uses SIGTERM ⏎ `kill` uses SIGKILL ⏎ if that helps any?
<jokke> does docker maybe send some signal that isn't handled by crystal by default?
<jokke> ok
<jokke> hm SIGTERM should be handled...
<jokke> i try trapping
<jokke> hm no, trapping Signal::TERM doesn't help
<FromGitter> <dscottboggs_gitlab> That's weird
<jokke> oh
<jokke> interesting
<jokke> docker stop <container-id> works
<jokke> but ctrl+c doesn't...
<FromGitter> <dscottboggs_gitlab> whaat
<FromGitter> <bararchy> You can never trap SIGTERM
<FromGitter> <bararchy> as in `-15`, it's a super signal that kills all
<FromGitter> <bararchy> `ctrl + c` is `SIGHUP`, that's `-2`, much weaker then `-9` (SIGKILL)
ska has joined #crystal-lang
sevensidedmarble has joined #crystal-lang
pabs has joined #crystal-lang
<FromGitter> <wontruefree> @bew sorry I am late but I liked that talk it was awesome
jemc has quit [Ping timeout: 245 seconds]
jemc has joined #crystal-lang
moei has quit [Quit: Leaving...]
jemc_ has joined #crystal-lang
jokke2 has joined #crystal-lang
DTZUZO_ has joined #crystal-lang
DTZUZO has quit [Ping timeout: 268 seconds]
jemc has quit [Ping timeout: 268 seconds]
ashirase has quit [Ping timeout: 268 seconds]
johndescs has quit [Ping timeout: 268 seconds]
tilpner has quit [Ping timeout: 268 seconds]
jokke has quit [Ping timeout: 268 seconds]
Liothen has quit [Ping timeout: 268 seconds]
johndescs has joined #crystal-lang
tilpner has joined #crystal-lang
ashirase has joined #crystal-lang
jemc_ has quit [Ping timeout: 245 seconds]
DTZUZO_ has quit [Quit: WeeChat 2.0]