00:09:30 | * | chemist69 joined #nim |
00:17:20 | * | dhalinar joined #nim |
00:26:47 | * | vlad1777d_ quit (Quit: Leaving) |
00:34:52 | * | themagician quit () |
00:46:43 | * | brson quit (Ping timeout: 268 seconds) |
00:47:14 | * | PMunch joined #nim |
00:49:20 | * | brson joined #nim |
00:51:24 | * | dhk joined #nim |
01:02:31 | * | onionhammer quit (Read error: Connection reset by peer) |
01:02:53 | * | dhk quit (Quit: Leaving) |
01:03:17 | * | onionhammer joined #nim |
01:04:06 | * | kier joined #nim |
01:33:54 | * | dhalinar quit (Remote host closed the connection) |
01:50:24 | * | brson quit (Ping timeout: 258 seconds) |
01:52:33 | * | brson joined #nim |
01:59:44 | * | chemist69 quit (Ping timeout: 246 seconds) |
02:02:58 | * | brson quit (Ping timeout: 245 seconds) |
02:18:04 | * | chemist69 joined #nim |
02:39:01 | * | synshroud quit (Quit: ZNC 1.6.3 - http://znc.in) |
02:40:35 | * | synshroud joined #nim |
02:47:16 | * | PMunch quit (Quit: leaving) |
02:47:37 | * | Snircle joined #nim |
02:53:37 | * | kulelu88 quit (Quit: Leaving) |
03:00:48 | * | brson joined #nim |
03:03:05 | * | chemist69 quit (Ping timeout: 246 seconds) |
03:17:01 | * | chemist69 joined #nim |
03:24:28 | * | dddddd quit (Remote host closed the connection) |
03:32:56 | * | Snircle quit (Quit: Textual IRC Client: www.textualapp.com) |
04:19:48 | * | brson quit (Ping timeout: 265 seconds) |
04:34:25 | * | chemist69 quit (Ping timeout: 260 seconds) |
04:52:36 | * | chemist69 joined #nim |
05:02:44 | * | synshroud quit (Quit: ZNC 1.6.3 - http://znc.in) |
05:04:49 | * | synshroud joined #nim |
05:21:20 | * | acidx quit (Remote host closed the connection) |
05:21:58 | * | acidx joined #nim |
05:46:23 | * | pregressive joined #nim |
05:51:21 | * | pregressive quit (Ping timeout: 268 seconds) |
05:54:13 | * | chemist69 quit (Ping timeout: 260 seconds) |
06:08:44 | * | nsf joined #nim |
06:14:16 | * | chemist69 joined #nim |
06:26:01 | * | bjz joined #nim |
06:27:37 | * | synshroud quit (Quit: ZNC 1.6.3 - http://znc.in) |
06:29:10 | * | synshroud joined #nim |
07:38:44 | FromGitter | <vegansk> @Araq, can you review https://github.com/nim-lang/Nim/pull/5123 and https://github.com/nim-lang/Nim/pull/5124 please |
07:47:05 | * | pregressive joined #nim |
07:47:14 | * | rokups joined #nim |
07:51:50 | * | pregressive quit (Ping timeout: 256 seconds) |
07:53:18 | * | synshroud quit (Quit: ZNC 1.6.3 - http://znc.in) |
07:56:09 | * | synshroud joined #nim |
07:57:34 | * | Andris_zbx joined #nim |
08:06:17 | * | ftsf joined #nim |
08:35:47 | * | gokr joined #nim |
08:35:53 | * | bjz quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) |
08:39:49 | * | chemist69 quit (Ping timeout: 258 seconds) |
08:43:45 | * | delian66 quit (Quit: leaving) |
08:45:19 | * | delian66 joined #nim |
08:50:55 | * | Arrrr joined #nim |
09:01:05 | * | chemist69 joined #nim |
09:02:30 | * | bjz joined #nim |
09:03:38 | * | byte512 joined #nim |
09:16:35 | * | bjz quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) |
09:26:30 | * | arnetheduck joined #nim |
09:35:08 | * | bjz joined #nim |
09:47:52 | * | pregressive joined #nim |
09:52:37 | * | pregressive quit (Ping timeout: 248 seconds) |
10:17:08 | * | chemist69 quit (Ping timeout: 245 seconds) |
10:37:34 | * | chemist69 joined #nim |
10:39:28 | * | couven92 joined #nim |
10:59:38 | * | bjz quit (Ping timeout: 250 seconds) |
11:00:00 | * | bjz_ joined #nim |
11:20:29 | * | zevlg quit (Remote host closed the connection) |
11:22:17 | * | gokr quit (Ping timeout: 260 seconds) |
11:30:36 | * | arnetheduck quit (Remote host closed the connection) |
11:32:12 | * | arnetheduck joined #nim |
11:32:53 | chemist69 | Hi, how do I work with ref seq? I tried this: var s: ref seq[float]; new s; s[].add([1.2, 2.3]), but it gives SIGSEGV: Illegal storage access. (Attempt to read from nil?) (my favorite error). |
11:33:38 | flyx | chemist: you need to do s[] = @[] before adding things. or s[] = newSeq[float]() |
11:36:40 | chemist69 | flyx: `new s` is not sufficient? |
11:37:15 | flyx | `new s` allocates space for the reference. not for the seq itself |
11:37:42 | flyx | okay, that is not a good wording |
11:38:01 | Arrrr | If i were you i'd use some object wrapper http://pastebin.com/vvMMB2Ck |
11:38:29 | flyx | `new s` allocates the space `s` points to. but a seq itself lies on the heap, so it needs separately allocated space. that happens with @[] or newSeq. |
11:39:49 | flyx | it is the same as when you define `var s: seq[int]`. if you access it before assigning @[] or newSeq or something, you'll get the same error |
11:40:10 | flyx | the ref adds an indication and so, an additional allocation must be made |
11:40:16 | flyx | *indirection |
11:41:36 | * | chemist69 quit (Ping timeout: 240 seconds) |
11:42:18 | Arrrr | KO |
11:48:36 | * | pregressive joined #nim |
11:51:56 | * | rokups quit (Quit: Connection closed for inactivity) |
11:53:23 | * | pregressive quit (Ping timeout: 258 seconds) |
11:55:36 | * | chemist69 joined #nim |
11:57:22 | chemist69 | I'm very sorry, I got cut off from IRC. My DSL connection is currently very dodgy. |
11:57:56 | chemist69 | flyx and Arrrr: many thanks for your explanations, that made it much clearer to me. |
11:58:20 | chemist69 | Arrrr: I like the object wrapper approach, thanks. |
12:02:51 | * | Snircle joined #nim |
12:16:27 | * | Arrrr quit (Quit: WeeChat 1.5) |
12:28:29 | * | bjz_ quit (Ping timeout: 268 seconds) |
12:28:55 | * | gokr joined #nim |
12:29:08 | * | bjz joined #nim |
12:34:47 | * | couven92 quit (Quit: Client disconnecting) |
12:56:42 | * | gokr quit (Ping timeout: 246 seconds) |
13:19:16 | * | Ven joined #nim |
13:19:58 | * | dmi0 joined #nim |
13:31:53 | * | nsf quit (Quit: WeeChat 1.6) |
13:49:20 | * | pregressive joined #nim |
13:50:30 | * | Ven quit (Read error: Connection reset by peer) |
13:50:56 | * | Ven joined #nim |
13:53:57 | * | pregressive quit (Ping timeout: 260 seconds) |
14:02:42 | * | prose[m] quit (Remote host closed the connection) |
14:02:42 | * | dyce[m] quit (Remote host closed the connection) |
14:02:42 | * | M-Quora quit (Remote host closed the connection) |
14:02:42 | * | TheManiac quit (Read error: Connection reset by peer) |
14:02:43 | * | jivank[m] quit (Write error: Connection reset by peer) |
14:02:44 | * | erwana[m] quit (Read error: Connection reset by peer) |
14:02:44 | * | MrAxilus[m] quit (Read error: Connection reset by peer) |
14:02:45 | * | hohlerde quit (Write error: Connection reset by peer) |
14:02:46 | * | Guest73656[m] quit (Read error: Connection reset by peer) |
14:02:46 | * | zielmicha[m] quit (Write error: Connection reset by peer) |
14:16:40 | * | dyce[m] joined #nim |
14:25:53 | * | Ven quit (Quit: My MacBook has gone to sleep. ZZZzzz…) |
14:27:57 | * | gokr joined #nim |
15:03:23 | * | Snircle quit (Quit: Textual IRC Client: www.textualapp.com) |
15:04:39 | * | prose[m] joined #nim |
15:04:39 | * | hohlerde joined #nim |
15:04:39 | * | jivank[m] joined #nim |
15:04:39 | * | MrAxilus[m] joined #nim |
15:04:39 | * | zielmicha[m] joined #nim |
15:04:40 | * | M-Quora joined #nim |
15:04:46 | * | TheManiac joined #nim |
15:04:47 | * | Guest73656[m] joined #nim |
15:05:19 | * | erwana[m] joined #nim |
15:08:24 | * | JStoker quit (Ping timeout: 245 seconds) |
15:08:48 | * | zielmicha[m] quit (Ping timeout: 245 seconds) |
15:08:48 | * | jivank[m] quit (Ping timeout: 245 seconds) |
15:09:16 | * | zielmicha[m] joined #nim |
15:09:52 | * | JStoker joined #nim |
15:11:27 | * | jivank[m] joined #nim |
15:20:01 | * | arnetheduck quit (Ping timeout: 258 seconds) |
15:29:22 | * | Ven joined #nim |
15:34:37 | * | Snircle joined #nim |
15:41:49 | * | couven92 joined #nim |
15:54:18 | * | Ven quit (Quit: My MacBook has gone to sleep. ZZZzzz…) |
16:21:36 | * | dmi0 quit (Ping timeout: 240 seconds) |
16:21:44 | * | dmi0 joined #nim |
16:44:58 | * | pregressive joined #nim |
16:48:59 | * | Andris_zbx quit (Remote host closed the connection) |
17:16:36 | * | chemist69 quit (Ping timeout: 240 seconds) |
17:35:08 | * | chemist69 joined #nim |
17:56:03 | * | space-wizard joined #nim |
17:56:28 | * | space-wi_ quit (Ping timeout: 256 seconds) |
18:04:45 | * | nubunto joined #nim |
18:04:55 | nubunto | hello :) |
18:19:03 | * | nsf joined #nim |
18:24:04 | * | dmi0 quit (Ping timeout: 250 seconds) |
18:29:54 | * | dddddd joined #nim |
18:39:44 | * | [ui] joined #nim |
19:01:06 | * | Trustable joined #nim |
19:03:22 | dom96 | hi nubunto |
19:05:08 | cheatfate | dom96, could you please look help me with https://github.com/nim-lang/Nim/issues/5128 |
19:09:01 | dom96 | How can I help? |
19:22:07 | * | Salewski joined #nim |
19:23:30 | Salewski | Dom, how close is chapter 9 Metaprogramming already to the final version. Makes it sense reading it carefully already, or better wait? |
19:26:28 | * | gangstacat quit (Ping timeout: 250 seconds) |
19:37:46 | dom96 | Salewski: Very close |
19:39:07 | Salewski | Oh, fine, then I will read it over christmas carefully! |
19:39:29 | Salewski | Bye... |
19:40:05 | * | Salewski left #nim (#nim) |
19:42:15 | * | dmi0 joined #nim |
19:57:30 | * | k1io joined #nim |
19:58:06 | * | dmi0 quit (Quit: ~) |
20:05:18 | cheatfate | dom96, i just can't understand why upcoming stacktrace is very different vs current asyncdispatch |
20:05:53 | * | gokr quit (Ping timeout: 245 seconds) |
20:20:22 | * | byte512 quit (Ping timeout: 250 seconds) |
20:21:04 | * | brson joined #nim |
20:21:36 | * | yglukhov joined #nim |
20:43:26 | * | vendethiel joined #nim |
20:46:21 | * | [ui] quit (Quit: Connection closed for inactivity) |
20:48:42 | * | Trustable quit (Remote host closed the connection) |
20:51:50 | * | yglukhov quit (Remote host closed the connection) |
21:14:30 | * | nubunto quit (Ping timeout: 268 seconds) |
21:14:40 | * | themagician joined #nim |
21:22:28 | * | yglukhov joined #nim |
21:30:24 | * | Matthias247 joined #nim |
21:31:26 | * | Ven joined #nim |
21:53:07 | * | Jesin quit (Quit: Leaving) |
22:00:57 | * | yglukhov quit (Remote host closed the connection) |
22:07:02 | * | irrequietus joined #nim |
22:25:49 | * | Jesin joined #nim |
22:26:04 | * | Jesin quit (Remote host closed the connection) |
22:26:33 | * | Jesin joined #nim |
22:55:00 | * | Sembei quit (Read error: Connection reset by peer) |
22:55:51 | * | PMunch joined #nim |
22:56:04 | * | Sembei joined #nim |
23:09:32 | * | Matthias247 quit (Read error: Connection reset by peer) |
23:47:07 | * | Jesin quit (Quit: Leaving) |
23:50:02 | * | Jesin joined #nim |
23:56:57 | * | Ven quit (Quit: My MacBook has gone to sleep. ZZZzzz…) |
23:59:55 | * | Jesin quit (Quit: Leaving) |