CTO, Software engineer and Team leader
Posts tagged Fraunhofer FIT
Media Informatics Master
Feb 1st
In the Autumn of 2008 I joined the Media Informatics Master program, saying goodbye to Alensa Online team. It is part of the Bonn-Aachen International Center for Information Technology (B-IT) and was created through the collaboration of prestigious German institutions:
- University of Bonn,
- RWTH Aachen University,
- University of Applied Sciences Bonn Rhein-Sieg,
- Fraunhofer Institute Centre Birlinghoven Castle IZB
Supported by the B-IT Foundation and complementary state resources, B-IT offers highly selective International Master Programs in Applied IT, as well as the summer/winter schools for qualified computer science students. Most courses take place in the beautiful B-IT building next to the former office of the German Chancellor on the More >
Handle XML with namespaces
Sep 5th
I faced an issue while working with an xml file in Flash. I was unable to parse the xml data using the normal E4X syntax such as xml.node1.node2. It would give an error. The only thing different about this particular xml is that it has a lot of namespaces declared in it. After going through the documentation I found out a way to handle this issue. Let’s consider the following code:
var xml:XML = <Workbook xmlns:c="urn:schemas-microsoft-com:office:component:spreadsheet" xmlns:html="http://www.w3.org/TR/REC-html40" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:x2="http://schemas.microsoft.com/office/excel/2003/xml" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:x="urn:schemas-microsoft-com:office:excel">
<ss:Worksheet ss:Name="Sheet1">
<Table ss:StyleID="ta1">
<Row ss:AutoFitHeight="0" ss:Height="13.4064">
<Cell>
<Data ss:Type="String">Preview</Data>
</Cell>
<Cell>
<Data ss:Type="String">unicode</Data>
</Cell>
<Cell>
<Data ss:Type="String">htmlcode</Data> More > iMeet application presentation
Jul 25th
Finally, the biggest moment: application is ready!! I am very proud of this application, as it represents my achievements in fast learning and adapting to:
- new way of programming, as XCode and Interface Builder truly represent the ModelViewController paradigm
- new language- Objective-C, which as any language has its pluses and minuses
- new device: mobile devices on which I didn’t work since my experience on Sales Force Automation in TotalSoft company, back in 2005, on Windows CE.
I’ve structured the application visually in few areas:
1. Login screen – the ‘”gate” to the application. Since the access to the
XML-RPC is done in a secure way, the application More >
Flex 3 debugging && Nod32 != Love
Apr 12th
While working at Fraunhofer FIT, I had few small projects to develop internal modules for extending the interaction between researchers. The technologies were set from the start to Flex 3 and ActionScript.
As starter in Flex, but not ActionScript, I was quite anxious to begin coding in this interesting tool. But after I created my new Workspace (seems that now everyone creates its own paradigm for Project) and wrote some code, I hit a wall: the Flex IDE debugger interface raised an error that he couldn’t connect to the Flash debugger:



























