Re: PostgreSQL: Raku as a "trusted" language?

2024-06-28 Thread Darren Duncan
nd they would be more comfortable using it. -- Darren Duncan

Re: Raku regex assert doesn't match

2023-07-30 Thread Darren Duncan
onsiders a char, and this seemed the best way to be sure. -- Darren Duncan On 2023-07-30 9:30 p.m., William Michels via perl6-users wrote: Hi Darren (and Marcel), Two different approaches: https://docs.raku.org/language/regexes#Conjunction:_&&; <https://docs.raku.org/languag

Raku regex assert doesn't match

2023-07-29 Thread Darren Duncan
g for a fully declarative solution in the grammar itself, not something involving post-processing. Thank you. -- Darren Duncan

Re: Rust community in distress

2023-06-09 Thread Darren Duncan
The video is less than 10 minutes long, its not that much effort to watch. The TL;DW is some bad stuff happened but some things are improving after. -- Darren Duncan On 2023-06-09 12:26 a.m., Veesh Goldman wrote: Could I get a TL;DW on that video? I love Rust, and would hate to see anything

Re: Rust community in distress

2023-06-08 Thread Darren Duncan
And here Rust seemed to be massively gaining in popularity, and was just supported officially for Linux kernel driver support etc. -- Darren Duncan On 2023-06-08 11:17 a.m., Parrot Raiser wrote: See https://youtu.be/QEnuzwCWpgQ <https://youtu.be/QEnuzwCWpgQ> This is not meant to be an e

Re: Using fez

