| bio | website | have-none.example.org |
|---|---|---|
| location | Graz | |
| age | 32 | |
| visits | member for | 1 year, 11 months |
| seen | Feb 27 at 15:15 | |
| stats | profile views | 9 |
Can LaTeX be semantically correct, too?
|
Oct 25 |
comment |
Shell script to backup directories There are also incremental backup tools (based on rsync) like e.g. rdiff-backup. But rather follow @Gilles's and @sparticvs's advice: revision control! |
|
Oct 24 |
comment |
Fedora 17 : Cannot open font file True As I see the same "missing font" (is True a flag to use some default?), the mounting problem seems to be unrelated. See Redhat/Fedora Bug 799401 |
|
Aug 31 |
comment |
Find and remove many files by specific content In the rare case that find might not suffice, you can use -print0 and --null, respectively: find somedir -somefilters ... -print0 | xargs --null someexec. I am not sure about the differences between GNU and POSIX commands, though. |
|
Jun 5 |
comment |
configuration ethics (esthetics): /etc vs $HOME Maybe etckeeper can help you - it tracks config files in /etc using git (or hg, darcs, `bzr´). |
|
Mar 5 |
comment |
Does GNOME 3 support desktop zoom? There is the zoom option in GNOME3's accessability menu (tray icon near the right end of the system tray / top panel). |
|
Feb 24 |
comment |
How to launch an application with default “terminal emulator” on Ubuntu? Unfortunately, it does not work on Fedora 16 with Gnome 3.2.1 |
|
Feb 21 |
comment |
How to extract annotations from PDF files? From the lack of (alternative) answers or non-programmers-tipps I gather that this question might be more appropriate for Stack Overflow where I found this question Extracting text from PDF with Poppler (C++). Shall I ask it there as a new question or can someone move this thread? |
|
Feb 16 |
comment |
How to run grep on a single column? To avoid localization issues (date format affects column order) it is often suggested to ensure standard format and language: LANG=C ls -l | awk ... |
|
Feb 13 |
comment |
How to extract annotations from PDF files? Could you point me to a beginner-friendly documentation of python-poppler - I could not find more than demo-poppler.py. |
|
Feb 13 |
comment |
How to extract annotations from PDF files? Clarification: I am not talking about freehand (digital ink) comments. |
|
Feb 9 |
comment |
find exclude directory I improved parentheses (and their reasoning) thanks to @me_and 's comment. |