VirtualTam's bookmarks

  1. Stock Parts

    • Left+Right – Omron D2FC-F-7N
    • Middle – E-Switch TL3315NF160Q
    • Middle Tilt – Panasonic EVQ-P0E07K
    • GKeys – Alps SKQGABE010

    Upgraded Parts

    • Left+Right – Omron D2F-01F Japan
    • Middle – Alps SKQGAAE010 (Has the same actuation force of original, the one linked in the guide is 1N instead of 1.6N)
    • Middle Tilt – Omron B3M-6009
    • GKeys – No better replacement Alps SKQGABE010
  2. A whole buncha' links with contradictory information on how to properly set up a mail server ;-)

    Disclaimer - My primary goal is to add proper Spamassassin (SA) filtering to an existing Postfix / Dovecot / roundcube installation, i.e.:

    • use SA as a milter (mail filter) to attribute a spam score to incoming mail
    • keep SA up-to-date
    • train SA with spam/ham from the users' virtual mailboxes
    • train SA according to user decisions (actual user or trained mail client with automatic/trained spam detection)

    Here we go!

    Most useful links; I stumbled upon them as soon as I knew what to look for:

    Official:

    Debian:

    CentOS:

    RHEL:

  3. An assortment of development-related links, resources and scripts

  4. Context: replace spaces by dashes in a script-generated HTML file's links

    1awk -F\' 'm = /a href/ { gsub(/ /,'-',$2); print$1'\''$2'\''$3} !m {print $0}'