[ Skip to the content ]

Institute of Formal and Applied Linguistics Wiki


[ Back to the navigation ]

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
it-tricks [2018/11/29 11:27]
ufal [Editors]
it-tricks [2019/06/07 10:00]
vidra [Editors]
Line 11: Line 11:
   * **nano**:   * **nano**:
   * **atom**: Martin Popel   * **atom**: Martin Popel
 +  * **IntelliJ IDEA**: Jonáš Vidra
   * **Kate**: Jonáš Vidra   * **Kate**: Jonáš Vidra
   * **Kile** (offline TeX editing): Anša Vernerová   * **Kile** (offline TeX editing): Anša Vernerová
Line 96: Line 97:
     * You can use it with [[https://pdfpc.github.io/|pdfpc]] to show slides on the overhead projector while reading your notes on your laptop's screen. Create the dual-screen PDF with ''\usepackage{pgfpages} \setbeameroption{show notes} \setbeameroption{show notes on second screen=left}'' and add notes using ''\note{Hello!}''. Then display your presentation with ''pdfpc --notes=left presentation.pdf''.     * You can use it with [[https://pdfpc.github.io/|pdfpc]] to show slides on the overhead projector while reading your notes on your laptop's screen. Create the dual-screen PDF with ''\usepackage{pgfpages} \setbeameroption{show notes} \setbeameroption{show notes on second screen=left}'' and add notes using ''\note{Hello!}''. Then display your presentation with ''pdfpc --notes=left presentation.pdf''.
  
 +===== TAR archive mounting =====
 +If you work with data consisting of many small files, you **should** store them in tar archives to save inodes. There is a way to mount a tar archive to a specific directory in the simmilar way you mount ISO image. You can use the following wrapper script to //mount// (read-only) ARCHIVE to DIRECTORY:
 +
 +  /opt/bin/tarmount -a ARCHIVE DIRECTORY
 +
 +and //umount// when you finish your work:
 +
 +  /opt/bin/tarmount DIRECTORY
 +
 +You can also use the original tool called [[https://github.com/mxmlnkn/ratarmount | ratarmount]] directly through the link:
 +
 +  /opt/bin/tarmounter 
  
 ===== Other ===== ===== Other =====

[ Back to the navigation ] [ Back to the content ]