»ö« 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:07 cpage_ left 00:23 wamba joined 00:32 Guest7088 is now known as Aceeri 00:34 notbenh left 00:35 mcmillhj joined 00:38 notbenh joined, kerframil left
comborico1611 Pong 00:39
00:42 mcmillhj left 00:44 Cabanossi left 00:45 Cabanossi joined
timotimo tyil: i recommend you use the deletion feature of pause so that we can all forget that existed 01:01
deleted files are kept on another page, i believe
still.
01:03 mson left 01:10 cdg joined 01:14 cdg left 01:16 aborazmeh joined, aborazmeh left, aborazmeh joined 01:17 margeas left 01:20 margeas joined 01:26 ryn1x joined 01:30 Cabanossi left, bisectable6 left, bisectable6 joined 01:31 Cabanossi joined 01:33 kalkin-- joined 01:37 margeas left, kalkin- left 01:47 ccakes_ joined 01:50 mcmillhj joined 01:51 Ven joined, ccakes_ left, Ven is now known as Guest76184 01:53 ccakes_ joined 01:54 ccakes_ left 01:55 mcmillhj left, Guest76184 left 01:56 comborico1611 left 01:59 ccakes_ joined, BenGoldberg joined 02:02 mcmillhj joined 02:06 ccakes_ left, mcmillhj left 02:07 mson joined 02:14 Cabanossi left 02:15 mcmillhj joined 02:16 Cabanossi joined 02:21 mcmillhj left 02:27 cdg joined 02:29 ryn1x left 02:32 cdg left 02:34 ryn1x joined 02:36 mcmillhj joined, konsolebox left 02:38 konsolebox joined 02:39 R0b0t1_ left 02:40 mcmillhj left
Geth doc: 0964f8ea77 | (Tom Browder)++ (committed using GitHub Web editor) | doc/Language/concurrency.pod6
edit tweaks
02:45
synopsebot Link: doc.perl6.org/language/concurrency
02:46 ilbot3 left 02:48 mcmillhj joined 02:49 mr-fooba_ left 02:51 Ven joined 02:52 Ven is now known as Guest5943, mr-foobar joined
ZzZombo timotimo, it doesn't work: 02:52
m: class A does Encoding {method name{'asd'};method decoder{};method encoder{};method alternative-names{('bsd')}};say Encoding::Registry.register(A)
camelia P6opaque: no such attribute '$!reified' on type List in a Str when trying to get a value
in block <unit> at <tmp> line 1
timotimo you're returning a single string from alternative-names 02:53
02:53 mcmillhj left
timotimo m: class A does Encoding {method name{'asd'};method decoder{};method encoder{};method alternative-names{('bsd',)}};say Encoding::Registry.register(A) 02:53
camelia Nil
ZzZombo ah shit
timotimo alternative-names is an optional method for this role, though, as it has an implementation
the error could definitely be improved there
by putting a typecheck in place 02:54
ZzZombo m: class A does Encoding {method name{'asd'};method decoder{};method encoder{}};say Encoding::Registry.register(A)
camelia This type (Scalar) does not support elems
in block <unit> at <tmp> line 1
ZzZombo ^
timotimo oh? interesting
02:55 ilbot3 joined, ChanServ sets mode: +v ilbot3
timotimo just misses a decont i reckon 02:56
will take a bit for me to recompile and test
the change might even make it into the release 02:57
02:58 mcmillhj joined
ZzZombo I don't see how can my encoder access the options passed to `encoder` call of my encoding. 03:00
timotimo you take that parameter in your encoder method and pass it on to the constructor of your encoder 03:01
for example method encoder(*%opts) { Encoding::UCS2.new(*%opts) } 03:02
ZzZombo ah
03:03 mcmillhj left, Herby_ joined
Herby_ o/ 03:03
araraloren o\ 03:04
o_\
Herby_ \o/
03:05 ryn1x left 03:08 Guest5943 left 03:09 mcmillhj joined 03:10 noganex joined 03:12 noganex_ left
timotimo ZzZombo: i pushed a fix to rakudo, and a test to roast. if our release manager doesn't object to it, it'll be in the next release i think 03:13
03:13 Cabanossi left 03:16 Cabanossi joined 03:17 ryn1x joined 03:18 mcmillhj left 03:19 Aceeri_ joined 03:23 ryn1x left 03:26 Aceeri left 03:30 ryn1x joined 03:38 ryn1x left 03:45 kitsunenokenja joined 03:50 troys_ is now known as troys, mr-fooba_ joined 03:54 mr-foobar left 04:08 kerframil joined
ZzZombo wow, that's a lot of functions in Encoding::Decoder, what should I do with them, timotimo? 04:13
Also grats on the fix.
04:25 dj_goku joined 04:28 Cabanossi left 04:29 Cabanossi joined 04:30 mcmillhj joined 04:35 mcmillhj left, Morfent joined 04:38 Mrofnet left 04:43 cdg joined, Herby_ left 04:45 mcmillhj joined, konsolebox left 04:46 konsolebox joined 04:48 cdg left 04:50 mcmillhj left 05:02 kitsunenokenja left 05:03 mr-foobar joined 05:05 mr-fooba_ left, ryn1x joined 05:10 kerframil left 05:11 wamba left 05:12 Herby_ joined 05:13 R0b0t1_ joined, mson left 05:17 mson joined 05:22 troys is now known as troys_ 05:23 tejr joined 05:26 ccakes left, ccakes joined 05:35 ryn1x left 05:41 konsolebox left 05:46 konsolebox joined, llfourn joined 05:48 Herby_ left 06:01 aborazmeh left 06:02 BenGoldberg left 06:06 syntaxman joined 06:09 BenGoldberg joined 06:11 konsolebox left 06:12 konsolebox joined 06:27 Cabanossi left 06:29 Alikzus joined, Cabanossi joined 06:33 troys_ is now known as troys
ZzZombo Alternatively, how could I delegate decoding to the built-in UTF-16 decoder? 06:34
06:43 xtreak joined 06:45 mcmillhj joined 06:50 mcmillhj left 07:13 troys is now known as troys_ 07:24 lizmat left 07:28 darutoko joined 07:36 troys_ is now known as troys 08:05 rindolf joined 08:12 eugene_barsky joined
eugene_barsky hi 08:12
ZzZombo hi 08:13
eugene_barsky On one of my laptops REPL startup takes long time — several times longer than on the other, which is similar in terms of hardware. What can be the reason and what the solution? My system: Kubuntu 17.10, perl6 2017.10 (but the problem was present on the previous version as well) 08:14
08:21 domidumont joined 08:24 troys left 08:25 domidumont left 08:26 domidumont joined 08:27 Cabanossi left 08:30 Cabanossi joined 08:32 konsolebox left 08:33 mson left 08:38 konsolebox joined 08:42 cdg joined 08:46 mcmillhj joined, cdg left 08:50 mcmillhj left 08:56 robertle joined 08:57 wamba joined 08:58 domidumont left 08:59 ivans_ joined, kalkin-- left 09:00 xtreak left 09:02 ivans left, xinming_ left 09:13 ufobat joined 09:22 BenGoldberg left 09:42 Cabanossi left 09:45 Cabanossi joined 10:15 unicodable6 left, coverable6 left, greppable6 left, nativecallable6 left, bisectable6 left, squashable6 left, bloatable6 left, releasable6 left, benchable6 left, quotable6 left, evalable6 left, statisfiable6 left, committable6 left, evalable6 joined, nativecallable6 joined, quotable6 joined, ChanServ sets mode: +v quotable6, tangible6 joined, ChanServ sets mode: +v tangible6, releasable6 joined, ChanServ sets mode: +v releasable6, unicodable6 joined, bloatable6 joined, benchable6 joined, committable6 joined, ChanServ sets mode: +v unicodable6, greppable6 joined, coverable6 joined, ChanServ sets mode: +v coverable6, squashable6 joined, bisectable6 joined, statisfiable6 joined, ChanServ sets mode: +v statisfiable6 10:20 lizmat joined 10:21 lizmat left
Geth doc: e67b027957 | (Tom Browder)++ (committed using GitHub Web editor) | doc/Language/glossary.pod6
fix spelling
10:23
synopsebot Link: doc.perl6.org/language/glossary
10:29 Cabanossi left 10:30 Cabanossi joined 10:37 sena_kun joined 10:46 mcmillhj joined
sjn o/ 10:47
sjn looked at the new Perl 6 brochure. Really nice! :)
10:51 mcmillhj left 10:57 mcmillhj joined 11:02 mcmillhj left, Ven joined 11:03 Ven is now known as Guest51756 11:04 lizmat joined
lizmat waves from T-Dose 11:04
11:10 mr-foobar left 11:16 mcmillhj joined 11:21 mcmillhj left 11:25 Guest51756 is now known as Ven`` 11:27 Cabanossi left 11:30 Cabanossi joined 11:37 Ven`` left 11:38 konsolebox left 11:43 konsolebox joined
moritz sjn: link? 11:47
ZzZombo <ZzZombo> wow, that's a lot of functions in Encoding::Decoder, what should I do with them, timotimo? 11:58
12:04 konsolebox left 12:06 mr-foobar joined
gfldex eugene_barsky: Rakudo may scan some directories for modules. strace might help. 12:07
12:07 blakers joined
blakers gm perl6ers 12:07
12:08 mr-foobar left 12:10 lizmat left 12:12 Cabanossi left 12:14 Aaronepower joined 12:16 Cabanossi joined
eugene_barsky gfldex: thanks, I'll try. 12:18
12:18 Cabanossi left 12:19 Cabanossi joined 12:20 Cabanossi left 12:21 Cabanossi joined 12:23 margeas joined, Cabanossi left 12:24 Cabanossi joined 12:27 __luke__ joined, __luke__ is now known as ___luke___
___luke___ Hello, I'm trying to golf a bit of Perl 6 code down to less than 95 bytes. Does someone know another trick I could use? Here's my code (now 107 bytes): say " .-@@-.";say " "x(($_-2.5).abs+|0)~($_+>2??'\/'x(9-$_)!!(<= - = _>[$_]x((6,8)[$_]||10),).gist)for ^9 12:29
12:37 ___luke___ left 12:40 nebuchadnezzar joined, blakers left 12:42 lizmat joined 12:44 Cabanossi left 12:45 Cabanossi joined 12:54 Cabanossi left, Cabanossi joined 13:03 eliasr joined 13:06 ___luke___ joined 13:15 kitsunenokenja joined 13:16 kitsunenokenja left 13:27 lizmat left 13:30 lizmat joined 13:47 mcmillhj_ joined 13:52 mcmillhj_ left, bolts left 13:57 MasterDuke joined 14:01 comborico1611 joined
comborico1611 Greetings 14:03
14:03 mcmillhj_ joined, mr-foobar joined
masak comborico1611: ahoj 14:04
comborico1611 Ahoj? 14:05
14:08 mcmillhj_ left
comborico1611 Ship ahoy. 14:09
You Czech?
14:16 mcmillhj_ joined 14:17 Sgeo_ left 14:21 mcmillhj_ left 14:26 philomath_ joined 14:27 mcmillhj_ joined 14:29 philomath_ is now known as philomath 14:31 mcmillhj_ left 14:37 philomath_ joined 14:38 john_parr left 14:39 ___luke___ left 14:40 philomath left 14:41 konsolebox joined 14:45 john_parr joined
lizmat no, masak is suite 14:47
14:59 mcmillhj joined 15:02 tejr left, tejr joined 15:03 mcmillhj left 15:05 mcmillhj joined 15:10 mcmillhj left
Ulti the thing missing from code golf is elegance and readability 15:14
the competition sites should all have beauty or something as a community defined metric
15:15 mcmillhj joined 15:18 darkmorph joined, darkmorph is now known as kitsunenokenja 15:19 SylvieLorxu joined 15:20 mcmillhj left
timotimo act.yapc.eu/lpw2017/talk/7213 - should we tell them to maybe not use rakudobrew? 15:22
15:27 philomath_ is now known as philomath 15:35 zakharyas joined 15:38 zakharyas left 15:39 zakharyas joined
lizmat timotimo: I'll probably attend that, so I will mention :-) 15:47
perhaps even catch Lance before he gives his talk
timotimo i can tweet at them 15:48
15:53 MasterDuke left
lizmat timotimo: by all means, tweet! :-) 15:55
.oO( fewer things to remember to do once in London for me )
15:56 philomath left, philomath joined 16:01 MasterDuke joined
timotimo twitter.com/loltimo/status/931915416514985984 - i hope this formulation doesn't come off as rude or anythign 16:02
16:03 john_parr left
tadzik so how about we rewrite rakudobrew into something meant for end-users and rebrand a tool for devs into something else? 16:05
if Perl 6 has taught us anything it's that once people learn what a name is they never unlearn it, even if they weren't right in the first place
timotimo haha 16:06
good point
El_Che tadzik: you're concentrated evil ;)
tadzik I solve practical problems :P 16:07
www.youtube.com/watch?v=SNgNBsCI4EA
tyil there's no perl6 cloak available on freenode, is there? 16:08
16:08 zakharyas1 joined, zakharyas left, philomath left
tadzik oh, cloaks! I haven't heard of that thing in a while :) 16:08
timotimo if someone does the paperwork, i'll take one as well
16:11 ccakes left, ccakes joined 16:15 john_parr joined
tyil I'm not sure how much work would be involved, but there's an ircop in another channel I'm in, I can just ask :> 16:18
timotimo you mean the one who starts with m and ends in st? :) 16:19
ZzZombo timotimo: help with writing decoder is appreciated, it's the last thing that holds me back. 16:36
timotimo right, the decoder is a bit more complicated because we really want to be able to deal with partial data coming in
i thought you only needed an encoder 16:37
however, you're relatively in luck. you don't have to deal with variable width data pieces at all; everything is 16 bit units all the time, and you don't even have to support surrogates!
ZzZombo Well, it would complicate having to encode/decode using different encodings. 16:38
timotimo oh, you mean switch in between?
ZzZombo No, I'm answering your previous line 16:39
<timotimo> i thought you only needed an encoder
timotimo right, i thought you were only taking data in, never writing data back out into this horrible horrible format :)
ZzZombo I could use UTF-16 encoding to read files, and write using my custom UCS-2 encoding, but that's a terrible mess then of a code to support. 16:40
timotimo i can't help terribly much, need to rest my wrists for RSI reasons 16:42
ZzZombo I could help if you could tell me if it's possible to write an decoder that would just delegate decoding to the built-in UTF-16 decoder. 16:43
It*
timotimo oh
well, yes of course it is :)
16:43 Morfent left
timotimo method decoder(*%options) { return Encoding::Registry.find("utf16").decoder(*%options) } 16:43
ZzZombo wow 16:44
timotimo something like that
ZzZombo and here I am, preparing myself to write a dozens of lines for that.
the asterisk isn't needed in the `decoder` call, is it? 16:45
timotimo it expects options to be passed as individual named parameters, not a single hash 16:46
ZzZombo ah
I thought it's what Slip for 16:47
haven
timotimo er
sorry, yes, it is
ZzZombo oops
timotimo i'll be AFK for a bit; i hope you'll succeed in your codec business 16:52
ZzZombo yea, thanks a lot! 16:53
16:58 poohman joined 16:59 lizmat left 17:03 poohman left 17:12 khw joined 17:13 dgsntro joined, kitsunenokenja left
ZzZombo timotimo: I've registered my encodings, but when attempting to use one it dies with "unknown string encoding ucs-2le", even tho `Encoding::Registry.find('ucs-2le').say` does find it. 17:26
17:36 ChoHag left 17:37 zakharyas1 left 17:38 konsolebox left
timotimo ZzZombo: can you give me your code to experiment with? 17:41
ZzZombo: that is very strange, because the find method is the only place in the whole core setting that can throw that exception 17:43
17:44 konsolebox joined
ZzZombo will do, wait up 17:44
timotimo: gist.github.com/ZzZombo/e78cad5672...0b33ad6bb5 17:54
timotimo if you turn your BUILD into a TWEAK you won't have to re-write all the default values in the signature 17:56
ZzZombo done. 17:58
timotimo huh. well, that's certainly wrong. 18:00
for now just pass the encoding object to :enc instead, does that work? 18:02
actually it doesn't seem to work?
ZzZombo Malformed UTF-8 at line 1 col 1 18:04
in sub MAIN at encode.p6 line 101
timotimo it ignores anything but Str passed to enc, and it doesn't seem to look at the registry at all 18:05
ZzZombo huh 18:06
timotimo i'm afraid you might have to use the decoder API directly here 18:07
or since you're just slurping put "utf16" instead
ZzZombo you mean in the meantime? Until it's fixed? 18:09
whenever that will be
timotimo yeah
the next release is like today 18:10
so a fix likely won't make it in
ZzZombo last resort, I'll do it, sigh
so much for this though
18:11 domidumont joined
timotimo might be enough to nqp::decode(nqp::decont($myblob, Encoding::Registry.find("foobar")) 18:12
ugh, we don't have a streaming decoder implementation for utf16 18:14
setting the encoder properly seems to be set up for IO.open, but not for slurp and friends
and also not for Blob.decode and such
Str.encode on the other hand does query the registry 18:15
or maybe the fix is so blatantly easy that i can just commit it right soon 18:18
18:19 jstuder joined
timotimo hackety hack 18:19
ZzZombo That would be best, not the hack, but fixing it. 18:20
18:24 kitsunenokenja joined 18:26 mson joined
timotimo i'm not making much progress, and i've gotta go again 18:31
jstuder Hey all. I have a question regarding the docs. In the "Truncating slices" section of /Language/subscripts it says that using a Range will truncate the output to only defined elements. But this is not currently the case in Rakudo. 18:33
Is this a bug in Rakudo or an error in the docs? I can't find it in the specs or roast.
jnthn m: my @a = 1..10; say @a[5..15] 18:34
camelia (6 7 8 9 10 (Any) (Any) (Any) (Any) (Any) (Any))
jnthn m: my @a = 1..10; say @a[5..*]
camelia (6 7 8 9 10)
jnthn It's only true for ranges with a * or Int endpoint
And the general rule is that lazy = truncate, non-lazy = don't
m: my @a = 1..10; say @a[lazy 5..15]
camelia (6 7 8 9 10)
jstuder yeah. the docs say it is the case for all ranges
jnthn Yeah, that's not right
jstuder ok i'll open an issue in the repo and can change that in the docs. 18:35
thanks for the clarification
I can add a new test in the roast as well to make it explicit that Non-lazy ranges/iterable means the potential of undefined elements 18:38
jnthn I'm pretty sure there are some there 18:42
I remember implementing these semantics (truncate if lazy, don't otherwise)
jstuder Ok, but if not, I'll add them.
jnthn The issue with ranges always truncating was things like @a[^10] = 1..10; on an empty @a would become a no-op :) 18:43
Sure, please add any for things you feel aren't sufficiently covered :)
AlexDaniel jstuder++ 18:44
jstuder Oh I see. yeah that would be a problem. I'll try to get all that in the docs
18:56 evalable6 left, evalable6 joined 19:13 darutoko left 19:22 dgsntro left 19:43 astronavt joined 20:00 domidumont left 20:03 domidumont joined, domidumont left 20:06 eugene_barsky left 20:18 cdg joined 20:20 astronavt left 20:22 ryn1x joined, ryn1x left 20:24 rindolf left 20:27 zakharyas joined
tyil timotimo: I didnt know mst was fnode staff until now 20:28
but I know another guy who specifically deals with handing out cloaks 20:29
20:29 ryn1x joined
tyil he told me to send an email with the request 20:29
so I did
he tells me there's a perl cloak already available, so he cant just hand out the perl6 cloak, it would probably take a day
20:30 ChoHag joined 20:31 ryn1x left, mingdao left, mingdao joined 20:36 zakharyas left 20:41 poohman joined
poohman hello all 20:41
java.nio.file.NoSuchFileException: blib/Perl6/BOOTSTRAP.jar
this comes up when I try to use perl6-j 20:42
perl6-m works fine
I compiled rakudo with both backends 20:43
20:43 lizmat joined
bartolin poohman: hmm, what version of rakudo ddid you compile? 20:44
poohman did a git clone today 20:45
let me check
This is Rakudo version 2017.10-211-g2f0da94c3 built on JVM
implementing Perl 6.c.
20:45 comborico1611 left, AndChat|688961 joined
bartolin the jvm backend has a lot of issues, unfortunately. but it shouldn't fail like that ... 20:46
do you get the same error if you run ./perl6-j -e '' in the directory where you build it?
poohman let me try 20:47
bartolin there definitely is an issue with 'make test' (which uses the EvalServer) before executing 'make install'. it fails with the same error, see rt.perl.org/Ticket/Display.html?id=132101 20:48
poohman: I've run a spectest with a perl6-j just one commit older than yours. there are failing tests, but most things work fine. 20:52
poohman ./perl6-j -e 'say "Hello"' works in the rakudo source folder 20:53
even perl6-j -e 'say Hello"' works
20:54 char_var[buffer] left
bartolin ah, good. and what caused the above error (NoSuchFileException)? 20:54
poohman should I include the source folder in the PATHand try? to get the blib folder in
?
20:56 eroux joined
bartolin after running 'make install' that shouldn't be necessary. could you gist the code that triggers the error? maybe that rings a bell with me. 20:59
poohman paste.gnome.org/prdbbzp9z 21:02
21:02 zakharyas joined
poohman i had just used zef to install the modules 21:03
should I use zef-j also?
bartolin last time i looked, zef did not work with perl6-j :-( I haven't tried in a while, though ... 21:04
poohman i found something else 21:06
~/source/rakudo/install/bin/perl6-j -e 'say "Hello"'
gives the same error
~/source/rakudo/perl6-j -e 'say "hello"' 21:08
Error: Could not find or load main class perl6
this happens when my PWD is not ~/source/rakudo/ 21:09
it works onlz when the PWD is ~/source/rakudo
bartolin poohman: yeah, i can reproduce it :/ 21:12
poohman ok so I hopefully didnt botch the install up 21:13
i tried the jvm backend only todaz 21:14
bartolin poohman: no, it just doesn't look at the right place (and that's a bug). the BOOTSTRAP.jar file should be in your install dir under share/nqp/lib/Perl6/
poohman ok 21:15
bartolin poohman: the jvm backend is in bad shape. you really should use the moar backend, if you want to use perl6 (instead of hunting bugs :-) 21:16
poohman: but this particular problem should be fixable. I'll take a closer look.
so, thanks for bringing this up! 21:17
poohman ok - was trying some clojure and scala - java interop was pretty easy - atleast in scala - but after seeing paul Phillips rants thought would be great if perl6 java interop worked 21:18
will try to get stuff done via nativecalls in moar - thanks for your help 21:20
bartolin your welcome 21:23
21:26 mson left
bartolin poohman: it turns out there is a superfluous 'nqp-lib=blib' in the installed versions of 'perl6' and 'perl6-j'. removing that seems to help with finding BOOTSTRAP.jar. but as feared, installing zef fails after a while ... 21:29
poohman you mean you cant install zef after removing it or zef cant install modules? 21:33
21:36 benchable6 left, nativecallable6 left, greppable6 left, quotable6 left, evalable6 left, statisfiable6 left, coverable6 left, tangible6 left
bartolin poohman: i tried to install zef but it failed with a NullPointerException somewhere 21:37
poohman ok
21:37 releasable6 left, bloatable6 left, bisectable6 left, squashable6 left, committable6 left, unicodable6 left 21:38 bloatable6 joined, quotable6 joined, tangible6 joined, ChanServ sets mode: +v tangible6, bisectable6 joined, committable6 joined, ChanServ sets mode: +v committable6, nativecallable6 joined, releasable6 joined, ChanServ sets mode: +v nativecallable6, ChanServ sets mode: +v releasable6, coverable6 joined, ChanServ sets mode: +v coverable6, greppable6 joined, ChanServ sets mode: +v greppable6, evalable6 joined, ChanServ sets mode: +v evalable6, benchable6 joined, ChanServ sets mode: +v benchable6, unicodable6 joined, ChanServ sets mode: +v unicodable6, statisfiable6 joined, squashable6 joined, ChanServ sets mode: +v squashable6
poohman zef works for me, zef-j fails with a serialization error - but ill leave the -j stuff alone for awhile :) 21:38
21:40 poohman left
Geth whateverable: e9ccebadca | (Aleks-Daniel Jakimenko-Aleksejev)++ | lib/Whateverable.pm6
Fix KB/MB bug, use Telemetry

