00:01
ternarysolo has quit [Read error: Connection reset by peer]
00:02
ternarysolo has joined #crystal-lang
00:05
mamantoha has quit [Ping timeout: 252 seconds]
00:07
mamantoha has joined #crystal-lang
00:13
ternarysolo has quit [Ping timeout: 250 seconds]
00:26
mamantoha has quit [Ping timeout: 255 seconds]
00:43
_whitelogger has joined #crystal-lang
00:46
ternarysolo has quit [Ping timeout: 255 seconds]
01:10
hightower3 has quit [Ping timeout: 245 seconds]
01:37
ternarysolo has joined #crystal-lang
01:41
ternarysolo has quit [Ping timeout: 245 seconds]
01:58
lesderid has joined #crystal-lang
01:59
<
lesderid >
is it not possible to get a reference to 'self' from initialize?
02:00
<
FromGitter >
<Blacksmoke16> to do what
02:01
<
lesderid >
pass as an argument to another class being initialised
02:01
<
FromGitter >
<Blacksmoke16> should be able to
02:03
<
lesderid >
hm weird
02:07
<
lesderid >
Blacksmoke16: ^
02:07
<
lesderid >
why does that work and does mine not?
02:07
<
FromGitter >
<Blacksmoke16> which is strange since it is
02:07
<
FromGitter >
<Blacksmoke16> removed the `@bar : Bar`
02:07
<
lesderid >
yeah but I mean why does that make it work?
02:09
<
FromGitter >
<Blacksmoke16> compile error was saying it wasnt initialized in the initialize even tho it was?
02:10
<
FromGitter >
<Blacksmoke16> maybe make a post on the forums
02:12
<
lesderid >
without the @bar : Bar the type is (Bar | Nil)
02:13
<
FromGitter >
<Blacksmoke16> hmm
02:13
<
lesderid >
so it can be nil (or it thinks it can nil) for some reason?
02:13
<
lesderid >
and yeah, with '@bar : Bar?' it compiles
02:19
<
FromGitter >
<Blacksmoke16> :shrug:
03:38
ternarysolo has joined #crystal-lang
03:42
ternarysolo has quit [Ping timeout: 245 seconds]
04:25
marmotini_ has joined #crystal-lang
04:35
chemist69 has quit [Ping timeout: 252 seconds]
04:37
chemist69 has joined #crystal-lang
04:51
laaron has joined #crystal-lang
05:24
laaron has quit [Remote host closed the connection]
05:24
laaron has joined #crystal-lang
05:27
laaron has quit [Client Quit]
05:27
laaron has joined #crystal-lang
05:39
ternarysolo has joined #crystal-lang
05:43
ternarysolo has quit [Ping timeout: 255 seconds]
05:58
marmotini_ has quit [Ping timeout: 244 seconds]
06:47
marmotini_ has joined #crystal-lang
08:00
flaviodesousa has joined #crystal-lang
08:07
laaron- has joined #crystal-lang
08:07
laaron has quit [Remote host closed the connection]
08:54
DTZUZO has quit [Ping timeout: 240 seconds]
10:00
<
FromGitter >
<pynixwang> where is crystal base image Dockerfile?
10:03
ashirase has quit [Ping timeout: 252 seconds]
10:07
<
FromGitter >
<j8r> omg llvm-3.5.0-1 :o
10:12
ashirase has joined #crystal-lang
10:27
flaviodesousa has quit [Ping timeout: 240 seconds]
10:28
flaviodesousa has joined #crystal-lang
10:28
flaviodesousa has quit [Max SendQ exceeded]
10:37
devil_tux has joined #crystal-lang
10:37
DTZUZO has joined #crystal-lang
10:38
<
devil_tux >
have there been any impl of http client redirection in cr:std yet?
10:39
<
devil_tux >
i see few issues here and there
10:58
<
FromGitter >
<pynixwang> @maiha no.
11:07
<
FromGitter >
<straight-shoota> @j8r I had some trouble to comprehend your post in #7480
11:10
<
FromGitter >
<straight-shoota> I think I got it know. Could you maybe edit it a bit? Mention that "the commit" refers to #6945 and "still segfaulting" to #6934. The link to the dockerfile pointing to a random line isn't helpful either.
11:13
<
FromGitter >
<j8r> sure
11:26
<
FromGitter >
<straight-shoota> thnanks!
12:01
marmotini_ has quit [Ping timeout: 240 seconds]
12:10
marmotini_ has joined #crystal-lang
12:26
devil_tux has quit [Ping timeout: 255 seconds]
12:35
lucasb has joined #crystal-lang
13:50
return0e has joined #crystal-lang
13:52
return0e_ has quit [Ping timeout: 240 seconds]
13:53
ma_ has joined #crystal-lang
13:53
ma_ has quit [Client Quit]
13:54
ma_ has joined #crystal-lang
13:56
ma_ has quit [Client Quit]
13:56
ma_ has joined #crystal-lang
13:58
ma_ has quit [Client Quit]
13:59
ma_ has joined #crystal-lang
14:13
ma_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
14:55
cyberarm has quit [Read error: Connection reset by peer]
15:40
marmotini_ has quit [Ping timeout: 245 seconds]
16:47
<
FromGitter >
<TheOnlyArtz> Hey guys how can I
16:48
<
FromGitter >
<TheOnlyArtz> Find an index of an element in an array by a condition
16:50
<
FromGitter >
<kinxer> Is this what you're looking for?
16:50
<
FromGitter >
<Blacksmoke16> that would do it :P
16:50
<
FromGitter >
<kinxer> The collection-ey modules in the Crystal stdlib are really convenient.
16:51
marmotini_ has joined #crystal-lang
16:51
<
FromGitter >
<kinxer> Also, @TheOnlyArtz `Array` includes `Indexable`, so you can use that method on arrays.
16:51
<
FromGitter >
<kinxer> Just to be clear.
16:55
<
FromGitter >
<TheOnlyArtz> Sweet that will do
16:55
<
FromGitter >
<TheOnlyArtz> Btw, is there no for loop?
16:56
<
lesderid >
use .each
16:56
<
FromGitter >
<Blacksmoke16> hm?
16:56
<
FromGitter >
<Blacksmoke16> yea ^
16:56
<
FromGitter >
<Blacksmoke16> is also `each_with_index`
17:11
marmotini_ has quit [Remote host closed the connection]
17:11
marmotini_ has joined #crystal-lang
17:23
lvmbdv has joined #crystal-lang
17:24
<
FromGitter >
<kinxer> I remember somewhere reading what GC algorithm Crystal uses, but I can't find it. Where is that/what is it?
17:27
marmotini_ has quit [Ping timeout: 245 seconds]
17:54
marmotini_ has joined #crystal-lang
18:17
marmotini_ has quit [Remote host closed the connection]
18:18
marmotini_ has joined #crystal-lang
19:04
marmotini_ has quit [Remote host closed the connection]
19:19
<
FromGitter >
<Sija> @straight-shoota u here?
20:38
<
FromGitter >
<straight-shoota> back
20:53
<
FromGitter >
<Sija> already solved it over at GH, thanks again for your patience :)
21:07
laaron has joined #crystal-lang
21:33
<
FromGitter >
<j8r> > Left as an exercise to the reader.
21:34
<
FromGitter >
<dscottboggs_gitlab> wow, that's nice of them.
21:34
<
FromGitter >
<j8r> In fact, most info are in the READMEs
21:35
<
FromGitter >
<j8r> Their codebase is massive – i won't try to compile it anytime soon
21:40
<
FromGitter >
<dscottboggs_gitlab> yeah it is
23:10
DTZUZO has quit [Ping timeout: 240 seconds]
23:15
lucasb has quit [Quit: Connection closed for inactivity]
23:49
laaron- has joined #crystal-lang
23:53
laaron has quit [Ping timeout: 256 seconds]