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;)'

  2. “Les mots de passe sont aléatoires, mais pas au sens cryptographique du terme. On prend des mots de passe auquel un attaquant ne penserait pas tout de suite.”

    Oué, comme :

    • admin / admin (Livebox bonjour !)
    • <service> / <service> ou <service>admin / <service>admin (intégrateur de choc bonjour !)
  3. Given your unittests are in the tests directory:

     1# run a specific test module
     2python -m unittest tests.<module>
     3 
     4# run a specific test suite
     5python -m unittest tests.<module>.<class>
     6 
     7# run a specific test
     8python -m unittest tests.<module>.<class>.<test>
     9 
    10# run tests matching a given pattern
    11python -m unittest discover -s tests -p <pattern>