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. Snap.svg 2015-07-13

    Javascript library to handle SVG images

  4. Plenty of fun tasks, riddles and puzzles to solve altogether with learning Python!

    Get ready for:

    • basic Python exercises (data structures, language features, common libraries)
    • a handful exercises on string and data processing
    • algorithmics! pathfinding, map exploration, optimization...