»ö« Welcome to Perl 6! | perl6.org/ | evalbot usage: 'p6: say 3;' or rakudo:, or /msg camelia p6: ... | irclog: irc.perl6.org or colabti.org/irclogger/irclogger_logs/perl6 | UTF-8 is our friend!
Set by moritz on 22 December 2015.
00:04 comborico1611 left 00:06 AlexDaniel left 00:07 w_richard_w joined 00:13 Actualeyes left 00:14 pharv joined 00:18 pharv left 00:22 espadrine left 00:27 cdg left, kurahaupo_ left 00:29 speedChicken left, pierre joined 00:30 speedChicken joined
Geth perl6.org/bs4: 6e1b5b5f76 | (Zoffix Znet)++ | 2600 files
Break ground with new app-based site
00:48
01:14 pharv joined 01:16 cognominal joined 01:18 cog_ left, pharv left 01:19 cog_ joined 01:20 cognominal left 01:43 cdg joined 01:46 ilbot3 left 01:47 Actualeyes joined 01:48 cdg left 01:49 pharv joined 01:50 pharv_ joined, pharv__ joined 01:52 itaipu joined 01:54 pharv left, ilbot3 joined, ChanServ sets mode: +v ilbot3 01:55 pharv_ left, pharv__ left 02:04 ufobat___ joined 02:08 enheh left, ufobat_ left 02:19 AlexDaniel joined 03:01 Herby_ left 03:06 eliasr left 03:13 Actualeyes left 03:38 AlexDaniel left 04:10 pierre left
Geth perl6.org/bs4: 43b20760d5 | (Zoffix Znet)++ | Build.PL
Add build script
04:12
perl6.org/bs4: 1d8bb553ff | (Zoffix Znet)++ | app.pl
Add code block helper
04:13
perl6.org/bs4: 77bc105ec4 | (Zoffix Znet)++ | 4 files
Start sketching home page carousel
04:19
04:20 pierre joined 04:25 pierre left 04:27 pharv joined 04:32 pharv left 04:35 skids left 04:39 pierre joined 04:43 khw left, pierre left 04:57 pierre joined 05:03 pierre left 05:05 wamba joined 05:06 pierre joined
moritz lizmat++ # weekly 05:17
05:25 donpdonp left, donpdonp joined 05:27 cdg joined 05:29 domidumont joined 05:33 cdg left 05:34 sauvin_ joined 05:36 domidumont left 05:37 domidumont joined 05:43 domidumont left 05:56 vike1 left 05:59 domidumont joined 06:02 kaare__ left 06:20 sauvin_ left 06:35 sauvin_ joined 06:37 sauvin_ is now known as bocaneri, rindolf joined 06:40 pmurias joined 06:52 wamba left
lizmat clickbaits p6weekly.wordpress.com/2018/03/26/...ly-perl-6/ 07:08
07:08 lookatme joined 07:26 robertle joined 07:33 llfourn left 07:35 llfourn_ joined 07:40 abraxxa joined 07:41 dakkar joined
donpdonp how would I compare two Buf objects to see if the contents are identical? 07:49
lizmat m: say Buf.new(1,2,3) ~~ Buf.new(1,2,3) # hmmm... would have expected this to be True
camelia False
lizmat m: say Buf.new(1,2,3) cmp Buf.new(1,2,3)
camelia Same
donpdonp lizmat: thx 07:58
07:58 enheh joined
donpdonp m: Buf.new(3,4,5) 07:58
camelia ( no output )
lizmat m: dd Buf.new(1,2,3)
camelia Buf.new(1,2,3)
donpdonp m: say (given Buf.new(1,2,3) { when $_ cmp Buf.new(1,2,3) { "same same" } })
camelia False
donpdonp am I not using 'given' correctly?
lizmat m: given Buf.new(1,2,3) { when $_ cmp Buf.new(1,2,3) { say "same same" } }
camelia ( no output )
lizmat m: given Buf.new(1,2,3) { when $_ cmp Buf.new(1,2,3) { say "different" } }
camelia ( no output )
lizmat m: given Buf.new(1,2,3) { when $_ cmp Buf.new(1,2,4) { say "different" } }
camelia ( no output )
lizmat hmmm
m: given Buf.new(1,2,3) { if $_ cmp Buf.new(1,2,4) { say "different" } }
camelia different
07:58 scimon joined
lizmat m: given Buf.new(1,2,3) { if $_ cmp Buf.new(1,2,3) { say "different" } } 07:58
camelia ( no output )
lizmat when smartmatches its parameter with $_
so it smartmatches True / False with the Buf
which is always false
so you were using "when" incorrectly
m: given 42 { .say }
camelia 42
lizmat 'given' is basically just a topicalizer
m: $_ = 42; when 42 { say "whee" } # you don't need 'given' to be able to do a 'when'
camelia whee
donpdonp im so confused 08:00
even if i try to fall back to if, its not intuitive
m: if Buf.new(1,2,3) cmp Buf.new(1,2,3) { say "Z" } 08:01
camelia ( no output )
lizmat docs.perl6.org/language/control#given
donpdonp m: if True { say "Z" } 08:02
camelia Z
lizmat donpdonp: cmp returns either Less / Same / More
only the Less / More cases are True in boolean context
donpdonp oO
o^O
lizmat Same is False as a Boolean
Numerically they are -1, 0, 1
donpdonp ohhh
m: if Buf.new(1,2,3) cmp Buf.new(1,2,3) == Same { say "same" } 08:03
camelia same
lizmat but I think you've actually found a bug in Buf ~~ Buf
I think that should be True
am checking with core devs to see whether that is a bug or not 08:04
I intended the "cmp" suggestion as a temporary workaround
08:10 zakharyas joined
Voldenet ~~ checks object identity, because Buf does not implement ACCEPTS 08:10
08:13 zakharyas left
Voldenet m: if Buf.new(1,2,3) eqv Buf.new(1,2,3) { say "same" } 08:16
camelia same
08:21 zakharyas joined 08:24 wamba joined
perlbot daxim pasted a new file at perl.bot/p/uognf5 - rakudo-2018.03 tests broken 08:27
08:30 vike1 joined 08:39 enheh_ joined, jast left, jast joined 08:40 enheh left 08:41 zakharyas left 08:52 eliasr joined, wamba left 09:06 mcmillhj joined 09:08 w_richard_w left 09:10 pierre left, pierre joined 09:11 pierre left, pierre joined, mcmillhj left 09:24 ChoHag left 09:26 cdg joined, darutoko joined 09:27 zakharyas joined 09:31 cdg left 09:32 tt joined 09:33 kurahaupo joined 09:35 ChoHag joined 09:37 gwnx joined 10:12 BALMAIN joined, BALMAIN left 10:16 enheh_ left
gwnx i spent a lot of time in this server in high school lol... i dont think i formed any close friendships through it, especially since it was a bit of an escape for me. i know if it weren't for this community i'd absolutely be a luddite lol like a lot of people who work with computers are such nasty people and they make such insidious machines and routines and fraternities and societies... there's such a 10:21
10:21 committable6 left
gwnx commitment among enough people involved in perl 6 to like, genuine love, & i think any union of people sufficiently committed to that is like such a powerful, impactful force in the world 10:21
10:21 committable6 joined, ChanServ sets mode: +v committable6
gwnx sorry to sound so goofy lol 10:26
10:32 ChoHag left 10:35 jast left 10:36 jast joined 10:49 ChoHag joined 10:51 pierre left 11:23 gwnx left 11:29 pierre__ joined 11:31 markong joined
perlawhirl bisectable6: say (3, 1, 2).kv.first(-> $k, $v { $v == $k }) 11:45
bisectable6 perlawhirl, On both starting points (old=2015.12 new=5db9ebc) the exit code is 1 and the output is identical as well
perlawhirl, Output on both points: «Too few positionals passed; expected 2 arguments but got 1␤ in block <unit> at /tmp/R2NXIbqohB line 1␤␤»
perlawhirl does it seem bug-worthy to anyone that this works... 11:46
m: say (3, 1, 2).kv.grep(-> $k, $v { $v == $k })
camelia ((1 1) (2 2))
perlawhirl but this doesn't...
m: say (3, 1, 2).kv.first(-> $k, $v { $v == $k })
camelia Too few positionals passed; expected 2 arguments but got 1
in block <unit> at <tmp> line 1
11:48 aindilis left
lizmat perlawhirl: yeah, please make it an issue 11:51
perlawhirl will do
llfourn_ lizmat++ #thanks for posting my article to reddit :) 11:54
11:55 aindilis joined
lizmat llfourn_: thanks for writing them :-) 11:55
11:59 itaipu left
perlawhirl camelia: say (3, 1, 2).kv.grep(-> $k, $v { $v == $k })[0]; 12:02
m: say (3, 1, 2).kv.grep(-> $k, $v { $v == $k })[0];
camelia (1 1)
12:03 extrubi joined 12:04 wamba joined 12:06 itaipu joined 12:08 zakharyas left 12:10 mahafyi joined 12:15 pierre__ left 12:17 enheh_ joined 12:23 wamba left 12:25 AlexDaniel joined
pmurias do we have docs on how multi dispatch order works? 12:30
12:30 pharv joined 12:33 splatt9990 joined 12:35 pharv left 12:36 eryst joined 12:44 splatt9990 left 12:46 pierre__ joined 12:49 eryst left, extrubi left 12:51 pierre__ left 12:54 mcmillhj joined 12:56 zakharyas joined, athenot joined 12:59 itaipu_ joined, zakharyas left 13:00 zakharyas joined, mr_ron left 13:02 athenot_ joined, itaipu left 13:03 athenot left 13:07 vcv joined 13:16 sena_kun joined
AlexDaniel squashable6: next 13:25
squashable6 AlexDaniel, Next SQUASHathon in 9 days and ≈20 hours (2018-04-07 UTC-12⌁UTC+14). See github.com/rakudo/rakudo/wiki/Mont...Squash-Day
13:26 cdg joined 13:28 pharv joined, vcv left 13:29 pharv_ joined 13:31 vcv joined 13:32 pharv left 13:33 Actualeyes joined, pharv_ left
scimon pmurias: docs.perl6.org/language/functions#...i-dispatch Covers some of it. stackoverflow.com/questions/450472...t-class-or This is a good answer. 13:37
Personally I made a test script. I'll gist it. One sec. 13:38
gist.github.com/Scimon/87571079e09...cfe6d99e58 13:39
13:39 pierre__ joined
scimon (I missed the no signature option I see there) But I've tired to cover a bunch of options and have it say which one is doing the job. 13:40
If I'd had the time at LPM last week I was going to cover it. I plan on writing a complete talk on signatures, type constraints and multi call soon(ish) 13:41
13:50 vcv left, agwind joined 14:01 skids joined 14:02 wamba joined 14:03 mcmillhj left 14:04 mcmillhj joined 14:27 Wenjie joined 14:29 splatt9990 joined 14:30 pierre__ left 14:47 domidumont left 14:56 zakharyas left 14:57 vcv joined 14:59 vcv left 15:00 zakharyas joined 15:04 vcv joined
lizmat donpdonp: turns out you can use 'eq' on Buf 15:05
m: say Buf.new(1,2,3) eq Buf.new(1,2,3)
camelia True
lizmat m: say Buf.new(1,2,3) eq Buf.new(1,2,4) 15:06
camelia False
15:27 zakharyas left
donpdonp lizmat: hey thx. 15:28
15:29 splatt9990 left 15:30 zakharyas joined, Wenjie left, zakharyas left 15:31 zakharyas joined 15:32 splatt9990 joined 15:35 FROGGS joined 15:36 khw joined 15:38 enheh_ left 15:39 enheh_ joined 15:42 troys joined 15:44 vcv left 15:46 darutoko- joined 15:49 darutoko left 15:54 robertle left 15:56 zakharyas left 16:17 pharv joined 16:19 zakharyas joined 16:21 splatt9990 left, zakharyas left 16:22 robertle joined, pharv left, pharv joined, pharv left 16:23 zakharyas joined 16:24 zakharyas left 16:27 scimon left 16:29 splatt9990 joined 16:31 pharv joined 16:32 wamba left 16:44 pharv left 16:48 splatt9990 left 16:49 splatt9990 joined 16:51 vcv joined 16:58 pharv joined 16:59 dakkar left, wamba joined 17:00 khisanth__ left 17:14 khisanth__ joined 17:25 domidumont joined 17:29 athenot joined, athenot_ left, pharv left 17:32 pharv joined 17:34 pharv left, pharv_ joined 17:42 xinming_ joined 17:45 xinming left 17:49 cpage left 17:53 mr_ron joined, cpage joined 17:58 cdg left
mr_ron m: gist.github.com/ronaldxs/c8755a791...525a436d7f 17:59
camelia True
False
False
True
True
True
mr_ron Don't understand 'False' mismatch results ...
timotimo i think i know why it shows that it matched the token backwards 18:06
that's actually how <after> is implemented; it flips both the target string and the rule around so it can use the regular forwards parsing code 18:07
that way you can have variable-width lookbehind
mr_ron how come it matches for the token but not for the literal? 18:08
oh - it flips the rule
not clear it is doing the right thing in all cases here though 18:09
timotimo oh
it's correct that it's matching "or" because that's in the source string 18:10
because it's <!after>, right?
18:10 natrys joined
mr_ron it's matching 'ro' not 'or' ... I think 18:11
timotimo hm, ok, it's not the negation, it's the flipping 18:12
mr_ron should the token and the literal give different results? 18:13
AlexDaniel RT#131964 is related I think
synopsebot RT#131964 [new]: rt.perl.org/Ticket/Display.html?id=131964 [REGEX] Anchors ^, ^^, $, $$, «, » confused in <?after>
mr_ron I noticed the RT but wasn't sure it was the same problem ... will check again
AlexDaniel it's a different problem, but a bit similar 18:14
timotimo hm, so maybe we flip the order of things in the regex but we also need to exchange a few pairs?
my little brain has been cooked today while trying to figure out a profile thing … 18:18
18:22 bocaneri left 18:23 bisectable6 left, bisectable6 joined, ChanServ sets mode: +v bisectable6
mr_ron I looked through RT#131964 again and it looks related to "after" but with line/word/string boundaries and it seems TBD that they are the same. Planning to add new RT. 18:27
synopsebot RT#131964 [new]: rt.perl.org/Ticket/Display.html?id=131964 [REGEX] Anchors ^, ^^, $, $$, «, » confused in <?after>
18:28 athenot_ joined 18:29 mahafyi_ joined, athenot left
AlexDaniel mr_ron: maybe github issue instead? 18:33
18:33 mahafyi left
AlexDaniel unless you really like RT, which is fine too :) 18:33
18:33 mahafyi joined
AlexDaniel huggable: bug 18:34
huggable AlexDaniel, nothing found
AlexDaniel huggable: rakudobug
huggable AlexDaniel, Report bugs on github.com/rakudo/rakudo/issues/new If you don't have access to GitHub, you can email your report to [email@hidden.address] . See also: github.com/rakudo/rakudo/wiki/rt-introduction
18:36 pierre_ joined, mahafyi_ left
mr_ron ok 18:39
18:41 pierre_ left 18:48 darutoko- left 18:54 vcv left 19:02 splatt9990 left 19:05 domidumont left 19:07 committable6 left, committable6 joined 19:09 pharv_ left 19:10 pharv joined 19:13 cog_ left 19:15 cognominal joined 19:16 cog_ joined 19:17 vcv joined 19:19 AlexDaniel left, cognominal left 19:23 cognominal joined 19:24 cog_ left 19:25 espadrine joined 19:28 AlexDaniel joined 19:30 mahafyi left 19:33 athenot joined 19:34 athenot_ left 19:43 perigrin_ joined 19:45 pharv left, perigrin_ left, athenot left 19:46 athenot joined 19:53 committable6 left 19:54 itaipu_ left, itaipu joined 19:56 comborico1611 joined, committable6 joined, ChanServ sets mode: +v committable6
Geth doc/coke/build: 8 commits pushed by (Will "Coke" Coleda)++ 19:58
[Coke] (just a rebase) 20:00
that's... weird.
(that final link from geth isn't what I'd expect)
20:03 releasable6 left, releasable6 joined, ChanServ sets mode: +v releasable6 20:04 cdg joined 20:06 cdg_ joined 20:08 committable6 left 20:09 cdg left 20:10 travis-ci joined
travis-ci Doc build failed. Will "Coke" Coleda 'make directories a build dep' 20:10
travis-ci.org/perl6/doc/builds/359063988 github.com/perl6/doc/compare/6fa46...345e9455d4
20:10 travis-ci left
buggable [travis build above] ☠ Did not recognize some failures. Check results manually. 20:10
20:15 athenot left 20:16 athenot joined, committable6 joined 20:18 itaipu left, itaipu joined 20:38 pierre_ joined
lizmat www.reddit.com/r/perl6/comments/87..._anything/ # seems like someone has trouble with zef 20:42
20:43 pierre_ left 20:45 AlexDaniel left 20:53 AlexDaniel joined 20:55 kurahaupo_ joined, mcmillhj left 20:57 kurahaupo left 21:02 Bowlslaw joined
Bowlslaw :O 21:02
cool
21:03 vcv left 21:05 suneecat joined
Bowlslaw i've got a question about perl 6 21:05
pastebin.com/KjPVPPfP 21:06
21:06 suneecat left
Bowlslaw Cannot resolve caller sqlite3_bind(DBDish::SQLite::Native::STMT, Int, Date); none of these signatures match: 21:06
(DBDish::SQLite::Native::STMT $stmt, Int $n, Blob:D $b)
(DBDish::SQLite::Native::STMT $stmt, Int $n, Real:D $d)
(DBDish::SQLite::Native::STMT $stmt, Int $n, Int:D $i)
(DBDish::SQLite::Native::STMT $stmt, Int $n, Any:U)
(DBDish::SQLite::Native::STMT $stmt, Int $n, Str:D $d)
in method execute at /home/jon/opt/rakudo-star/share/perl6/site/sources/2D749062AA6D5641452CDA214FC7C566E7E3E2A1 (DBDish::SQLite::StatementHandle) line 38
in method insert at budgetpro.p6 line 54
in block <unit> at budgetpro.p6 line 86
oops! sorry
so um...that's the error i'm getting when I try to run my script
21:09 itaipu left 21:10 mcmillhj joined, kurahaupo_ left, kurahaupo joined
[Coke] do you have sqllite installed? 21:12
21:12 kurahaupo left
Bowlslaw yes 21:12
[Coke] (the binary/dev package)
Bowlslaw I tested it with basic statements and it works fine 21:13
21:13 kurahaupo joined
Bowlslaw yes i have libsqlite3-dev installed 21:13
timotimo that's not the problem here 21:14
21:14 mcmillhj left
timotimo looks like DBIish just doesn't support directly binding Date objects into a statement 21:14
Bowlslaw hmm 21:15
timotimo so maybe stringify it first or something; not sure how sqlite likes it
21:15 itaipu joined
Bowlslaw ok so I will try something like, my $date = date.new(now), and then using the $date var 21:15
timotimo it seems like you've already got a date object and dbiish doesn't like it, though? 21:16
21:17 skids left
[Coke] that'd still be a Date. 21:17
Bowlslaw what do you mean?
oh
it can't be a Date object at all? 21:18
hmm
[Coke] Seems like that's a reasonable feature request for DBIsh, but in the meantime, you might be able to use a string like timotimo suggests (but you'll probably have to format it yourself to get the right format)
Bowlslaw ok, thanks 21:19
yeah it's the date object 21:21
timotimo if you're interested in the internals, here's a few lines for you to look at: github.com/perl6/DBIish/blob/maste...#L113-L137
sqlite.org/c3ref/bind_blob.html - this is the official sqlite c interface docs, they don't seem to have anything in particular for Date 21:22
Bowlslaw hmmm
maybe the timestamp type is what they use
[Coke] timotimo: wonder if it would make sense to wrap it and have DBIish pick a "sane" format as a default and then save it as a string. 21:23
timotimo yeah, that'd surely be possible
[Coke] (but then yah, do you want timestamp, ISO dates...)
21:23 mcmillhj joined
timotimo the first stackoverflow find suggests you can just use unix timestamps 21:23
and bind them as 64 bit integers
Bowlslaw I want it to be in YYY-MM-DD so I can easily select purchases between certain dates 21:24
YYYY*
timotimo this is only about the internal format, you can still use datetime functions in SQL syntax as you are used to 21:25
21:28 wamba left, kurahaupo_ joined 21:29 mcmillhj left 21:30 kurahaupo left 21:36 kurahaupo joined 21:37 kurahaupo_ left
Bowlslaw thanks for the help, timotimo and [Coke] 21:38
21:41 mcmillhj joined 21:46 FROGGS left, mcmillhj left 21:47 sena_kun left 21:51 kurahaupo left, kurahaupo joined 21:59 khw left, Zoffix joined
Zoffix .tell tyil FWIW, someone is following your app tutorial and is having issues with modules on Windows. Maybe you'd know what's wrong: www.reddit.com/r/perl6/comments/87..._anything/ 22:00
yoleaux Zoffix: I'll pass your message to tyil.
22:00 Zoffix left 22:01 khw joined, mcmillhj joined
tyil I dont have any windows machine to reproduce that :/ 22:02
yoleaux 22:00Z <Zoffix> tyil: FWIW, someone is following your app tutorial and is having issues with modules on Windows. Maybe you'd know what's wrong: www.reddit.com/r/perl6/comments/87..._anything/
22:03 kurahaupo left, kurahaupo joined
AlexDaniel perlawhirl: FWIW, there are some extra commands that you might like: 22:04
6c: say (3, 1, 2).kv.first(-> $k, $v { $v == $k });
committable6 AlexDaniel, ¦6c (28 commits): «Too few positionals passed; expected 2 arguments but got 1␤ in block <unit> at /tmp/dKHSpxpk_K line 1␤␤ «exit code = 1»»
AlexDaniel and also 22:05
releases: say (3, 1, 2).kv.first(-> $k, $v { $v == $k });
committable6 AlexDaniel, ¦releases (28 commits): «Too few positionals passed; expected 2 arguments but got 1␤ in block <unit> at /tmp/TNIkFhccvj line 1␤␤ «exit code = 1»»
AlexDaniel oops
all: say (3, 1, 2).kv.first(-> $k, $v { $v == $k });
committable6 AlexDaniel, gist.github.com/8635ade756dd2d1b2c...f5dcd7b28f
AlexDaniel perlawhirl: basically, bisectable only checks 2015.12 and HEAD, but it's a 2-year range now 22:06
further we go, more functionality tends to flap back and forth… and checking just 2015.12 and HEAD is becoming less meaningful :( 22:07
AlexDaniel wonders what is happening with src/gen/m-ModuleLoader.nqp on older releases 22:08
22:09 mcmillhj left
timotimo anybody want to put a Digest::SHA256::Native implementation into GTK::Simple's Build.pm? maybe also a fallback to Digest 22:12
in case the powershell one fails, like it does on many machines
22:14 kurahaupo left, kurahaupo joined 22:17 mcmillhj joined 22:18 pharv joined 22:22 mcmillhj left 22:24 kurahaupo left 22:25 kurahaupo joined 22:29 mcmillhj joined 22:30 itaipu left 22:31 Bowlslaw left 22:34 mcmillhj left 22:35 espadrine left, pharv left, kurahaupo left 22:36 pmurias left 22:37 eliasr left 22:38 pharv joined 22:39 khw left 22:44 mcmillhj joined 22:45 MasterDuke left
comborico1611 Microsoft is a Linux Foundation platinum member, giving $500,000 per year. 22:45
yoleaux 16 Mar 2018 16:45Z <Zoffix> comborico1611: Perl 6 is already being left. The proposals are for an *alias* to Perl 6, not replacement.
22:47 jferrero joined
timotimo ... that's a ridiculously low amount of money for a ginormous company like microsoft ... 22:48
22:49 mcmillhj left
timotimo looks like they had a net income of 21 billion dollars last year, that'd come down to ... 22:51
m: say 500_000 / 21_000_000_000
camelia 0.000024
timotimo m: say 500_000 / 21_000_000, " percent"
camelia 0.023810 percent
comborico1611 $500,000 is estimated to be the salaries of 1 manager and 3 testers, plus some equipment. 22:52
22:52 pharv left
comborico1611 Salaries of Microsoft employees. 22:52
timotimo is that the kind of manager that makes about 10000x as much money as they should earn?
probably not
comborico1611 timotimo: www.youtube.com/watch?v=-YdL7Hch78s 22:53
timotimo no time :| 22:54
22:54 Voldenet left
comborico1611 It's important if you're not aware that Micosoft is buying influence into Linux. 22:54
But I understand. 22:55
timotimo i'm this |--| close to fixing the bug i've been hunting since basically breakfast
comborico1611 Bug hunt! Sounds fun. 22:57
22:57 pharv joined 22:59 mcmillhj joined
comborico1611 Embrace Exchange Extinguish. 23:01
23:01 pharv left, pharv joined, Voldenet joined, Voldenet left, Voldenet joined 23:02 natrys left 23:04 mcmillhj left 23:10 BenGoldberg joined 23:14 athenot_ joined 23:15 athenot left, noganex left 23:18 mcmillhj joined 23:19 markong left 23:23 mcmillhj left 23:25 AlexDaniel left 23:26 khw joined 23:28 TEttinger joined 23:33 mcmillhj joined 23:35 pharv left 23:38 pharv joined, mcmillhj left 23:46 athenot_ left 23:47 athenot joined 23:49 MasterDuke joined 23:50 mcmillhj joined 23:55 mcmillhj left 23:56 skids joined, pierre joined