2022-07-11 Thread Darren Duncan
On 2022-07-10 10:56 a.m., Elizabeth Mattijsen wrote: Fez (aka https://360.zef.pm) will provide *all* versions. The above url just displays a big data structure when visiting it in a web browser, and not a normal website, is that correct? -- Darren Duncan

Re: author specification

2022-05-11 Thread Darren Duncan
et domain name, say "muldis.com" or alternately its reversed "com.muldis" form, as an "auth" while making it explicit that this is an internet domain name, but without naming any protocols like "http" or "https" etc. Is there some kind of bes

Re: hope we have the distributed computing [Raku]

2021-11-27 Thread Darren Duncan
nd be the primary developer working on it? -- Darren Duncan

Re: Please create a Raku community channel

2021-03-13 Thread Darren Duncan
x27;t see why they can't BOTH be official sites, like Version 1 plus Version A, no reason to have to pick one. -- Darren Duncan

Re: Please create a Raku community channel

2021-03-13 Thread Darren Duncan
I agree, I would also like to know of this official channel and join it. -- Darren Duncan On 2021-03-12 11:21 p.m., Richard Hainsworth wrote: This is a request to the Raku Coordinating Council that was elected at the end of last year. Please name a channel where community wide plans or

Re: My OOP keeper

2021-02-14 Thread Darren Duncan
Thank you to those who replied to my question with private messages. I now understand what is meant by "keeper" here. -- Darren Duncan On 2021-02-14 1:38 p.m., Darren Duncan wrote: On 2021-02-12 8:12 p.m., ToddAndMargo via perl6-users wrote: I have been working on this keeper f

Re: My OOP keeper

2021-02-14 Thread Darren Duncan
ku OO system. So does "keeper" mean "documentation" here? Otherwise please explain, thank you. -- Darren Duncan

FYI - Raku grammar compile speedup with preceding surrounder syntax

2020-12-26 Thread Darren Duncan
grammar compile in 1 second rather than 6-7 seconds on my 2013 machine. See https://github.com/muldis/Muldis_Object_Notation/commit/568713257c474ad393d2dd6777e2147432cf6ec5 for the exact diff in question that led to this speedup. -- Darren Duncan

Re: The SF Perl Raku Study Group, 10/4 at 1pm PDT

2020-10-01 Thread Darren Duncan
These messages are archived on the public internet as far as I know so you've just made your room and its password published publicly. I hope your Zoom has a waiting room enabled. -- Darren Duncan On 2020-10-01 12:24 p.m., Joseph Brenner wrote: Where is the wisdom we have lost in know

Re: Place for examples in a Raku module?

2020-08-14 Thread Darren Duncan
I would put the examples folder at the root level of the distro, as a peer to lib and a peer to the tests folder. -- Darren Duncan On 2020-08-13 9:25 p.m., Stuart Hungerford wrote: Hi, I'd like to add some example modules to a Raku module I'm working on. These are not strictly

Re: doing an inner join via cross-product

2020-07-19 Thread Darren Duncan
This reminds me of my 2009 Set::Relation Perl module, which works to help you do SQL features like this in your application, but will soon be superseded by another module that also has a Raku version. -- Darren Duncan On 2020-07-19 1:02 p.m., Joseph Brenner wrote: I was thinking about the

Re: irrational nubmer?

2020-02-22 Thread Darren Duncan
On 2020-02-20 2:22 p.m., ToddAndMargo via perl6-users wrote: On 2020-02-20 00:41, Darren Duncan wrote: On 2020-02-20 12:10 a.m., Tobias Boege wrote: Granted, Todd would not have anticipated this answer if he calls arbitrary length integers "magic powder" and the question "I hav

Re: irrational nubmer?

2020-02-20 Thread Darren Duncan
ype can represent is exactly expressible as the ratio of 2 integers. -- Darren Duncan

Re: irrational nubmer?

2020-02-19 Thread Darren Duncan
into Raku are non-symbolic, so the test is simply "false". There probably are or probably can be symbolic numeric types, but they wouldn't be core. -- Darren Duncan On 2020-02-19 6:57 p.m., ToddAndMargo via perl6-users wrote: Hi All, This is a complete trivia question. Is

Re: perl6 with XS

2020-02-02 Thread Darren Duncan
Raku has the Native Call interface https://docs.raku.org/language/nativecall which is what you use instead. -- Darren Duncan On 2020-02-02 6:36 p.m., wes park wrote: HI In perl5 we can use the underline C library for example JSON C with XS interface. In perl6 how can we implement it? Thanks

Re: problems with xor

2020-01-17 Thread Darren Duncan
On 2020-01-17 9:00 p.m., ToddAndMargo via perl6-users wrote: Still don't know what they used the word "sub" The term "sub" is short for "subroutine", and declaring routines that way is part of the Perl legacy that lasted into Raku. -- Darren Duncan

Re: Once again - You say one thing and do another Re: Bug to report: cardinal called an integer

2020-01-16 Thread Darren Duncan
larly. -- Darren Duncan

Re: Bug to report: cardinal called an integer

2020-01-16 Thread Darren Duncan
e unsigned integer: P6opaque, Str I also believe the latter would work best for this. -- Darren Duncan

Re: Bug to report: cardinal called an integer

2020-01-13 Thread Darren Duncan
On 2020-01-12 11:32 p.m., ToddAndMargo via perl6-users wrote: On 2020-01-12 20:03, Darren Duncan wrote: A uint32 is NOT specifically a cardinal. Since a uint32 ca not be negative or a fraction, it is a cardinal.  Other operating system do call them cardinals, such as Modula2. Pascal, C++ (I

Re: Bug to report: cardinal called an integer

2020-01-13 Thread Darren Duncan
Brad is saying what I've been saying, while a uint CAN represent a cardinal number, one does NOT ALWAYS represent a cardinal number, so saying this only IS a cardinal number is WRONG. -- Darren Duncan On 2020-01-13 12:56 p.m., Brad Gilbert wrote: Ok looking into it, zero is inside of th

Re: Bug to report: cardinal called an integer

2020-01-12 Thread Darren Duncan
calling a uint32 an "unsigned integer" or "cardinal" is inaccurate in the same way that calling it an "integer" is. In either case, the variable can only hold a proper subset of either type, not all of them. If you're calling integer wrong then one will have to call the type something like "integers in the range 0..^2**32". -- Darren Duncan

Re: rakudo.org outdated?

2020-01-06 Thread Darren Duncan
On 2020-01-06 1:18 a.m., Patrick Spek via perl6-users wrote: On Sun, 5 Jan 2020 18:27:01 -0800 Darren Duncan wrote: The normal Rakudo Star releases so far are compiled, [...] For Mac and Windows, perhaps, but the release is similar as it always was for GNU+Linux. And I'm mostly aimin

Re: rakudo.org outdated?

2020-01-05 Thread Darren Duncan
On 2020-01-05 1:51 p.m., Patrick Spek via perl6-users wrote: On Sat, 4 Jan 2020 22:23:30 -0800 Darren Duncan wrote: Last I recall, there was no Mac installer for Rakudo Star at all, nor was there any need for one. The compiled project is simply in a zip file which the end-uaer unzips and then

Re: rakudo.org outdated?

2020-01-04 Thread Darren Duncan
On 2020-01-04 5:21 p.m., Patrick Spek via perl6-users wrote: On Sat, 4 Jan 2020 15:43:37 -0800 Darren Duncan wrote: Isn't there typically automated test suites that can prove in a few minutes that Rakudo works on a particular platform? Would running this typically be good enough to show

Re: rakudo.org outdated?

2020-01-04 Thread Darren Duncan
Isn't there typically automated test suites that can prove in a few minutes that Rakudo works on a particular platform? Would running this typically be good enough to show that nothing broke in an update? -- Darren Duncan On 2020-01-04 11:10 a.m., Patrick Spek via perl6-users wrote: O

Re: Cardinals

2020-01-03 Thread Darren Duncan
excludes them.) -- Darren Duncan On 2020-01-03 12:03 a.m., Todd Chester via perl6-users wrote: On 2020-01-02 22:19, Darren Duncan wrote: On 2020-01-02 10:01 a.m., ToddAndMargo via perl6-users wrote: How do I do a 32 bit unsigned integer (cardinal)?  I have a situation where I need to be able to

Re: Cardinals

2020-01-02 Thread Darren Duncan
ze number and it can also be negative. -- Darren Duncan

Re: Perl6 -> Raku? whats the scope?

2019-10-16 Thread Darren Duncan
ep a close eye on the situation and be ready to change it again quickly if something else actually becomes the official replacement. -- Darren Duncan On 2019-10-16 9:09 a.m., Joseph Brenner wrote: Last I looked, raku.org redirects to perl6.org already. On 10/15/19, Darren Duncan wrote: One

Re: Perl6 -> Raku? whats the scope?

2019-10-15 Thread Darren Duncan
rence. -- Darren Duncan

Is it possible for Str to not be well formed?

2019-09-15 Thread Darren Duncan
alize the result may not be particularly useful in the face of NFG. For a wider context, I know that in other programming languages like .NET or Java it is possible for their strings to have invalid surrogates, and I'm trying to figure out if Perl 6 can have the same problem or not. Thank you. -- Darren Duncan

Re: Fastest way to convert from a Buf to a Str?

2019-02-03 Thread Darren Duncan
use Buf or Blob etc full stop. -- Darren Duncan

Re: An interesting math formula to share

2018-07-10 Thread Darren Duncan
Your saying "count all the number" is confusing and doesn't seem to relate to what follows. Did you mean to say "sum all the number"? -- Darren Duncan On 2018-07-10 2:02 AM, ToddAndMargo wrote: Hi All, Remembering from my school days, a famous mathematician whose nam

Re: %% with zero denominator

2017-12-11 Thread Darren Duncan
normal result. An Excuse does compare equal to itself. -- Darren Duncan

Re: %% with zero denominator

2017-12-11 Thread Darren Duncan
and comparing that to zero, and it also has meaning for list-like uncountable collections. -- Darren Duncan On 2017-12-11 1:02 PM, Vittore Scolari wrote: I think that this stems from a confusion between the divisibility problem in integer number (on a ring) and the divisibility problem resolved

Re: %% with zero denominator

2017-12-11 Thread Darren Duncan
t is a valid division then we do other particular arithmetic with the results. The expression "x %% y" is to be equivalent to "(x % y) == 0)". -- Darren Duncan

books for learning Perl 6

2017-08-07 Thread Darren Duncan
As was announced a few days ago, see https://perl6book.com which is a good site for outlining what books on learning Perl 6 exist and suggestions on where different kinds of users should start based on their needs. -- Darren Duncan

Re: Fwd: Re: Is win 32 being worked on?

2017-07-25 Thread Darren Duncan
odules you describe are considered essential, they should receive updates to run with Win32; otherwise they should be dropped from Star as they are clearly not considered that essential. Dropped modules can still be installed separately as add-ons where they work. -- Darren Duncan

Re: Fwd: Re: Is win 32 being worked on?

2017-07-25 Thread Darren Duncan
PC makers, and yet other makers were shipping 32 bit only still 4 years after Apple stopped? -- Darren Duncan On 2017-07-25 12:16 PM, Mark Carter wrote: On 2017-07-25 11:05 AM, Mark Carter wrote: On 25/07/2017 18:34, Darren Duncan wrote: How often would someone reasonably be using a cutting

Re: Is win 32 being worked on?

2017-07-25 Thread Darren Duncan
ing a 64 bit Windows these days? -- Darren Duncan On 2017-07-23 10:29 AM, Steve Mynott wrote: Rakudo itself probably does compile on Windows 32-bit (or least it did last time I tried it). But here is no Rakudo Star 32 bit MSI due to problems with modules not working -- I think linenoise fail

Re: Announce: Rakudo Star Release 2017.07

2017-07-25 Thread Darren Duncan
On 2017-07-25 10:05 AM, Brandon Allbery wrote: On Tue, Jul 25, 2017 at 11:45 AM, Darren Duncan wrote: However I assume it is the 3 bullet points that the release announcement highlights: advanced macros, non-blocking I/O, bits of Synopsis 9 and 11. The fact the announcement

Re: Announce: Rakudo Star Release 2017.07

2017-07-25 Thread Darren Duncan
On 2017-07-25 8:32 AM, Steve Mynott wrote: On 25 July 2017 at 16:23, Darren Duncan wrote: There's a key difference however. While programming languages continue to evolve, the expectation is that a production-complete Rakudo would always be a functional superset (or equal to) the P

Re: Announce: Rakudo Star Release 2017.07

2017-07-25 Thread Darren Duncan
full Perl 6.c?" -- Darren Duncan On 2017-07-25 1:02 AM, Elizabeth Mattijsen wrote: If that is the question, the answer is: the junction of “never" and “now". Which would also be the answer for Pumpking Perl 5, or any other programming language like ever. Because as long

Re: set (+) set = bag ?

2017-07-21 Thread Darren Duncan
On 2017-07-21 1:33 PM, Elizabeth Mattijsen wrote: On 21 Jul 2017, at 21:30, Darren Duncan wrote: Firstly, I believe ∆ (U+2206) is the standard symbol for symmetric difference, and not circled minus as the above url currently gives. https://en.wikipedia.org/wiki/Symmetric_difference seems to

Re: set (+) set = bag ?

2017-07-21 Thread Darren Duncan
On 2017-07-21 12:30 PM, Darren Duncan wrote: On 2017-07-21 5:07 AM, Timo Paulssen wrote: You want (|) to get the union of two sets as a set. https://docs.perl6.org/language/setbagmix#Set%2FBag_Operators hth - Timo Right. Every set operation except 1 (multiset sum) should result in a set

Re: set (+) set = bag ?

2017-07-21 Thread Darren Duncan
of before, but okay), but there should also be an operator for multiplying 1 bag by a natural number, that is a scalar multiply of a bag. Unless it is assumed the standard hyper-operator syntax is best for this. -- Darren Duncan

