<Jenz>
Nvm, forgot the Signal#trap block was required to take an argument...
<FromGitter>
<Blacksmoke16> @vladfaust @rishavs where did you find that link?
<FromGitter>
<Blacksmoke16> @bew thanks :)
<FromGitter>
<Blacksmoke16> ah
<FromGitter>
<Blacksmoke16> ill make that a full url
<FromGitter>
<Blacksmoke16> was relative to the readme in github but that directory doesnt exist on GH pages
<FromGitter>
<Blacksmoke16> fixed, thanks
ua has quit [Ping timeout: 250 seconds]
Jenz has quit [Ping timeout: 250 seconds]
<FromGitter>
<j8r> How can I execute a command (`Process`) as an uid/gid?
ua has joined #crystal-lang
_whitelogger has joined #crystal-lang
<FromGitter>
<proyb6> Which signal does shutdown correctly and not close immediately? I don't see it waiting for ```sleep 3.seconds``` to countdown before it shutdown the program. ⏎ ⏎ ```code paste, see link``` [https://gitter.im/crystal-lang/crystal?at=5c5ae6347b68f941027ef844]
<FromGitter>
<bew> ah that's because of the `sleep` (without duration)
<FromGitter>
<bew> no it's completely normal, I never told it to exit the program
rohitpaulk has joined #crystal-lang
<FromGitter>
<bew> adding a `exit 1` at the end of the signal trap works as expected for me
<FromGitter>
<bew> but keep in mind that doing a sleep inside the trap handler will switch (resume) to another fiber while waiting for the N seconds you told it to wait, and it will 'eventually' come back to your trap fiber when the other fiber that was resumed waits
<FromGitter>
<talbergs> Hello, is there a way to invalidate ALL the cache made by `crystal run ./app.cr` ?
<FromGitter>
<talbergs> because, when I do refactoring- gradual compile sometimes messes up.
marmotini_ has joined #crystal-lang
<FromGitter>
<talbergs> Ok, nvm - missed a DOT[.] this time while "require"
<FromGitter>
<talbergs> :d
rohitpaulk has quit [Ping timeout: 240 seconds]
fanta7531 has joined #crystal-lang
marmotini_ has quit [Remote host closed the connection]
marmotini_ has joined #crystal-lang
marmotini_ has quit [Ping timeout: 245 seconds]
marmotini_ has joined #crystal-lang
marmotini_ has quit [Ping timeout: 246 seconds]
rohitpaulk has joined #crystal-lang
fanta7531 has quit [Quit: fanta7531]
Kero has joined #crystal-lang
rohitpaulk has quit [Ping timeout: 250 seconds]
<FromGitter>
<kingsleyh> @vladfaust crystal-rethinkdb is a fork of one project merged with another
<FromGitter>
<kingsleyh> I took the original cubos rethinkdb and added user authentication and made some fixes - unfortunately none of the other rethinkdb projects are being maintained
<FromGitter>
<vladfaust> You should mention the original author in the license
<FromGitter>
<vladfaust> If you have a substantial amount of their code
jemc has joined #crystal-lang
<livcd>
what happened to the immix gc ?
virkony has quit [Quit: re-boot trainings]
<FromGitter>
<kingsleyh> @vladfaust I mention them in the README etc but I'll add them to the license as well
<FromGitter>
<wcpines> is there a way to simply return an element using the crystal block shorthand?
<FromGitter>
<wcpines> Sort of like `something { |x| x} `
<FromGitter>
<Blacksmoke16> not sure what you mean?