Issue #260.
21:44
mst timotimo: btw the paperwork for cloaks is "ask me" 21:49
stmuk maybe we should learn from the Utimate OSS Marketeers 21:50
mst tyil: please as timotimo suggested talk to me rather than bothering other staffers, the perl6 group is already registered and I can give out cloaks w/in it
tyil mst: hi
stmuk www.ebay.ca/itm/Official-OpenBSD-6...3265944606
tyil kline told me to talk to you as well
cool tho 21:51
can I request such a cloak? :3
mst sending in a duplicate request and putting samcv's name on it without bothering to tell them you were doing that was not particularly good.
tyil I didnt put her name in it tho 21:52
mst shrugs 21:54
it's so much easier if you listen to people in channel sending you to the right place :P 21:55
tyil that was past the time I contacted kline :(
mst also staff *don't* give out project cloaks, projects do
I just happen to be staff as well as perl+perl6 group contact 21:56
tyil I didnt know those things :(
21:58 tejr left, tejr joined
samcv i think i was busy and didn't understand what was going on as well, since i was fixing a release blocker and just sort of scanned the channel and didn't understand what wa sgoing on 21:58
mst yeah, it's all fine 21:59
however, given just yesterday we had
< ugexe> tyil: i would suggest removing the folder "perl6-nigger" from your distribution before uploading it to cpan (App-Cpan6-0.8.0.tar.gz)
I don't think I'll be offering tyil a perl6 affiliated cloak for the moment
anybody else who wants one is welcome to /msg me and ask 22:00
tyil :<
that mistake was already fixed tho
simcop2387 i wouldn't mind one but i expect i should do something perl6 related first
mst simcop2387: I was assuming you'd want a perl cloak if any
simcop2387 probably but i don't think i care. came here since i got an alert in here because of so many spammers using that word it's on a hilight for me now. 22:01
22:01 mson joined 22:02 lizmat left, samcv joined
TEttinger cloak? i.imgur.com/9Ybgz.gif 22:03
22:03 xinming joined 22:08 robertle left 22:10 zakharyas left
timotimo mst: cool, i'd like a cloak, what are the options? 22:19
mst perl6/name or if you have a commit bit to any of the core stuff perl6/developer/name but I'm also open to suggestions for what the middle bit could contain if you want something else 22:21
22:22 astronavt joined 22:33 MasterDuke left 23:03 bisectable6 left, squashable6 left, quotable6 left, bloatable6 left, releasable6 left, unicodable6 left, nativecallable6 left, committable6 left, evalable6 left, tangible6 left, greppable6 left, coverable6 left, benchable6 left, statisfiable6 left, nativecallable6 joined, tangible6 joined, ChanServ sets mode: +v tangible6, committable6 joined, quotable6 joined, greppable6 joined, ChanServ sets mode: +v greppable6, benchable6 joined, releasable6 joined, evalable6 joined, bloatable6 joined, unicodable6 joined, coverable6 joined, ChanServ sets mode: +v bloatable6, ChanServ sets mode: +v unicodable6, ChanServ sets mode: +v coverable6, squashable6 joined, ChanServ sets mode: +v squashable6, bisectable6 joined, ChanServ sets mode: +v bisectable6, statisfiable6 joined 23:07 wamba left 23:13 wamba joined 23:17 Sgeo joined 23:19 Sgeo_ joined 23:21 Sgeo left
timotimo timo@is/the/best/at/perl6 :P 23:25
i'd like a developer one please 23:26
23:28 jast joined 23:31 Sgeo joined, comborico1611 joined 23:32 AndChat|688961 left, Sgeo_ left 23:47 MasterDuke joined 23:54 Geth left, Geth joined, ChanServ sets mode: +v Geth
tbrowder what exactly is a “cloak?” 23:57
AlexDaniel freenode.net/kb/answer/cloaks 23:59