Re: Can this OR be shortened?

2017-03-24 Thread Darren Duncan
Just speculating, but try replacing the "||" with the "|" operator which should create an ANY Junction, if I'm not mistaken, which may then do what you want. -- Darren Duncan On 2017-03-24 5:58 PM, ToddAndMargo wrote: Hi All,, if $Terminal ~~ /xterm/ || /linux/ {

Re: per 5 converter?

2017-02-13 Thread Darren Duncan
On 2017-02-13 2:11 AM, ToddAndMargo wrote: On 02/12/2017 05:12 PM, Darren Duncan wrote: On 2017-02-12 5:08 PM, ToddAndMargo wrote: I presume my eyes would tell where I made the boo-boo. Lets hope! I am real tired of Perl 5's stone age subs declarations. @_, oh brother. In principle

Re: per 5 converter?

2017-02-12 Thread Darren Duncan
able to have a single variable or keyword to represent the entire argument list as a single value. Logically, a single value is what an entire argument list is anyway, with individual arguments being components of that. -- Darren Duncan

Re: Can I call myself

2017-02-04 Thread Darren Duncan
yword but it may have been something like "SUB" or "SELF". -- Darren Duncan On 2017-02-04 12:34 AM, ToddAndMargo wrote: Hi All, Just out of curiosity, in Perl 6 can a subroutine call itself? -T I am fighting with a broken Net:FTP::rmdir in Perl 5 that will not recuse

