In default setup, Linux Mint installs gedit in version 2.x. In order to use more recent version of this editor (for example for Markdown support), you can follow the instruction below.
Linux Mint 17.3
| ;-------------------------------------------------------------- | |
| ;Sample NSIS script for MyDesktopApp | |
| ; | |
| ;Author: Piotr Likus, 2019 | |
| ; https://github.com/vpiotr | |
| ; | |
| ;Initial script automatically created by Mihov NSIS Helper 3.2 | |
| ; http://freeware.mihov.com | |
| ; | |
| ;Some patterns to be replaced: |
| // 99 Botttles of Beer (see http://www.99-bottles-of-beer.net/) | |
| // Language: JavaScript (SeaMonkey) | |
| // | |
| // Features: | |
| // * no usage of digits | |
| // * strings are not repeated | |
| // * no external libs required | |
| function bottles(x) { |
| package passgen; | |
| import java.util.Random; | |
| import java.util.Scanner; | |
| /** | |
| * Exercise 37 from "Exercises for programmers". | |
| * @author Piotr Likus | |
| */ | |
| public class PassGen { |
In default setup, Linux Mint installs gedit in version 2.x. In order to use more recent version of this editor (for example for Markdown support), you can follow the instruction below.
Linux Mint 17.3
Currently there is no automatic way to install Gnome Commander on CentOS 6. Below you will find instructions how to do that using install from compiled sources. Note that this is not a clean install and some things can be missing - it is always best to use automatic install (if available).
| #include "xnode_property_list.h" | |
| #include "xnode.h" | |
| xnode_named_list cache; | |
| // already existing entries will automatically destroyed and replaced | |
| cache.put("MAMA", xnode.value_of("mama")); | |
| cache.put("PAPA", xnode().hold(new Person("PAPA"))); | |
| cache.put("TARPAN", xnode().hold(new Car("TARPAN"))); |