Eclipse

COLA: Real-time shared editing in Eclipse

Shared editing is very useful for debugging / walk-throughs etc., and the Real-time shared editing plug-in, which is a part of the Eclipse communication Framework Project is nifty beyond expectations.

The following is a screencast taken from Mustafa Isik's blog:

The joys of the Eclipse update manager

The Eclipse 3.3.1.1 update manager has to be the most annoying updater ever fucking written. What a pile of refuse :/

I'm sure that the Eclipse developer community has their own private updater as I am certain no sane man can stand working with it.

Issues:

  • If I want the update to run in the background, I should also be able to run it in the foreground.
  • If I cancel the update, it should be cancelled immediately. It should not be "cancelling" for the rest of eternity and require a restart of Eclipse to get done.

Removing trailing whitespace in Eclipse

I suck at regex. But the fact that Eclipse leaves trailing whitespace everywhere is pretty fucking annoying. Although, this will apparently be solved in 3.3, that's still a month or so away (IIRC). Anyways, while I normally just use a $ regex search (whitespace switches don't like working in Eclipse's find dialog) to repeatedly weed out the bastards, today, I came across a more robust expression. Here goes:

Find: [\t ]+(?:(\n)|$)

Eclipse + Subversion : RA layer request failed + could not read status line errors

Server: Apache 2.0.52 + SVN 1.4.3 + mod_dav_svn enabled. Most repositories also use a bunch of post commit hooks to automate tasks.
Client: Eclipse 3.2.2 + stock subclipse callisto install.

Error message:

commit -m "commit message." files
RA layer request failed
svn: Commit failed (details follow):
svn: PROPFIND request failed on '/repo/path/!svn/vcc/default'
svn: PROPFIND of '/repo/path/!svn/vcc/default': Could not read status line: connection was closed by server. (http://example.com)

Syndicate content