Re: coded size limits on Perl data types?

2016-09-13 Thread Darren Duncan
Thank you for this Timo, and to everyone else who replied. It did indeed address what I wanted to know. -- Darren Duncan On 2016-09-13 5:15 AM, Timo Paulssen wrote: I'll answer based on the data structures MoarVM uses internally: On 09/13/2016 05:13 AM, Darren Duncan wrote:> (Pre

coded size limits on Perl data types?

2016-09-12 Thread Darren Duncan
vely limit the types? Thank you. -- Darren Duncan

Re: can a method name contain a funny character?

2016-04-12 Thread Darren Duncan
s Greek letters when you mean symbols. For example, ∆ is U+2206 named INCREMENT. Is that not better, or is an actual Greek letter desired in the above example? -- Darren Duncan

Re: is there a Perl 5 converter?

2016-01-20 Thread Darren Duncan
g it are also doing significant rewrites to take better advantage of the new Perl 6 features and idioms that a more mechanical automatic translation wouldn't. Did that tell you anything useful? -- Darren Duncan

Re: Perl 6 Advocacy Suggestion

2016-01-19 Thread Darren Duncan
I very much agree with this idea, of arguing Perl 6 as a teaching language. Academia are the ones that would appreciate what Perl 6 offers the most in the short term, whereas industry would demand a higher standard for it becoming popular. And the first can lead to the second. -- Darren Duncan

