Programming
new version of GnuWIn32 as of 10/18/08
Submitted by luke on Sat, 2008-11-01 16:35http://gnuwin32.sourceforge.net/ I want to try out the new wget and getopts commands!
XSL
Submitted by albert on Tue, 2008-10-21 06:41Here are some links:
A slide show that is a good beginning:
http://nwalsh.com/docs/tutorials/xsl/xsl/slides.html
The wikipedia entry:
http://en.wikipedia.org/wiki/XSLT
XML/XSL are important to be able to receive and send information.
Here is a way to transform a Microsoft Developers Studio project: (remove te spaces betwwen the <
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version='1.0'>
<xsl:variable name="newline">
< /xsl:variable>
<xsl:output method="text"/>
<xsl:strip-space elements="*" />
<xsl:template match="VisualStudioProject">
<xsl:value-of select="@Name" />
<xsl:text>
< /xsl:text>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="Configurations/Configuration">
<xsl:value-of select="@Name"/>
Visual Studio custom command line switches
Submitted by luke on Thu, 2008-08-21 09:19http://www.codeproject.com/KB/macros/SimpleSwitchFramework.aspx is an example of making a custom switch for devenv. I really need to get to know msbuild.
A very cool application to make graphs
Submitted by albert on Mon, 2008-06-02 04:53Graphviz - Graph Visualization Software uses a language called "dot" to create graphs. If you have Windows, you can get the latest. If you have Leopard (Mac OS X 10.5) you can get pixelglow | graphviz. If you have an earlier version of OS X you have to settle for Graphviz 1.13 (v16), which is still pretty cool.
Software Management Tools
Submitted by luke on Tue, 2008-05-20 11:24Cyclomatic complexity: is a software metric (measurement). It was developed by Thomas McCabe and is used to measure the complexity of a program. It directly measures the number of linearly independent paths through a program's source code.
Sourceforge links
Submitted by luke on Mon, 2008-05-19 08:11A bunch of stuff that should be in a blog.
Click read more to see them.
Source Monitor by Campwood Software
Submitted by albert on Wed, 2008-05-14 05:52http://www.campwoodsw.com/ says
"The freeware program SourceMonitor lets you see inside your software source code to find out how much code you have and to identify the relative complexity of your modules. For example, you can use SourceMonitor to identify the code that is most likely to contain defects and thus warrants formal review. SourceMonitor, written in C++, runs through your code at high speed. SourceMonitor provides the following:
* Collects metrics in a fast, single pass through source files.
* Measures metrics for source code written in C++, C, C#, VB.NET, Java, Delphi, Visual Basic (VB6) or HTML.
* Saves metrics in checkpoints for comparison during software development projects.
* Displays and prints metrics in tables and charts.
* Operates within a standard Windows GUI or inside your scripts using XML command files.
* Exports metrics to XML or CSV files for further processing with other tools."
Eclipse -- Great Java Development Editor
Submitted by albert on Wed, 2007-08-29 18:31Eclipse is a platform or more simply an IDE. It is used mostly for Java development but can be used for other items as well.
Here are some links I have found useful:
- Eclipse download site is where you get the latest Eclipse IDE application
- Eclipse Tutorials
Computer Support
Submitted by phecht on Sun, 2006-08-06 16:16Here are links mostly for programmers or developers, normal people probably won't be interested in these!
