Other Software Resources#

NotepadPlusPlus (Text Editor)#

Notepad++ is an all-round text editor for basic coding (R, Python, Java, C, Perl, …), markdown/html editing and many many (not a typo) more. Linux alternatives for Notepad++ are, for example, Sublime text (proprietary), Kate (cross-platform), or Gedit (simplistic).

Office Applications#

Office applications greatly simplify everyday office life. However, the most popular application from Microsoft has a high price. Here are some free-to-use alternatives.

Libre Office#

LibreOffice is completely free to use (see their license terms) and works on most popular platforms. Recent versions offer greatly improved user interfaces, with the ability to organize menus into tabs, similar to other office suites.

Only Office#

Only Office resembles MS Office a lot, it is very intuitive and enables cloud-based collaboration. It is free to use for non-commercial purposes and comes at an OK price for commercial purposes. On any Ubuntu Linux-based platform (e.g., Ubuntu, Mint, or Lubuntu), it is available through the software manager (or snap, flathub, or whatever you use…). Mint users find more information at https://community.linuxmint.com.

For more installation options (e.g., for other Linux platforms, macOS, or Windows) visit the DesktopEditors section on https://www.onlyoffice.com.

Look for DesktopEditors to use Only Office for free

Make sure to follow the non-commercial desktop-use installation instructions on https://www.onlyoffice.com. Other versions are not for free.

Many plugins for enriching Only Office are available on GitHub. To install them, download/clone the plugins (as zip file) from GitHub. Make sure to unzip the repository and package the following files and folders into one .zip file: config.json, scripts/, pluginCode.js, licenses/, resources/, translations/, LICENSE. Some of these files or directories might not be available in all plugin repos, which you may want to omit in these cases. Also, the pluginCode.js file might be hidden in the scripts/ folder and if this is the case, copy the .js file (e.g., scripts/pluginName.js) into the head folder and rename it to pluginCode.js. Then rename the zip archive to name.plugin (replace the name of the plugin), open Only Office, go to the Plugins tab, Settings, and use the Add button to locate and add the plugin.

Here is a list of useful plugins:

PDF Annotations (Editing) with Xournal++#

Xournal++ is a free note-taking software for annotating PDFs, sketching, and writing notes. It is a new version of the original Xournal project and has more features and a modern look. It can layer images, use different pens and highlighters, and import and export files in different formats. Its cross-platform compatibility makes it a powerful tool for students, researchers and professionals looking for a flexible digital note-taking solution. For example, Xournal++ facilitates note-taking on PDFs during meetings, lectures or conferences, and makes it easy to draw on pictures and make sketches.

Windows and MacOS users can find installation instructions at https://xournalpp.github.io. Debian/Ubuntu/Mint/Lubuntu (and similar) Linux users can install Xournal++ using

sudo apt install xournalpp
xournal++ PDF image annotation editing

Fig. 2 Illustration of the Xournal++ app running on Linux Mint (dark scheme).#

GNU Octave (Matlab® alternative)#

Matlab® still is one of the leading tools in science and engineering. However, license fees and its proprietary nature limit the use of Matlab® to privileged entities and users. The good news is that there is a remedy in the shape of GNU Octave. GNU Octave and Matlab® use very similar syntax and .m files can be run with both programs. If error messages occur by running a .m file with GNU Octave, make sure to load relevant packages at the top of the script (this is one of the major differences between GNU Octave and Matlab®). For example:

pkg load io
# ... some script with console output
pkg unload io

All stable GNU Octave packages can be found at https://packages.octave.org. To install one of these packages, open GNU Octave and type in the command window:

pkg install "<package-link>"  # installs the package
pkg load <package-name>  # loads the package in the active session

Afterward, the new package can be loaded anytime by just typing in pkg load <package-name>. For example, the following code snippet installs and loads the statistics package:

pkg install "https://github.com/gnu-octave/statistics/archive/refs/tags/release-1.6.6.tar.gz"
pkg load statistics

Tip

Python provides comes with many more options for data processing and analyses. So instead of trying to tweak .m code, consider reading and using the Python tutorial with its NumPy library descriptions, which also highlights principal differences between Matlab and Python’s NumPy) notation.

MATLAB® is a registered trademark of The MathWorks.

Hydrop