Re: perl 6 for rhel?

2016-01-11 Thread Darren Duncan
Red Hat is quite conservative. Usually what happens in situations like this when you want more up to date stuff you get it from alternate repositories that make Red Hat compatible packages. See also repositories for Fedora or Cent OS. -- Darren Duncan On 2016-01-10 11:16 PM, ToddAndMargo

Re: $epsilon = 1.0e-6 feels too big for Rat()

2015-12-31 Thread Darren Duncan
Considering that a non-fat Rat has a 64-bit denominator, I would expect conversions from Num to make use of that full precision by default, and not round off to 6 decimal places. -- Darren Duncan

Re: release?

2015-12-29 Thread Darren Duncan
d Ruby and Python and Java after. I don't know yet if there is value to targeting Perl 6 at large when I have NQP; I could, but NQP is more important to do in practice I think. -- Darren Duncan

Re: release?

2015-12-29 Thread Darren Duncan
to indicate a fork of the spec or such, though in hindsight of your implementations leading spec comment, I assume this is also how one indicates dependencies on a spec-leading compiler. Thank you. -- Darren Duncan On 2015-12-29 5:46 AM, Patrick R. Michaud wrote: On Tue, Dec 29, 2015 at 01

Re: release?

2015-12-29 Thread Darren Duncan
On that note, are there going to be Perl 6 versions 6.x.y where {x,y} are integers? Will 6.0.0 be the first such one? -- Darren Duncan On 2015-12-29 12:51 AM, Tobias Leich wrote: Hi, the first official Perl 6 (the language) release is not called 6.0.0, it is called 6.c. And this is what has

