Mittwoch, 20. Juni 2007

Subversion Tips

Subcommander
The goal of the Subcommander project is to build an easy to use, cross platform (Win32, Unix, MacOSX) subversion GUI client (subcommander) including a visual diff and merge tool (submerge).
Links
http://www.yolinux.com/TUTORIALS/Subversion.html
Usefull tips and links, especiallly for linux. You will find also a list of graphical merge tools.

Labels: , , ,

Samstag, 9. Juni 2007

Skalierbarkeit ganz einfach

Der Vortrag von Jonathan Weiss auf dem Linuxtag 2007 zum Thema Amazon-S3 und Amazon-EC2 kann auf seinem Blog als mp3 runtergeladen werden. Die Folien stehen dort ebenfalls zum download bereit. Super interessanter Vortrag.

Labels: , ,

Donnerstag, 7. Juni 2007

Wow, probably one of the nicest consumer interfaces i have seen

It's a two finger touchscreen interface:
http://www.microsoft.com/surface/

Labels: , , ,

Freitag, 1. Juni 2007

kde hackers little friend - dcop

Do you want to script kde applications? Dcop could be the answere. There is an command line interface which is surprisingly called dcop. So for a quick start: Open a shell type: "dcop" and hit enter. You will see applications that have a dcop interface. If you are using klipper, which is normally the case, you can control the clipboard through it's dcop interface. Let's see howto do this. Type: "dcop klipper" and hit enter. You will see the supported interfaces. Type: "dcop klipper klipper" to check out the klipper-Interface. You will see the following interface:
QCStringList interfaces()
QCStringList functions()
QString getClipboardContents()
void setClipboardContents(QString s)
void clearClipboardContents()
void clearClipboardHistory()
QStringList getClipboardHistoryMenu()
QString getClipboardHistoryItem(int i)
int newInstance()
void quitProcess()
Now you can simply call a method like this:
dcop klipper klipper setClipboardContents "Hello from dcop"
This will put "Hello from dcop" to your clipboard.
Note that you can use tab-completition, so if you type: "dcop klipper klipper setC" and hit TAB it will complete to: "dcop klipper klipper setClipboardContent".

Labels: , , ,