From: http://freemind.sourceforge.net/wiki/index.php/Getting_started_as_a_developer
Compile, Branch and Patch of the lastest version
- get the latest code:
git clone git://freemind.git.sourceforge.net/gitroot/freemind/freemind
cd freemind/freemind
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<?pde version="3.8"?> | |
<target name="gef-integration" sequenceNumber="1"> | |
<locations> | |
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit"> | |
<unit id="org.eclipse.xtext.sdk.feature.group" version="2.10.0.v201605250459"/> | |
<unit id="org.eclipse.emf.sdk.feature.group" version="2.12.0.v20160526-0356"/> | |
<unit id="org.eclipse.sdk.ide" version="4.6.0.I20160606-1100"/> | |
<repository location="http://download.eclipse.org/releases/neon"/> | |
</location> |
sudo apt install curl zip unzip | |
curl -s "https://get.sdkman.io" | bash | |
# source sdkman here |
package com.hazelcast; | |
public class Main { | |
public static void main(String[] args) { | |
// Add necessary code to start up a Hazelcast instance and | |
// run the application multiple times to cluster them up | |
} | |
} |
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>pl.lafk</groupId> | |
<artifactId>#APP</artifactId> | |
<version>0.1</version> | |
<name>#NAME</name> |
package pl.edu.lafk.colours; | |
enum ANSI { | |
RESET("\u001B[0m"), | |
BLACK("\u001B[30m"), | |
RED("\u001B[31m"), | |
GREEN("\u001B[32m"), | |
YELLOW("\u001B[33m"), | |
BLUE("\u001B[34m"), | |
PURPLE("\u001B[35m"), |
From: http://freemind.sourceforge.net/wiki/index.php/Getting_started_as_a_developer
Compile, Branch and Patch of the lastest version
git clone git://freemind.git.sourceforge.net/gitroot/freemind/freemind
cd freemind/freemind
git log --format="%B" | sort | uniq -c | head
git log --format="%B" > l; awk '{ print length($0); }' l | sort -n
, do CSV i rób wykres i licz średniągit log --format="%B" | sort
Why bother? Explained by Jim Dennis in accepted answer to a common question: https://stackoverflow.com/questions/1218390/what-is-your-most-productive-shortcut-with-vim which actually ponders why bother with VIM if it breaks "the default" Ctrl+f, Ctrl+C, Ctrl+V, Ctrl+A that one learned from other (usually MS) tools...
vimtutor
-> man vim
-> and when in Vim ':help whatever-you-need-help-on'.
Also, echo "set nocompatible" >> ~/.vimrc
so that your Vim acts like Vim and not like VI. >>
appends, to not overwrite if you already had a Vim config file (.vimrc
).
package pl.edu.lafk.tdd.podroby; | |
/** | |
* @author Tomasz @LAFK_pl Borek | |
*/ | |
class Adres { | |
String ulica; | |
short nrLokalu; | |
short nrDomu; |