Re: Constants as members of a class

2015-12-17 Thread Darren Duncan
Since all you want is a constant, try declaring a submethod that has no arguments and returns the value, instead, its the same thing. -- Darren Duncan On 2015-12-17 6:46 PM, TS xx wrote: Hello dear perl6 users, I was in the need of declaring a member variable as a constant integer. After many

Re: Can a user "cheat" and call a class's private method?

2015-05-12 Thread Darren Duncan
On 2015-05-12 12:40 PM, R. Ransbottom wrote: On Mon, May 11, 2015 at 03:22:46PM -0700, Darren Duncan wrote: you can use "trusts". Also having to do this may indicate bad code design. -- Darren Duncan I saw Moritz' and Carl's responses and I agree with the smell issue.

Re: Can a user "cheat" and call a class's private method?

2015-05-11 Thread Darren Duncan
See Moritz Lenz' response to this thread on March 26. To summarize, you can use "trusts". Also having to do this may indicate bad code design. -- Darren Duncan On 2015-05-11 2:13 PM, R. Ransbottom wrote: I need to test some private routines, so is there a way to do tha

Re: Is there an equivalent env var to PERL5LIB for Perl 6 module locations?

2015-03-31 Thread Darren Duncan
I for one did not know/remember about PERL6LIB and rather all I knew was the more ambitious plan at http://design.perl6.org/S11.html about CompUnitRepo and such. -- Darren Duncan

Re: Function Signatures: Return Types (replace wantarray?)

2015-03-19 Thread Darren Duncan
outside the signature. -- Darren Duncan

Re: Function Signatures: Return Types (replace wantarray?)

2015-03-19 Thread Darren Duncan
Therefore, each caller context can call foo() and use the result in the way it expects to. -- Darren Duncan On 2015-03-19 4:00 PM, Tom Browder wrote (in private): On Thu, Mar 19, 2015 at 5:53 PM, Darren Duncan wrote: I think as a general principle, multi methods should dispatch entirely on their

Re: Function Signatures: Return Types (replace wantarray?)

2015-03-19 Thread Darren Duncan
names. -- Darren Duncan On 2015-03-19 3:20 PM, Tom Browder wrote: I need to replace the Perl 5 'wantarray' and think a multi method with differing return types should do it. So I've tried this: multi method foo($a, $b --> {Num,Num}) { #... } multi method foo($a, $b --> N

Re: Bag with explicit 0 elements?

2015-02-28 Thread Darren Duncan
difference or intersection etc, and we would want consistency between values that arise that way versus ones explicitly selected with a literal. -- Darren Duncan

Re: Grammars and biological data formats

2014-08-09 Thread Darren Duncan
really just program source code files. -- Darren Duncan On 2014-08-09, 3:09 PM, Fields, Christopher J wrote: (accidentally sent to perl6-lang, apologies for cross-posting but this seems more appropriate) I have a fairly simple question regarding the feasibility of using grammars with commonly

Re: Questions for Survey about Perl

2011-01-01 Thread Darren Duncan
worded in a value-free manner. There are also those who perceive as fact that the biblical and geological timelines are not mutually exclusive and are both plausible. -- Darren Duncan

