Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Gunnar Wagenknecht

Revision as of 04:51, 27 September 2016 by Gunnar.wagenknecht.org (Talk | contribs) (Java 8, 2016 Update)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
/**
 * Copyright (c) 2008, 2016 Gunnar Wagenknecht.
 * All rights reserved.
 *
 * This program and the accompanying materials are made available under the terms of the
 * Eclipse Public License v1.0 which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Gunnar Wagenknecht - initial API and implementation
 */
 
/**
 * Gunnar is a software engineer who loves server and application architectures
 * and all things technology related.
 * <p>
 * Apart from Eclipse he loves chatting about fishing, diving, family and other
 * things that matters over a good beer.
 * </p>
 */
public final class GunnarWagenknecht {
 
	public static String blogAddress() {
		return "http://wagenknecht.org/blog/";
	}
 
	public static String emailAddress() {
		return String.format("%s@%s", "gunnar", "wagenknecht.org");
	}
 
	public static void main(final String[] args) {
		System.out.println("Gunnar Wagenknecht");
		System.out.println();
		System.out.printf("     Email: %s%n", emailAddress());
		System.out.printf("      Blog: %s%n", blogAddress());
		System.out.println();
		networkLinks().forEach((name, link) -> System.out.printf("  %8s: %s%n", name, link));
	}
 
	public static Map<String, String> networkLinks() {
		final Map<String, String> links = new LinkedHashMap<>(4);
		links.put("AboutMe", "http://guw.io");
		links.put("GitHub", "https://github.com/guw");
		links.put("Twitter", "https://twitter.com/guw");
		links.put("LinkedIn", "https://www.linkedin.com/in/gunnarwagenknecht");
		return links;
	}
 
	private GunnarWagenknecht() {
		// Just me. No forks.
	}
}

Back to the top