VirtualTam's bookmarks

  1. Implementation for OOP generic objects, starting with 3.5 : )

    See https://docs.python.org/3.5/library/typing.html

  2. 1for i in $(find /usr/lib -type f -name '*.so.*'); do
    2      nm -D $i | grep MY_SYMBOL;
    3      [[ $? -eq 0 ]] && echo $i;
    4done
    

    adapted from http://narkive.com/a1rT9Efg.8

  3. Twisted 2015-04-24

    Twisted implements a variety of networking and communication protocols and exposes them all as method-calls on your Python objects. Client and server implementations are provided for various standard protocols, including:

    • HTTP (twisted.web)
    • IMAP, POP, SMTP (twisted.mail)
    • DNS (twisted.names)
    • TLS (core)
    • SSH, Telnet (twisted.conch)
    • IRC, XMPP, OSCAR (twisted.words)
    • Ethernet, IP, TUN/TAP (twisted.pair)
    • NMEA (twisted.positioning)

    https://twistedmatrix.com/trac/wiki/Documentation