webOS by Example: Sorting Thoughts

December 11, 2009 | In Tools, Programming | No Comments

My slides about my experience with webOS and the development of Sorting Thoughts for webOS:

XWiki Enterprise 2.0 & Beyond

November 30, 2009 | In Tools, KM | No Comments

My last test installation of XWiki was three years ago and after reading the current feature list of XWiki Enterprise I’m really impressed. I think I have a new entry for my task list: “Installing XWiki and test it”.

Links

Platform check in Eclipse 3.5

July 8, 2009 | In Java, Eclipse | No Comments

To check the running platform in an Eclipse 3.5 plugin or RCP app use this:

org.eclipse.jface/src/org/eclipse/jface/util/Util.java

...
        /**
	 * Note: this may be made internal in 3.5
	 * @return true for windows platforms
	 * @since 3.5
	 */
	public static final boolean isWindows() {
		final String ws = SWT.getPlatform();
		return WS_WIN32.equals(ws) || WS_WPF.equals(ws);
	}

	/**
	 * Note: this may be made internal in 3.5
	 * @return true for mac platforms
	 * @since 3.5
	 */
	public static final boolean isMac() {
		final String ws = SWT.getPlatform();
		return WS_CARBON.equals(ws) || WS_COCOA.equals(ws);
	}
…

Backlog Tool Overview

June 11, 2009 | In Tools, Process | 1 Comment

If you search for a backlog tool, take a look on http://www.userstories.com/products.

For example, a simple and good backlog tool is eXPlainPMT


eXPlainPMT
.

Pony Meeting

February 6, 2009 | In Process, Links | No Comments

This refers to a story Lopp told earlier in the session, in which he described the process of a senior manager outlining what they wanted from any new application: “I want WYSIWYG… I want it to support major browsers… I want it to reflect the spirit of the company.” Or, as Lopp put it: “I want a pony!” He added: “Who doesn’t? A pony is gorgeous!” The problem, he said, is that these people are describing what they think they want. And even if they’re misguided, they, as the ones signing the checks, really cannot be ignored.

Apple’s design process

Next Page »

Powered by WordPress. Theme based on Pool theme design by Borja Fernandez.
Entries and comments feeds. Valid XHTML and CSS. ^Top^