VirtualTam's bookmarks

  1. Useful when you don't want to pull the LibreOffice suite:

    $ unzip -qc "$1" ppt/slides/slide*.xml | grep -oP '(?<=&lt;a:t&gt;).*?(?=&lt;/a:t&gt;)'

    1. Understand user needs
    2. Do ongoing user research
    3. Have a multidisciplinary team
    4. Use agile methods
    5. Iterate and improve frequently
    6. Evaluate tools and systems
    7. Understand security and privacy issues
    8. Make all new source code open
    9. Use open standards and common platforms
    10. Test the end-to-end service
    11. Make a plan for being offline
    12. Make sure users succeed first time
    13. Make the user experience consistent with GOV.UK
    14. Encourage everyone to use the digital service
    15. Collect performance data
    16. Identify performance indicators
    17. Report performance data on the Performance Platform
    18. Test with the minister
  2. QA Engineer walks into a bar. Orders a beer. Orders 0 beers. Orders 999999999 beers. Orders a lizard. Orders -1 beers. Orders a sfdeljknesv.

    via https://github.com/minimaxir/big-list-of-naughty-strings via https://www.sempf.net/post/On-Testing1.aspx

  3. "The price for securing your network is eternal vigilance and also your soul." "Whose soul? We're sysadmins." "Oh, right. End users. Hang on, I have a jar of them under my desk. Let me get one out for you."

  4. "blocking an SSH port for a Linux user is like taking a mouse away from a Windows user"

    via http://www.linuxjournal.com/content/one-port-rule-them-all via http://www.rutschle.net/tech/sslh.shtml

  5. browser.fullscreen.autohide => false

    Gimme MOAR SPACE!

  6. Pro: no need to setup a DNS server to test virtualhosts Con: keep in mind that all "fake" hosts will point to 127.0.0.1!

    1. Use /etc/hosts to declare test hosts / domains / subdomains
    #&lt;ip-address&gt;	&lt;hostname.domain.org&gt;	&lt;hostname&gt;
    127.0.0.1	localhost.localdomain	localhost
    127.0.0.1	host.localdomain	host
    127.0.0.1	sub.host.localdomain	sub.host
    ::1		localhost.localdomain	localhost
    
    1. Allow per-user virtualhost definition in either (depending on your distro)
    • /etc/httpd/conf/httpd.conf
    • /etc/apache2/apache2.conf

    Include /home/albert/.httpd/*.conf

    1. Profit! Create virtualhosts with local hostnames :)