1471 links
  • linx
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
  • ► Play Videos
Links per page: 20 50 100
◄Older
page 1 / 5
91 results tagged perl x
  • thumbnail
    perl - Is there a way to force $c->uri_for in Catalyst to generate a URI that begins with https? - Stack Overflow
    MyApp->config(using_frontend_proxy => 1);
    September 14, 2023 at 9:42:57 AM UTC - permalink -
    QRCode
    - https://stackoverflow.com/questions/1664816/is-there-a-way-to-force-c-uri-for-in-catalyst-to-generate-a-uri-that-begins-wi
    catalyst frontend haproxy nginx perl proxy
  • thumbnail
    GitHub - podlite/podlite-desktop: The desktop version of pod6 markup language editor
    July 10, 2023 at 7:12:53 AM UTC - permalink -
    QRCode
    - https://github.com/podlite/podlite-desktop
    documentation editor perl pod pod6 raku
  • camelia.txt

    Camelia

    The Camelia image is copyright 2009 by Larry Wall. Permission to use
    is granted under the Artistic License 2.0, or any subsequent version
    of the Artistic License.

    The Camelia image is a trademark of Larry Wall, and permission is
    granted for non-exclusive use to label anything related to Perl 6,
    provided the image is labeled as a trademark when used as a main logo
    on a page. (It is not necessary to so label icons, or other casual
    uses not related to business.) Such labeling may be done either by
    footnote or with a TM mark.

    It is recommended that such a TM mark be in a light but visible color
    of gray.

    Notes

    Camelia is intended primarily to represent Perl 6, The Language,
    not any other aspect of Perl 6 culture, corporate or otherwise.
    In particular, various implementations and distributions are free to
    use their own logos and/or mascots.

    Certain variants are also permissible; since Camelia knows how to
    change her wing colors at will, any color scheme (or lack thereof)
    in the same pattern is fine. She just happens to like bright colors
    most of the time because they make her happy. But she's willing to
    blend in where necessary. :)

    Going to the other extreme, a textual variant also exists:

    »ö«

    Many other variants are possible. Have fun. Good taste and positive
    connotations are encouraged, but cannot of course be required.

    Those of you who think the current design does not reflect good taste
    are entitled to your opinion. We will certainly allow you to change
    your mind later as you grow younger. :)

    Online resources

    • http://www.nntp.perl.org/group/perl.perl6.language/2009/03/msg31263.html
    • http://www.nntp.perl.org/group/perl.perl6.language/2009/03/msg31300.html

    Discussion Highlights

    From: Larry Wall
    Date: March 24, 2009 10:25
    Subject: Re: Logo considerations

    [...] I think there's a tendency to
    go way too abstract in most of these proposals. I want something
    with gut appeal on the order of Tux. In particular I want a logo
    for Perl 6 that is:

    Fun
    Cool
    Cute
    Named
    Lively
    Punable
    Personal
    Concrete
    Symmetric
    Asymmetric
    Attractive
    Relational
    Metamorphic
    Decolorizable
    Shrinkable to textual icon
    Shrinkable to graphical icon

    In addition, you can extend just about anything by attaching "P6"
    wings to it. I also take it as a given that we want to discourage
    misogyny in our community. You of the masculine persuasion should
    consider it an opportunity to show off your sensitive side. :)

    Hence, Camelia.

    Larry


    From: Larry Wall
    Date: March 25, 2009 11:28
    Subject: Re: Logo considerations - 3 logos needed

    On Wed, Mar 25, 2009 at 08:54:34AM -0400, __ wrote:
    : I think he was offering it as an example and a suggestion. The perl6
    : community might favor it out of respect for Larry but I think he went
    : out of his way to make it clear that it's the kind of thing he would
    : like.

    Yes, I went out of my way to indicate that my mind was still open
    (a little). However, if you will allow an old geezer to be a wee bit
    testy, I would also like to make it clear that I'm a just a little
    tired of these "rounds"; more importantly, that I've been mulling
    over this particular issue for many years. I didn't just come up
    with that list of requirements off the cuff. I'm old enough to have
    lots of stuff on my cuff as well.

    Also, it's probably mere hubris, but I already consider myself to be a
    "professional designer". I know how to take into account the various
    factors that a professional designer would take into account when
    designing yet another highly original logo that somehow ends up looking
    just like every other logo out there. You'll notice that "sterility"
    is not on my list of requirements. It was a deliberate omission.

    So let me summarize the requirements into a meta-requirement:

    The new logo must make Larry at least as happy as Camelia does.

    That is the extent to which my mind is still open... :-)

    Larry

    July 9, 2023 at 12:10:26 PM UTC - permalink -
    QRCode
    - https://raw.githubusercontent.com/perl6/mu/master/misc/camelia.txt
    camelia design logo mascot perl perl6 raku
  • Re: This is not an RFC to bring modern OO into the Perl core - Chris Prather - Corinna is metamodern - org.perl.perl5-porters - MarkMail

    Corinna is metamodern.

    June 25, 2022 at 8:53:59 AM UTC - permalink -
    QRCode
    - https://markmail.org/message/pxmkevqe7qg7tld2
    corinna meta-modernism modern oop perl post-modern
  • Determining Current Function Name (Perl Cookbook, 2nd Edition)
    my $caller_method_with_namespace = (caller(0))[3];
    my ($method) = $caller_method_with_namespace =~ /([^::]*)$/;

    See also

    • https://perldoc.perl.org/functions/caller
    • https://stackoverflow.com/questions/3439123/how-can-i-match-everything-that-is-after-the-last-occurrence-of-some-char-in-a-p/
    June 22, 2022 at 12:32:26 PM UTC * - permalink -
    QRCode
    - https://docstore.mik.ua/orelly/perl4/cook/ch10_05.htm
    function method mop perl reflexion subroutine
  • Moose and enum
    February 14, 2022 at 9:47:59 AM UTC - permalink -
    QRCode
    - https://damien.krotkine.com/2011/06/17/enum-in-moose.html
    enum moose object oop perl
  • thumbnail
    How can I prevent Perl Moose Read-Only Attributes being set upon a call to new? - Stack Overflow

    Use the init_arg attribute configuration (see "Constructor parameters" in Moose::Manual::Attributes):

    package SOD::KuuAnalyze::ProdId;
    use Moose;
    
    has 'users' => (
        isa => 'ArrayRef[Str]', is => "ro",
        init_arg => undef,    # do not allow in constructor
    );
    1;
    February 3, 2022 at 9:58:55 AM UTC - permalink -
    QRCode
    - https://stackoverflow.com/questions/1814046/how-can-i-prevent-perl-moose-read-only-attributes-being-set-upon-a-call-to-new
    attributes moose new-operator perl privacy
  • cgi_this - export the current directory as if it were a cgi-bin - metacpan.org
    November 30, 2021 at 10:05:51 AM UTC - permalink -
    QRCode
    - https://metacpan.org/dist/App-CGIThis/view/bin/cgi_this
    cgi directory perl server
  • Enforcing Simple Standards with One Module | Ovid [blogs.perl.org]
    August 15, 2021 at 7:15:35 AM UTC - permalink -
    QRCode
    - http://blogs.perl.org/users/ovid/2019/03/enforcing-simple-standards-with-one-module.html
    boilerplate import module perl use
  • thumbnail
    perl - How do I assign the result of a regex match to a new variable, in a single line? - Stack Overflow
    August 13, 2021 at 10:35:29 AM UTC - permalink -
    QRCode
    - https://stackoverflow.com/questions/6278143/how-do-i-assign-the-result-of-a-regex-match-to-a-new-variable-in-a-single-line
    assign list match perl regex variable
  • thumbnail
    perl - How do you dynamically call a method of an object? - Stack Overflow
    August 12, 2021 at 9:15:17 AM UTC - permalink -
    QRCode
    - https://stackoverflow.com/questions/7814489/how-do-you-dynamically-call-a-method-of-an-object
    access dyncamic method object perl
  • thumbnail
    Wendy Van Dijk (‎woolfy‎) - Marketing for Perl is easy because Perl is awesome - YouTube
    August 5, 2021 at 10:33:26 AM UTC - permalink -
    QRCode
    - https://www.youtube.com/watch?v=B39gZXxfroM
    community marketing perl wendy
  • Search::Typesense - Perl interface to the Typesense search engine - metacpan.org
    April 2, 2021 at 2:25:58 AM UTC * - permalink -
    QRCode
    - https://metacpan.org/pod/Search::Typesense
    cpan perl search-engine typesense
  • Math::NumberCruncher - Collection of useful math-related functions. - metacpan.org
    $randInt = Math::NumberCruncher::RandInt(10,50);

    Returns a random integer between the two number passed to the function, inclusive. With no parameters passed, the function returns either 0 or 1.

    March 8, 2021 at 9:17:09 AM UTC - permalink -
    QRCode
    - https://metacpan.org/pod/release/SIFUKURT/Math-NumberCruncher-5.00/NumberCruncher.pm#$randInt-=-Math::NumberCruncher::RandInt(10,50);
    cpan integer perl random range
  • Sqitch: Sensible database change management
    February 25, 2021 at 11:54:04 PM UTC - permalink -
    QRCode
    - https://sqitch.org/
    database migration perl
  • thumbnail
    Day 1: cPanel Theatre: Ruth Holloway - Discourse Without Drama - YouTube

    These days, public discussion can seem really difficult and painful. Trolls making deliberately destructive comments, exaggerated dramatic statements and even abuse seems common, whether the discussion is online or in-person.

    Many of us have experienced real pain and suffering in these discussions. How can we stop it?

    Individuals and communities can take action to keep honest and valuable discussions from degenerating into useless drama. In this talk, Ruth shares ideas for managing your own perceptions of what is happening in a rancorous conversation. She shares a framework that enables you and your communities to vaccinate your discussions against trolls and drama, reclaiming useful public discourse for us all.

    February 24, 2021 at 3:54:06 PM UTC - permalink -
    QRCode
    - https://www.youtube.com/watch?v=CsxADm4e4KQ
    community discussion holloway perl ruth social-media
  • random number with range
    February 22, 2021 at 8:37:17 PM UTC - permalink -
    QRCode
    - https://www.perlmonks.org/?node_id=553094
    int perl random range
  • thumbnail
    How can I create a random number between two numbers in Perl - Stack Overflow
    February 22, 2021 at 8:36:51 PM UTC - permalink -
    QRCode
    - https://stackoverflow.com/a/21806398/954777
    int perl random range
  • Math::Random::OO::UniformInt - Generates random integers with uniform probability - metacpan.org
    February 22, 2021 at 8:36:01 PM UTC - permalink -
    QRCode
    - https://metacpan.org/pod/Math::Random::OO::UniformInt
    int perl random range
  • thumbnail
    Perl, Raku and TPF Branding: Next Steps - YouTube

    The Perl Foundation (TPF) is passionate about helping our software communities flourish.

    Jump in a time machine and let's see some suggestions for how we can improve Perl, Raku and TPF's branding.

    February 16, 2021 at 6:56:11 AM UTC - permalink -
    QRCode
    - https://m.youtube.com/watch?v=CXmLzbKwbXE
    branding camelia emotion marketing perl raku tpf
Links per page: 20 50 100
◄Older
page 1 / 5
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation