Tag Archives: Software Entwicklung

Sorting Tables and Paging with jQuery

Sorting Tables and Paging with jQuery

Our latest webapplications called for client-sided table sorting and paging. Not just any boring numerical or alphabetical sorting, but also funky “define-our-own” sorting with only parts of the data displayed in the table cells. After testing various jQuery (a library we were already using on the project) table sorting plugins, we decided to stick with [...]

Tabelle in Oracle unlocken bzw. Session löschen

Vorallem beim Debuggen mit Visual Studio kann es manchmal zu Locks auf der DB kommen. Um einen Lock einer Oracle DB aufzuheben muss man die dazugehörige Session killen, was mit folgenden SQL-Kommandos möglich ist: Das erste SQL selektiert alle Benutzer bzw. Sessions die aktiv sind. Mit dem zweiten SQL kann man die Session killen. Als Parameter gibt [...]

DevCamp: A testing framework for everyday use

DevCamp: A testing framework for everyday use

Specflow is a testing framework developed by TechTalk and published under the BSD license. As said on the webpage http://specflow.org it “aims at bridging the communication gap between domain experts and developers by binding business readable behavior specifications to the underlying implementation.“ Specflow is highly influenced by the Cucumber framework which is quite obvious. A [...]

Why you should plan to migrate to Visual Studio 2010 already now!

During the Inner Circle summit there is a lot of information about features of the new visual studio and about the current market situation for Microsoft Technologies. To mention every detail, I could talk probably for hours or even days. The Beta 2 of Visual Studio 2010 has been released and there is how an [...]

Filter in custom sharepoint lists for current user [Me]

Filter in custom sharepoint lists for current user [Me]

I’m creating a custom view for a list. The view filters the list to show only the documents that are edited by the current user. I’m trying the following caml-query in my schema.xml <Query> <Where> <Eq> <FieldRef Name=”hsg_ApproverList”></FieldRef> <Value Type=”User”>$Resources:hsg_Resources,Me;</Value> </Eq> </Where> <OrderBy> <FieldRef Name=”FileLeafRef”/> </OrderBy> </Query> In my code I tried to replae the [...]

Good old (C/C++) Times

Für alle die noch wissen was Pointer sind oder wissen wollen, mit was man sich früher, oder in manchen Unternehmensbereichen immer noch, herumschlagen mußte sollten sich dieses nette lehrreiche Lehrvideo aus der Stanford Educational Library ansehen.

TAG you’re it :)

TAG you’re it :)

Habe heute von einem Kollegen den Hinweis zu einer netten SDK bekommen zum Taggen von Informationen, welche von vielen PDAs (Windows Mobile, Symbian, Android, IPhone – leider kein Blackberry ) unterstützt wird. (Link zum Downloadcenter: http://gettag.mobi/) It’s simple, useful, and fun. Download the free application to your phone and you’re ready to link real life [...]

Mein virtuelles Gedächtnis

Mein virtuelles Gedächtnis

Um mein Gedächtnis zu entlasten verwende ich das Clipboard Caching Tool “CLCL”. Es speichert einfach die letzten 30 Einträge und ist sehr einfach zu handhaben: mit Strg+[X|C|V] kann wie gehabt kopiert/ausgeschnitten/eingefügt werden und Alt+C bietet ein Popup Menü mit den letzten 30 Einträgen die gepastet werden können. Dadurch können mehrere Kopierfunktionen auf einmal durchgeführt werden [...]