user-pic

mauke

  • About: I blog about Perl.
Subscribe to feed Recent Actions from mauke

  • Aristotle commented on Why you probably don't want to use claws-mail

    Again, it sounds like design-by-programmer. I don’t disagree with your complaints.

    The thing is, the people who wrote a program or have been using it for a long time, no matter how inept its design, will always believe it is quite obvious and easy to use. If you barge in there with a barrage of questions, it’s liable to make you look dumb to them. It doesn’t mean you are dumb, but from their perspective it looks that way. And then the slightest show of annoyance or general attitude will invariably look like a show of entitlement of some sort.

    That’s not how i…

  • Olivier Mengué (dolmen) commented on C Programming: What is the difference between an array and a pointer?

    You should put more emphasis on sizeof for pointers: the pointer has no idea of how many elements it points to.

    int array[5];
    int *ptr = array;
    printf("%zd\n", sizeof(array)); // 5*sizeof(int)
    printf("%zd\n", sizeof(ptr));   // sizeof(int*)
    printf("%zd\n", sizeof(*ptr));  // sizeof(int)
    
  • Toby Inkster commented on Cool things you can do with Perl 5.14

    p5-mop (planned for Perl core in some future version, perhaps 5.20; currently on GitHub, but not on CPAN yet) seems to fit your description.

    Here's some documentation on the syntax.

Subscribe to feed Responses to Comments from mauke

About blogs.perl.org

blogs.perl.org is a common blogging platform for the Perl community. Written in Perl and offering the modern features you’ve come to expect in blog platforms, the site is run by Dave Cross and Aaron Crane, with a design donated by Six Apart, Ltd.