Re: Q: Code example in "Using Perl 6" - methods and spaces.

2010-12-27 Thread Darren Duncan
ot directly be allowed, though there may be workarounds such as by using "unspace". -- Darren Duncan

Re: Problem with NativeCall

2010-11-07 Thread Darren Duncan
Arthur, I don't know if this would be useful in your situation, but Rudy Lippan is working to make a Perl 5 DBI driver to MongoDB. Since your challenges are related he might know something that could help. -- Darren Duncan ARTHUR WOLF wrote: Hello list ! So, I'm trying to make

Re: slurpy hash

2010-08-17 Thread Darren Duncan
believe that Perl 6 identifiers can be any string at all, but that then they have to appear quoted in the general case; the above restriction just refers to the common case of unquoted identifiers. This said, I'm not sure yet what the syntax is for quoting identifiers. -- Darren Duncan

Re: Perl6 Modules - Documentation

2010-07-30 Thread Darren Duncan
.12>; use Whiteness:from; # same thing ... this that the metadata would generalize. I *really* want to use a multi-language-savvy spec like this to distribute with. -- Darren Duncan

Re: questions about array references and captures

2010-07-29 Thread Darren Duncan
At least that's my understanding of it. I would imagine that in most code an Array is what you want. -- Darren Duncan

Re: how to pkg/distrib Perl 6 modules?

2010-07-29 Thread Darren Duncan
Tadeusz Sośnierz wrote [off-list]: On 29-07-2010 14:37:54, Darren Duncan wrote: Now that, with Rakudo Star, it is relatively straightforward to install and use Perl 6, I'm wondering about the next step. I want to start writing and distributing Perl 6 modules in an easily installable bu

how to pkg/distrib Perl 6 modules?

2010-07-29 Thread Darren Duncan
s the best way to distribute Perl 6 modules these days? -- Darren Duncan

Re: very basic type checking

2010-06-30 Thread Darren Duncan
versus ones without. Or maybe this was an early development that later went away? -- Darren Duncan

Re: very basic type checking

2010-06-24 Thread Darren Duncan
ile-time testing isn't essential, it was probably further down the priority queue of the Rakudo developers. It very much should be done, and relatively soon, but so far it was quite reasonable to have waited. -- Darren Duncan

Re: very basic type checking

2010-06-23 Thread Darren Duncan
ile time, but if the argument is a variable, they have to look further out. -- Darren Duncan

Re: Announce: Rakudo Perl 6 development release #30 ("Kiev")

2010-06-17 Thread Darren Duncan
So, is "Rakudo Star" meant to be a parallel release series, sort of like Perl 5.12.x vs 5.13.x are now, or are the monthly Rakudo releases we've been seeing going to be named "Star" at some point? I thought I read recently that "Star" would be coming in June. -- Darren Duncan

Perl 6 Set::Relation port desired (was Re: How can i contribute for perl 6 ?)

2009-09-16 Thread Darren Duncan
t a porter initially just tries the immutable role and V2, and ignores V1 and the mutable role for now, as it is a lot easier to implement this thing when you don't have to worry about deep copying. The current Set::Relation is licensed LGPLv3+ but I am willing to relicense it to Artistic

Re: Logo considerations

2009-03-26 Thread Darren Duncan
gt;>ö<< form looks more like a Hyper Attack Butterfly > that is about to bite your face off... :) Please don't. I think the happy version is much better than any angry or violent version. We want the logo to evoke happiness after all. -- Darren Duncan

Re: Logo considerations

2009-03-23 Thread Darren Duncan
should certainly look good as black and white line-art. I know they are more examples, but some things I saw suggested looked a bit too complicated. On the other hand, arguably the gimel is too simple. But I'm sure something good can be worked out. -- Darren Duncan

Re: A Logo design for Rakudo Perl 6

