<FromGitter>
<tenebrousedge> in case what you needed in your life was a song in Spanish about not forgetting the `WHERE` in a `DELETE FROM`: https://www.youtube.com/watch?v=i_cVJgIz_Cs
relyks has joined #crystal-lang
<FromGitter>
<jwoertink> 😂
<FromGitter>
<Blacksmoke16> @jwoertink just using brew should work
<FromGitter>
<jwoertink> I did `brew switch llvm 4.0.1` which seemed to re link that version. But that didn't update crystal
<FromGitter>
<Blacksmoke16> @nsuchy had this issue with asdf, uninstalling it from there and brew then reinstalling from brew fixed it iirc
<FromGitter>
<jwoertink> I'll try that out. Thanks!
laaron has quit [Remote host closed the connection]
laaron has joined #crystal-lang
laaron has quit [Remote host closed the connection]
laaron has joined #crystal-lang
laaron has quit [Remote host closed the connection]
ashirase has quit [Ping timeout: 248 seconds]
laaron has joined #crystal-lang
laaron has quit [Client Quit]
laaron has joined #crystal-lang
DTZUZO has joined #crystal-lang
laaron has quit [Remote host closed the connection]
laaron has joined #crystal-lang
DTZUZO has quit [Read error: Connection reset by peer]
DTZUZO has joined #crystal-lang
laaron has quit [Remote host closed the connection]
laaron has joined #crystal-lang
go|dfish has quit [Ping timeout: 248 seconds]
laaron has quit [Remote host closed the connection]
laaron has joined #crystal-lang
chardar_ has quit [Quit: leaving]
laaron has quit [Remote host closed the connection]
laaron has joined #crystal-lang
ashirase has joined #crystal-lang
laaron has quit [Remote host closed the connection]
laaron has joined #crystal-lang
laaron has quit [Remote host closed the connection]
laaron has joined #crystal-lang
laaron has quit [Remote host closed the connection]
laaron has joined #crystal-lang
alex``` has joined #crystal-lang
alex`` has quit [Ping timeout: 272 seconds]
laaron has quit [Remote host closed the connection]
laaron has joined #crystal-lang
go|dfish has joined #crystal-lang
laaron has quit [Remote host closed the connection]
laaron has joined #crystal-lang
laaron- has joined #crystal-lang
laaron has quit [Remote host closed the connection]
lucasb has joined #crystal-lang
rohitpaulk has joined #crystal-lang
alex``` has quit [Ping timeout: 272 seconds]
rohitpaulk has quit [Remote host closed the connection]
<FromGitter>
<watzon> It's so quiet up in here
<FromGitter>
<Blacksmoke16> indeed
alex``` has joined #crystal-lang
lucasb has quit [Quit: Connection closed for inactivity]
<FromGitter>
<watzon> Hmm, what would be the best way to add two `Slice` together?
<FromGitter>
<watzon> Or I should say concatenate
<FromGitter>
<watzon> I know I could do `(slice1.to_a + slice2.to_a).to_unsafe.to_slice`, but I'm hoping there's a less messy alternative
DTZUZO has quit [Ping timeout: 248 seconds]
DTZUZO has joined #crystal-lang
<FromGitter>
<bararchy> Suddenly my http client won't get back responses from the http servers (crystal to crystal) unless I'm doing `.flush` after the print in http response
<FromGitter>
<tenebrousedge> @watzon how do you feel about `Slice.new(slice1.size + slice2.size) { |i| slice1[i]? || slice2[i - a.size] }`
<FromGitter>
<watzon> A bit better
<FromGitter>
<watzon> Still terrible, but I don't think there's any getting around that when you're playing with pointers
<FromGitter>
<tenebrousedge> you might be right about that