<< 22-08-2015 >>

00:05:32*strcmp1 quit (Quit: Leaving)
00:20:09*no_name quit (Remote host closed the connection)
00:20:09*devzerp quit (Remote host closed the connection)
00:26:06*brson quit (Quit: leaving)
00:28:37*bendiken quit ()
00:42:32*strcmp1 joined #nim
01:00:26*^aurora^ joined #nim
01:01:52*strcmp1 quit (Quit: Leaving)
01:02:38*NimBot joined #nim
01:03:06*Demon_Fox quit (Ping timeout: 255 seconds)
01:15:48*cyber_lis joined #nim
01:20:55*cyber_lis quit (Quit: Leaving)
01:39:28*NimBot joined #nim
02:07:06*^aurora^ quit (Quit: My Mac has gone to sleep. ZZZzzz…)
02:31:29*BitPuffin|osx quit (Ping timeout: 256 seconds)
02:39:11*Demon_Fox joined #nim
02:53:30*yglukhov joined #nim
02:57:46*yglukhov quit (Ping timeout: 250 seconds)
03:08:22*darkf joined #nim
03:12:51*NimBot joined #nim
03:44:22*pregressive joined #nim
03:59:40*Demos joined #nim
04:05:39*Jesin joined #nim
04:21:56*Demos quit (Read error: Connection reset by peer)
04:38:42*Jesin quit (Quit: Leaving)
04:46:14*cazov_ is now known as cazov
04:54:03*NimBot joined #nim
05:04:07*NimBot joined #nim
05:32:57*NimBot joined #nim
05:50:14*pregressive quit (Remote host closed the connection)
06:15:42*NimBot joined #nim
06:29:55*yglukhov joined #nim
06:34:13*yglukhov quit (Ping timeout: 244 seconds)
06:49:03*Arrrr joined #nim
07:05:11*NimBot joined #nim
07:13:38*Sahnvour joined #nim
07:15:31*jszymanski joined #nim
07:19:20*yglukhov joined #nim
07:21:44*gokr quit (Ping timeout: 265 seconds)
07:23:58*yglukhov quit (Ping timeout: 260 seconds)
07:30:57*Demon_Fox quit (Quit: Leaving)
07:31:41*NimBot joined #nim
07:39:11*Arrrr quit (Quit: WeeChat 1.2)
07:52:13*minus quit (Remote host closed the connection)
07:54:08*NimBot joined #nim
07:55:14*xcombelle joined #nim
07:55:47*yglukhov joined #nim
07:58:23*minus joined #nim
08:00:17*yglukhov quit (Ping timeout: 252 seconds)
08:19:54*yglukhov joined #nim
08:23:20*xcombelle quit (Remote host closed the connection)
08:38:11*yglukhov quit (Remote host closed the connection)
08:39:32*EXetoC joined #nim
08:44:53*X67r joined #nim
09:12:17*dalarmmst quit (Ping timeout: 250 seconds)
09:20:06*Trustable joined #nim
09:33:58*Matthias247 joined #nim
09:36:21*unclechu joined #nim
09:37:54*unclechu quit (Client Quit)
09:38:17*unclechu joined #nim
09:38:45*yglukhov joined #nim
09:40:00*boopisaway quit (Ping timeout: 264 seconds)
09:43:30*yglukhov quit (Ping timeout: 260 seconds)
09:43:45*dalarmmst joined #nim
09:49:24*Sahnvour_ joined #nim
09:51:00*Sahnvour_ quit (Read error: Connection reset by peer)
09:51:02*Sahnvour quit (Ping timeout: 246 seconds)
09:53:32*boopisaway joined #nim
09:53:33*Sahnvour_ joined #nim
09:55:11*dtscode joined #nim
10:02:01*^aurora^ joined #nim
10:04:50*Sahnvour_ quit (Ping timeout: 240 seconds)
10:04:58*jszymanski quit (Quit: computer sleeps...)
10:05:55*Sahnvour_ joined #nim
10:17:42*Ven joined #nim
10:43:03*boopisaway is now known as boop
10:43:55*polde quit (Ping timeout: 256 seconds)
10:48:41*polde joined #nim
10:50:31*boop is now known as boopisaway
10:50:43*boopisaway is now known as boop
11:01:56*Ven quit (Quit: My MacBook has gone to sleep. ZZZzzz…)
11:04:14*yglukhov joined #nim
11:04:23*cyber_lis joined #nim
11:04:35cyber_lishi2all
11:04:54cyber_liscan anyone help me?
11:05:25cyber_lisi have sequence of chars. i want join it in one string
11:06:01cyber_lisjoin(seq[char], '') dorsnt work
11:06:13cyber_lisbecause join wants open array
11:06:25cyber_lishow can i converq sequence to array?
11:06:31cyber_lisconvert
11:08:51*yglukhov quit (Ping timeout: 256 seconds)
11:14:06*xcombelle joined #nim
11:14:24*^aurora^ quit (Quit: My Mac has gone to sleep. ZZZzzz…)
11:15:25dtscodeit should work. open array is just a place holder for seq
11:17:34dom96cyber_lis: have you tried join(seq[char], "") (note the double quotes)
11:19:38cyber_lishttp://pastebin.com/1P9b5pCG
11:19:40cyber_listry it
11:19:58cyber_lissecret_message.nim(10, 16) Error: type mismatch: got (seq[char], string)
11:19:58cyber_lisbut expected one of:
11:19:58cyber_lisstrutils.join(a: openarray[string], sep: string)
11:19:58cyber_lisstrutils.join(a: openarray[string])
11:20:48cyber_lismaybe i should add message.add(word[0..0])
11:21:56dom96cyber_lis: ahh, it doesn't support seq[char]
11:22:12dom96cyber_lis: just iterate over the sequence manually and add each character to a string
11:22:14*Matthias247 quit (Read error: Connection reset by peer)
11:22:23cyber_lisyeahh. i see wright now
11:22:27dom96var result = ""; for i in seq: result.add(i)
11:22:37dtscodeproc join(a: openarra... nmd
11:23:28cyber_lisi changed: var message: seq[char] = @[] to var message: seq[string] = @[]
11:24:00cyber_lisad in for loop i add message.add(word[0..0])
11:24:03cyber_lisit works
11:24:10cyber_listhank you for help )
11:25:03cyber_lisbut i think it will be not bad to have join proc for char sequence
11:27:06dtscodeproc join(a: openarray[char], sep: string|char): string = result = ""; for letter in a: result.add(letter & sep)
11:27:10dtscodeI think
11:27:17dtscodeits been a while since I've done nim
11:27:52cyber_lisi am just started nim. i am taking tasks form www.checkio.org (i am pythonist :) ) and try to make it with nim
11:32:34dom96cyber_lis: I agree, make an issue on github so we remember to add it :)
11:32:43dom96So, who's going to OSCON amsterdam?
11:33:45dtscodedom96: shouldn't that be in -offtopic?
11:34:06dom96nah.
11:34:12dtscodealright
11:34:12dom96Not enough discussion goes on here
11:34:29dtscodeI would, but I have to save money for other things and want to go to pycon
11:34:49cyber_lisdom96, if i make pull request myself it could be accepted? or only development team can make pull requests?
11:35:07dom96cyber_lis: yeah, go ahead. Anybody can make pull requests!
11:35:15dtscodehe even let me once
11:35:21dom96dtscode: But Araq and I will be there :(
11:35:34dtscodedom96: :c wish I could go. rents expensive dawg
11:35:43dom96And I may bring some Nim t-shirts... ;)
11:35:58dtscodeD: I will give you money if you ship me one of those
11:36:03dtscodewhich reminds me
11:36:08dtscodewhy did we never make nimcon a thing?
11:36:10dom96yeah, i'll probably do that too.
11:36:25dom96Maybe once we release 1.0
11:36:29dtscodeyay!
11:36:30dom96and get some sponsors.
11:36:50dtscodethat would be cool to help out with a nimcon 1.0
11:38:42dtscodedom96: where is a link to tickets cost for oscon?
11:38:45dtscodeI can't find any
11:39:24dom96oh it's incredibly expensive unfortunately https://en.oreilly.com/open-source-eu-2015/public/register
11:39:34dom96there are discounts
11:39:38dom96of course
11:39:57*NimBot joined #nim
11:40:01dtscode> 3 months of Safari Pro
11:40:03dtscodeI am so sold
11:40:16dtscodeI might try to register as a student. see how much that costs
11:40:44dom96If you're serious about going Araq might be able to get you a free ticket.
11:41:05dom96He got me one already though so they might not be able to give out more for him.
11:41:33dom96flights to amsterdam would likely cost the majority of it
11:41:37dom96and hotel as well
11:41:45dom96which is still something I must see about
11:41:48dtscodeI am serious about going, but he doesn't need to do that
11:42:10dtscodeflights would be expensive af yeah but I think I could piggyback off my dad's miles
11:42:31dtscodeas far as a hotel goes I wouldn't care if I slept on the streets for a few days. I've done it before
11:42:56dtscodehow many dollars is 855 euros
11:44:18dom96973.67
11:44:23dtscodeshit
11:45:31dtscodewow even with a student discount thats expensive
11:45:44dtscodeI could probably afford it if I end up getting a second job
11:46:51dtscodeit would be crazy to meet you and araq in person though. you guys are in my programmers-to-meet list
11:47:05dtscodeunfortunately I need to invent time travel for ritchie :/
11:47:42dom96yeah
11:47:48dom96OSCON is freaking expensive
11:47:53dom96You do get food and stuff included though
11:48:34dtscode*hopefully* if I get this second job, I can save up rent for a couple of months, and afford my florida trip, pycon, and oscon
11:49:18*yglukhov joined #nim
11:49:31*federico3 is at DebConf for free
11:49:47*NimBot joined #nim
11:50:39dtscodeis that debian?
11:51:01dtscodeI take it back. if araq can spare a ticket, I won't complain
11:55:47*yglukhov quit (Ping timeout: 265 seconds)
11:58:40*Kingsquee quit (Read error: Connection reset by peer)
11:58:45*Kingsqueee joined #nim
12:00:36dom96dtscode: sure, ask him when he's around.
12:00:48dtscodesweet thanks
12:08:13*Ven joined #nim
12:12:10*Ven quit (Client Quit)
12:12:35*Ven joined #nim
12:14:19*Ven quit (Client Quit)
12:41:22*cyber_lis quit (Quit: Leaving)
12:43:14*Kingsqueee quit (Quit: http://i.imgur.com/EsXzoum.png)
12:50:34*^aurora^ joined #nim
12:55:25*xet7 quit (Ping timeout: 245 seconds)
13:16:26*jszymanski joined #nim
13:18:48*NimBot joined #nim
13:38:51*aziz joined #nim
13:41:19*NimBot joined #nim
13:45:19*keypusher quit (Read error: Connection reset by peer)
13:48:03*vendethiel joined #nim
14:06:15*Varriount_ joined #nim
14:08:53*bogen1 joined #nim
14:08:57*BitPuffin|osx joined #nim
14:10:54*Dark_Fox_ joined #nim
14:11:12*Yaiyan quit (Ping timeout: 240 seconds)
14:11:13*bogen quit (Ping timeout: 240 seconds)
14:11:13*Varriount quit (Ping timeout: 240 seconds)
14:11:14*Dark_Fox quit (Ping timeout: 240 seconds)
14:11:14*ekarlso quit (Ping timeout: 240 seconds)
14:11:58*OnO quit (Ping timeout: 244 seconds)
14:13:19*ekarlso joined #nim
14:13:44*Yaiyan joined #nim
14:14:09*yglukhov joined #nim
14:15:00*UberLambda joined #nim
14:18:41*yglukhov quit (Ping timeout: 256 seconds)
14:19:26*xet7 joined #nim
14:28:50*strcmp1 joined #nim
14:31:00*NimBot joined #nim
14:31:56*strcmp1 quit (Client Quit)
14:35:54*strcmp1 joined #nim
14:37:51*strcmp1 quit (Client Quit)
14:44:24*strcmp1 joined #nim
14:55:22*silven quit (Ping timeout: 244 seconds)
14:55:48*silven joined #nim
15:11:51*NimBot joined #nim
15:29:23*strcmp1 quit (Quit: Leaving)
15:33:56*arnetheduck quit (Ping timeout: 250 seconds)
15:38:04*NimBot joined #nim
15:47:33*strcmp1 joined #nim
15:50:52*rollo joined #nim
15:53:22*strcmp1 quit (Read error: Connection reset by peer)
15:56:35*Matthias247 joined #nim
16:01:30*dalarmmst quit (Ping timeout: 244 seconds)
16:05:25*jszymanski quit (Quit: computer sleeps...)
16:07:30*Demon_Fox joined #nim
16:09:27*vendethiel quit (Ping timeout: 260 seconds)
16:11:25*NimBot joined #nim
16:19:55*^aurora^ quit (Quit: My Mac has gone to sleep. ZZZzzz…)
16:41:36*Trustable quit (Remote host closed the connection)
16:47:09*yglukhov joined #nim
16:51:41*yglukhov quit (Ping timeout: 256 seconds)
16:57:59*darkf quit (Quit: Leaving)
16:59:12*xet7_ joined #nim
17:07:41*irrequietus joined #nim
17:21:29*irrequietus quit ()
17:21:42*irrequietus joined #nim
17:22:48*aziz quit (Remote host closed the connection)
17:26:52*UberLambda quit (Ping timeout: 265 seconds)
17:33:27*yglukhov joined #nim
17:45:57*yglukhov quit (Remote host closed the connection)
17:50:23*yglukhov joined #nim
17:54:08*Senketsu quit (Quit: Leaving)
18:17:13*yglukhov quit (Remote host closed the connection)
18:41:14*jszymanski joined #nim
18:44:23*yglukhov joined #nim
18:44:52*Sembei joined #nim
18:48:37*yglukhov quit (Ping timeout: 250 seconds)
18:53:31*strcmp1 joined #nim
19:16:35*kilon joined #nim
19:20:22*xcombelle quit (Read error: Connection reset by peer)
19:24:18*pregressive joined #nim
20:01:31*xet7_ quit (Ping timeout: 252 seconds)
20:12:24*rollo quit (Ping timeout: 264 seconds)
20:19:21*yglukhov joined #nim
20:23:01*UberLambda joined #nim
20:23:37*yglukhov quit (Ping timeout: 246 seconds)
20:26:12*UberLambda quit (Client Quit)
20:32:48*dtscode quit (Ping timeout: 264 seconds)
20:47:04*X67r_ joined #nim
20:49:05*X67r quit (Ping timeout: 250 seconds)
20:49:29*kilon quit (Remote host closed the connection)
20:51:44*dryt joined #nim
21:03:54*kilon joined #nim
21:10:20*vendethiel joined #nim
21:19:17*pregressive quit (Remote host closed the connection)
21:25:23*BitPuffin|osx quit (Ping timeout: 256 seconds)
21:31:07*kilon quit (Remote host closed the connection)
21:31:24*kilon joined #nim
21:34:59*NimBot joined #nim
21:36:48*kilon quit (Remote host closed the connection)
21:37:25*pregressive joined #nim
21:38:04*unclechu quit (Quit: Leaving.)
21:42:46*boop is now known as boopisaway
21:50:08*kilon joined #nim
21:50:24*jszymanski quit (Quit: computer sleeps...)
22:04:48*xificurC quit (Ping timeout: 250 seconds)
22:12:48*BitPuffin|osx joined #nim
22:13:23*kilon quit (Remote host closed the connection)
22:19:14*kilon joined #nim
22:21:37*kilon quit (Remote host closed the connection)
22:23:12*vendethiel quit (Ping timeout: 264 seconds)
22:30:24*NimBot joined #nim
22:39:33*vendethiel joined #nim
22:43:55*EXetoC quit (Ping timeout: 250 seconds)
22:54:46*Jesin joined #nim
23:03:07*irrequietus quit ()
23:05:35*NimBot joined #nim
23:25:38*Sahnvour_ quit (Read error: Connection reset by peer)
23:37:07*X67r_ quit (Quit: leaving)
23:41:36*NimBot joined #nim
23:48:42*vendethiel quit (Ping timeout: 265 seconds)
23:49:04*Jessin joined #nim
23:49:21*Jesin quit (Disconnected by services)
23:49:25*Jessin is now known as Jesin
23:54:06*rollo joined #nim
23:55:38*yglukhov joined #nim