2009-03-06 Thread Darren Duncan
would provide a good way to tie in the parrot logo with various languages implemented on Parrot. Sits nicely with the "Speaks you language" tag line. What do people think? I think that idea has promise, and I would be happy with it sans something better coming along. -- Darren Duncan

strategy for multiple packages in fewer files (was Re: [file name extension])

2008-01-07 Thread Darren Duncan
y are very simple. But really, you know better to make this call yourself, having more information on your circumstances. -- Darren Duncan P.S. Does anyone think that the main part of this email may provide a starting point for a general best practices tutorial item or Perl.com article?

Re: what should be the default extension?

2008-01-04 Thread Darren Duncan
27;use 5' lines say. See Synopsis 1 ( http://perlcabal.org/syn/S01.html ), which talks about this. -- Darren Duncan At 12:14 AM +0300 1/5/08, Richard Hainsworth wrote: Perl scripts have had the extension *.pl To distinguish the scripts I started writing in perl6 from those in the same d

ANNOUNCE - Muldis::DB v0.0.0 released, in p5+p6

2007-06-21 Thread Darren Duncan
s benefit, and to save me from repeating the same answers ad nauseum. Unless the response is not suitable for public discourse, in which case, sure, go private email; ditto if you're not sure about appropriateness. Thank you in advance. -- Darren Duncan

Re: CGI.pm renaming (was Re: CGI Session management (was Re: the CGI.pm in Perl 6))

2007-04-15 Thread Darren Duncan
/HTTP/docs/ The main advantage to seeing the perl6-users archive versions is that list replies from other people can also be seen there. -- Darren Duncan

Re: CGI.pm renaming (was Re: CGI Session management (was Re: the CGI.pm in Perl 6))

2007-04-14 Thread Darren Duncan
acement effort has been started. See the ext/HTTP/ and ext/Web/ skeleton code in the current Pugs repository, which is basically a copy of Juerd's code in the discussion emails, which I wrapped with distributions on his behalf on 20070217. Presumably Juerd will get back to these when he has the tuits, but meanwhile you could try improving what he started. -- Darren Duncan

Re: Perl6 "style-guide"

2006-09-20 Thread Darren Duncan
possible. And in fact, I expect that PBP was written to be forward compatible to Perl 6, as it could describe styles that should be natural in Perl 6, even if less so in Perl 5. -- Darren Duncan

Re: Charsets in HTTP (was: the CGI.pm in Perl 6)

2006-09-16 Thread Darren Duncan
At 7:38 PM +0200 9/16/06, A. Pagaltzis wrote: * Darren Duncan <[EMAIL PROTECTED]> [2006-09-09 20:40]: 4. Make UTF-8 the default HTTP response character encoding, and the default declared charset for text/* MIME types, and explicitly declare that this is what the charset is. The only

HTTP::Request/Response (was Re: the CGI.pm in Perl 6)

2006-09-14 Thread Darren Duncan
e, the Request/Response containers would not have any ties to outside environment, though in specific cases where input and output are too large to easily fit in RAM at once, there can be enhancements. -- Darren Duncan

Re: Web.pm or something (Re: the CGI.pm in Perl 6)

2006-09-13 Thread Darren Duncan
At 5:00 PM +0100 9/13/06, David Cantrell wrote: On Tue, Sep 12, 2006 at 03:08:03PM -0700, Darren Duncan wrote: > The word "CGI" generally speaks to an old, weak, and relatively inefficient technology ... modern proper stuff does not spin off a separate process for each serve

Web.pm or something (Re: the CGI.pm in Perl 6)

2006-09-12 Thread Darren Duncan
server-side view of web client input and output. In fact, it may borrow a few pages of design from LWP if applicable? -- Darren Duncan

Re: the CGI.pm in Perl 6

2006-09-09 Thread Darren Duncan
with my current database-centric modules (where I'm more certain they can have a big impact). However, I'm sure the web modules can influence improvements to CGI.pm in Perl 6, and I will do so at an appropriate time. -- Darren Duncan

  1   2   >