VirtualTam's bookmarks

  1. Cross-platform shell wrapper

    Alternatives:

  2. 1$ gdb --args python script.py
    2[... GDB info ...]
    3(gdb) run
    4[... oooh crashes \o/ ...]
    5(gdb)
    
  3. 2017-02-14
  4. 2016-08-18

    ED(1) Unix Programmer's Manual ED(1)

    NAME ed - text editor

    SYNOPSIS ed [ - ] [ -x ] [ name ] DESCRIPTION Ed is the standard text editor.

  5. 1# from a virtualenv
    2$ pip list --outdated
    
  6. TL;DR - Right Click on window title bar > More Actions > Special Applications Settings > Size and Position > Obey geometry restrictions > Choose Force and leave check mark to No.

    http://www.emacswiki.org/emacs/KdeMaximized https://bbs.archlinux.org/viewtopic.php?id=92115

  7. 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

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

  9. 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}'