Tuesday, November 27, 2007
Development Tools, libraries and more n°1
Wednesday, October 17, 2007
Helpful tools n°3
It seems to be an ineteresting tool, even if few diagrams are implemented, but I wish to take a try and then write something more about.
The product download can be found at: http://www.tangiblearchitect.net/modellingtools.html
Ciao
Friday, July 13, 2007
Helpful tools n°2
Yesterday night I was looking for some news from an open source project, accidentally I found 2 interesting tools, one from Microsoft and one from Businessware Architects.
The one from Microsoft is the XSDObjectGen, a tool for gerating code, pure classes, from xsd Schemas. It's free to download at: http://www.microsoft.com/downloads/details.aspx?familyid=89e6b1e5-f66c-4a4d-933b-46222bb01eb0&displaylang=en
The one from Businessware Architects is the CodeXS, a code generation tool who does the same as XSDObjectGen and XSD tools from Microsoft. The Only difference is that CodeXS is open source and more, efficient, modular... It's frre to download (registration required) at: http://www.bware.biz/default.htm?http://www.bware.biz/DotNet/Development/CodeXS/Article/Article_web.htm. There's also an interesting article related to the tool which take a tour over functionality and more.
So I wish to take a try to evaluate the potential from that tool. Maybe one could say I found nothing new to the folks, but before yesterday I never saw that tools, so I want to examinee how can I use them in my projects.
Ciao!
Thursday, July 12, 2007
Helpful tools n°1
Yesterday's evening I was navigating and writing some code, line after line, I took a tour on the SharpDevelop Web Site, I love that tool, in the past years frequently I took a tour in the source code, to learn, to see what has been done.
So I went to the SharpDevelop Wiki and I found a wonderful online tool, a Code Converter. The tool is exposed as Web service and makes use of NRefactory to convert code.
The link is http://codeconverter.sharpdevelop.net/Default.aspx here you can find:
- a class converter:
http://codeconverter.sharpdevelop.net/Convert.aspx
the supported convertsions are:- C# to VB.NET
- C# to Boo
- VB.NET to C#
- VB.NET to Boo
- a snippet converter:
http://codeconverter.sharpdevelop.net/SnippetConverter.aspx
the supported convertions are C# to VB.NET and vice versa. - a code formatter:
http://codeconverter.sharpdevelop.net/FormatCode.aspx
supports ASP/XHTML, BAT, Boo, Coco, C++.NET, C#, HTML, Java, JavaScript, Patch, PHP, TeX, VBNET, XML
It's possible too to use these features in client applications directly using and calling the web service.
As example I tried to format and colorize an xml chunk as:
<configuration target="StandardDatabaseConfig">
<provider name="testProvider" refTo="XmlProvider, TestLib.Providers" />
</configuration>
the result is:
1: <configuration target="StandardDatabaseConfig">
2: <provider name="testProvider" refTo="XmlProvider, TestLib.Pr
oviders" />
3: </configuration>
Fantastic tool!
Ciao!