1362 links
  • linx
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
  • ► Play Videos
Links per page: 20 50 100
◄Older
page 2 / 69
Newer►
  • thumbnail
    project management - How to respond when you are asked for an estimate? - Software Engineering Stack Exchange
    November 16, 2022 at 1:11:42 PM UTC - permalink -
    QRCode
    - https://softwareengineering.stackexchange.com/questions/648/how-to-respond-when-you-are-asked-for-an-estimate
    estimate project-managment
  • Randoma11y - Accessible color combinations

    a11y accessibility color

    October 15, 2022 at 9:29:50 PM UTC - permalink -
    QRCode
    - https://randoma11y.com/
  • Commandez en ligne toutes vos impressions
    October 15, 2022 at 3:51:22 PM UTC - permalink -
    QRCode
    - https://www.corep-online.fr/
    brochure catalogue impression imprimeur manuel print
  • thumbnail
    Micro-entreprise : que se passe-t-il quand on dépasse le seuil de chiffre d'affaires ? | economie.gouv.fr
    October 8, 2022 at 7:12:11 AM UTC * - permalink -
    QRCode
    - https://www.economie.gouv.fr/entreprises/micro-entreprise-auto-entreprise-depassement-du-seuil
    autoentrepreneur microentreprise seuil
  • thumbnail
    11 Laws of Software Estimation for Complex Work
    September 21, 2022 at 8:47:23 PM UTC - permalink -
    QRCode
    - https://mdalmijn.com/11-laws-of-software-estimation-for-complex-work/
    Agile estimate Product-Management Product-Owner Scrum time-estimation
  • Don’t rush David Lynch
    September 17, 2022 at 4:54:57 PM UTC - permalink -
    QRCode
    - https://twitter.com/DuganAmanda/status/1571124802399924224
    bang-bang david-lynch dreamy lynch work
  • 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
  • thumbnail
    Home | Vertical Docks
    May 21, 2022 at 6:39:57 PM UTC - permalink -
    QRCode
    - https://www.verticaldocks.com/
    dock laptop monitor screen stand vertical
  • thumbnail
    Firefox on Ubuntu 22.04 from .deb (not from snap) | Obsessed with reality
    May 5, 2022 at 7:28:26 PM UTC - permalink -
    QRCode
    - https://balintreczey.hu/blog/firefox-on-ubuntu-22-04-from-deb-not-from-snap/
    deb firefox mozilla snap
  • thumbnail
    Aria 5502n, ES 335 type Natural | Reverb
    May 3, 2022 at 8:16:25 PM UTC * - permalink -
    QRCode
    - https://reverb.com/item/2313236-aria-5502n-es-335-type-natural
    aria gibson guitar
  • validation d'équipement d'un osmoseur
    April 9, 2022 at 7:27:21 AM UTC * - permalink -
    QRCode
    - https://traitement-eau.ooreka.fr/qr/voir/465369/validation-d-equipement-d-un-osmoseur
    eau osmoseur water
  • Xpadder.com - The Official Home of Xpadder
    April 2, 2022 at 7:03:48 PM UTC - permalink -
    QRCode
    - https://xpadder.com/
    controller game gamepad joystick xbox
  • thumbnail
    Ludwig • Find your English sentence

    Ludwig is the first sentence search engine that helps you write better English by giving you contextualized examples taken from reliable sources.

    March 3, 2022 at 9:04:43 AM UTC - permalink -
    QRCode
    - https://ludwig.guru/
    english example grammar linguistic sentence translation
  • Design Freedom for Teams

    Penpot is the first Open Source design and prototyping platform meant for cross-domain teams. Non dependent on operating systems, Penpot is web based and works with open web standards (SVG). For all and empowered by the community.

    February 28, 2022 at 9:20:32 AM UTC - permalink -
    QRCode
    - http://penpotapp
    design open-source svg
  • thumbnail
    Using Docker Containers As Development Machines | by Derian Pratama Tungka | Rate Engineering | Medium
    February 14, 2022 at 9:50:20 AM UTC - permalink -
    QRCode
    - https://medium.com/rate-engineering/using-docker-containers-as-development-machines-4de8199fc662
    development docker
  • 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
  • How To Reset Your MySQL or MariaDB Root Password | DigitalOcean
    February 11, 2022 at 2:14:11 PM UTC - permalink -
    QRCode
    - https://www.digitalocean.com/community/tutorials/how-to-reset-your-mysql-or-mariadb-root-password
    mariadb mysql password reset root sysadmin
  • 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
  • thumbnail
    What is the meaning of #XXX in code comments? - Stack Overflow
    • NOTE: Description of how the code works (when it isn't self evident).
    • XXX: Warning about possible pitfalls, can be used as NOTE:XXX:.
    • HACK: Not very well written or malformed code to circumvent a problem/bug. Should be used as HACK:FIXME:.
    • FIXME: This works, sort of, but it could be done better. (usually code written in a hurry that needs rewriting).
    • BUG: There is a problem here.
    • TODO: No problem, but additional code needs to be written, usually when you are skipping something.

    At least this is how I was taught about these tags. Basically the first two (NOTE and XXX) are used for information and no action is required. While the last three (FIXME, BUG and TODO) do require action. HACK is somewhere in between (and hardly ever used I think?).

    January 26, 2022 at 10:37:55 AM UTC - permalink -
    QRCode
    - https://stackoverflow.com/questions/1452934/what-is-the-meaning-of-xxx-in-code-comments
    bug comment fixme hack todo xxx
Links per page: 20 50 100
◄Older
page 2 / 69
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation