VirtualTam's bookmarks
129 bookmarks found
-
- https://github.com/junegunn/fzf/wiki/examples
- https://github.com/junegunn/fzf/wiki/examples#searching-file-contents
- https://github.com/junegunn/fzf/wiki/examples#fzf-as-dmenu-replacement
- https://github.com/junegunn/fzf/wiki/examples#buku
- https://github.com/junegunn/fzf/wiki/examples#git
- https://github.com/junegunn/fzf/wiki/examples#tmux
- https://dmitryfrank.com/articles/shell_shortcuts
- https://github.com/wfxr/forgit
-
Cross-platform shell wrapper
Alternatives:
- pbs (discontinued) - https://github.com/amoffat/sh/tree/pbs
- sh (*nix only) - https://github.com/amoffat/sh
-
C+Python and core dumps - Stack Overflow
2017-04-26 - http://plasmodic.github.io/ecto/ecto/usage/external/debugging.html
- https://lists.gt.net/python/python/1132756
1$ gdb --args python script.py 2[... GDB info ...] 3(gdb) run 4[... oooh crashes \o/ ...] 5(gdb)
-
lsof - find things on Linux
2017-03-27 -
the xonsh shell
2017-02-14 -
- https://github.com/joonro/ConEmu-Color-Themes
- https://conemu.github.io/en/ThirdPartyProblems.html
- https://conemu.github.io/en/CygwinAnsi.html
- https://conemu.github.io/en/CygwinMsys.html
- https://conemu.github.io/en/CygwinMsysConnector.html
- https://superuser.com/questions/834754/tmux-split-panes-not-rendering-properly-in-conemu
-
Ed, man! !man ed
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.
-
1# from a virtualenv 2$ pip list --outdated
-
rxvt-unicode won't Fully Maximize in KDE. / Applications & Desktop Environments / Arch Linux Forums
2016-01-07 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
-
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
-
virtualtam/developus-apparatus
2015-08-24 An assortment of development-related links, resources and scripts
-
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}'
-
eg: display example usage for *nix commands
2015-05-02 1$ pip install eg 2$ eg <command>