User Anders Sandvig - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T03:41:03Zhttp://stackoverflow.com/feeds/user/1709http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1858430/what-was-your-favorite-assembly-language/1874057#18740570Answer by Anders Sandvig for What was your favorite assembly language?Anders Sandvig2009-12-09T13:54:34Z2009-12-09T13:54:34Z<p>I always preferred x86 assembly with Turbo Assembler syntax. Probably because that's what I started out with, but even after trying others (M68k, C64 and some virtual CPUs), I still think the Intel way makes more sense (to me, anyway). ;)</p>
http://stackoverflow.com/questions/23755/how-do-you-find-a-needle-in-a-haystack40How do you find a needle in a haystack?Anders Sandvig2008-08-22T23:49:32Z2009-11-20T12:19:09Z
<p>When implementing a needle search of a haystack in an object-oriented way, you essentially have three alternatives:</p>
<pre><code>1. needle.find(haystack)
2. haystack.find(needle)
3. searcher.find(needle, haystack)</code></pre>
<p>Which do you prefer, and why?</p>
<p>I know some people prefer the second alternative because it avoids introducing a third object. However, I can't help feeling that the third approach is more conceptually "correct", at least if your goal is to model "the real world".</p>
<p>In which cases do you think it is justified to introduce helper objects, such as the searcher in this example, and when should they be avoided?</p>
http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used31What is the strangest programming language you have used?Anders Sandvig2008-09-15T14:11:35Z2009-11-18T22:18:20Z
<p>For me I think it has to be the scripting language of an old proprietary telephony platform I used in the early 2000s. The language itself was not so bad, but the fact that it was meant to be edited with a drag-and-drop GUI, which did not expose all the functionality I needed, was quite frustrating. I also remember having to manually implement many common functions, such as calculating the length of a string. </p>
<p>Whenever I wanted to use "custom" or "advanced" functions, I had to edit the script files in a text editor, but as soon as I opened the files in the GUI again they were reformatted and restructured, which usually resulted in broken code. And, of course, this was an interpreted language, so I would not know it was broken until I actually ran it—oh, and did I mention that it did not run the same in the simulator as in the live environment? </p>
<p>So, what is the strangest programming language or environment you have used, and why did you use it?</p>
<p><strong>Note that I'm interested in languages and environments that you have actually used for "real-world" situations, so Whitespace, Brainf***k and friends are not valid—unless you have used them for something "real", of course.</strong></p>
http://stackoverflow.com/questions/58640/great-programming-quotes/59076#59076240Answer by Anders Sandvig for Great programming quotesAnders Sandvig2008-09-12T14:04:25Z2009-10-24T20:15:13Z<p>"Never trust a programmer in a suit."</p>
http://stackoverflow.com/questions/24319/where-can-i-find-good-technical-video-podcasts-or-videos-for-download21Where can I find good technical video podcasts or videos for download?Anders Sandvig2008-08-23T15:55:28Z2009-10-22T05:50:31Z
<p>When I'm eating, or generally feeling bored, I like to watch a TV-series or something for entertainment. However, being somewhat of a geek, I was wondering if there were any technical video podcasts out there that I should be subscribing to? Any site that provides programming or technology-related videos for streaming or download will do. A good example of the kind of videos I am looking for are Apple's video lectures for the iPod SDK.</p>
<p>Does something like "Slashdot video" exist?</p>
<p>Note that stuff like <a href="http://en.wikipedia.org/wiki/Strong_Bad" rel="nofollow">Strong Bad</a> is fun the first few times, but it's not really the kind of thing I'm looking for. I want to learn something (useful) while eating dinner!</p>
<p><strong>Update</strong></p>
<blockquote>
You don't say which technology you're particularly interested in [...]
</blockquote>
<p>I am actually not looking for videos about a specific technology or implementation language, but rather general topics such as design patterns, object-oriented design, usability, parallel computing, distributed systems, networking, databases, development processes, tools and techniques, methodologies, design principles, best practices and agile development. (I realize the iPod SDK videos may have been a bad example, as they are very specific.) </p>
<p>In short, my topic of interest is how to become a better programmer and software developer. That being said, I mainly develop in Java, C, C++ and Python for Windows and Linux platforms. What I am <em>not</em> looking for are tutorials on how to do X in language Y with framework Z.</p>
http://stackoverflow.com/questions/30571/how-do-i-tell-maven-to-use-the-latest-version-of-a-dependency14How do I tell Maven to use the latest version of a dependency?Anders Sandvig2008-08-27T16:17:02Z2009-09-17T22:46:13Z
<p>In Maven, dependencies are usually set up like this:</p>
<pre>
<dependency>
<groupId>wonderful-inc</groupId>
<artifactId>dream-library</artifactId>
<version>1.2.3</version>
</dependency>
</pre>
<p>Now, if you are working with libraries that have frequent releases, constantly updating the <version> tag can be somewhat annoying. Is there any way to tell Maven to always use the latest available version (from the repository)? </p>
http://stackoverflow.com/questions/23765/are-pingback-answers-to-stackoverflow-questions-ok4Are "pingback" answers to StackOverflow questions OK? [closed]Anders Sandvig2008-08-23T00:00:08Z2009-09-15T16:51:12Z
<p>After playing around with the site for a few days I already see many topics I may write about on my blog in the future. Some are directly related to questions here while others may only use the questions and related discussions for reference or as anecdotes. How do you feel about people posting "pingback" answers to the questions when using them in a blog context?</p>
<p>The pinback would only be a short comment with a link to the relevant blog post, and I think it should only be done—manually;—when the linked post actually adds some value to the discussion in the answers/comments.</p>
<p><strong>Update</strong></p>
<p><a href="http://beta.stackoverflow.com/users/392/dan" rel="nofollow">Dan</a> wrote:</p>
<blockquote>
I'm not totally familiar with how pingbacks work in blog software, but from what I've seen, it looks almost auto-generated. Is it possible to prevent these kinds of auto-generated pingbacks if a user has less than a certain reputation?</blockquote>
<p>I am not suggesting adding support for some kind of automatic pingback, I just called it "pingback" because that's a familiar term for many bloggers. What I actually meant was to answer the question by manually writing an answer that references a blog post. Not only posting the link, but also giving a short description and possibly some background information. As others have pointed out, these answers would be moderated up/down in exactly the same way as any other answer.</p>
<p><a href="http://beta.stackoverflow.com/users/2213/ian-patrick-hughes" rel="nofollow">Ian Patrick Hughes</a> wrote:</p>
<blockquote>
I do however worry about, DEAD LINKS as answers. They might be chosen and everyone thinks it's the greatest, but what about 6 months from now? 1 year? I mean, yeah, perhaps your blog entry is the dead-to-rights, spot-on, mother of all answers…..but, what does that matter if you do not upkeep the domain, host, or server?
</blockquote>
<p>I think the issue with dead links is just as relevant—or not relevant—when posting links to any other online resource. When linking to something for "educational purposes", I think it's important to chose sources that are likely to stay available for a long time. In that context I would be more worried about links to specific products on online stores or information on company web sites, as they (historically) often don't seem to bothered with keeping old links alive. </p>
<p>Modern blogging software goes a long way to ensure unique URIs that are suitable for permanent links, and I would think at least technical bloggers would also be aware of the importance of keeping their article addresses alive, also in the future. I can only speak for myself, but when I publish something online (for others to use as a reference), I make an effort to keep it alive, permanently.</p>
<p>I do agree that short answers can be copied onto the site, but I was actually thinkg about <a href="http://blog.looplabel.net/2008/07/28/best-practices-for-version-control/" rel="nofollow">longer articles</a>. Simply linking to something on your blog that could just as well have been written directly on the site would of course be meaningless, but I'm guessing those kind of "advertising campaigns" will just be down-voted.</p>
http://stackoverflow.com/questions/1315945/best-sites-for-inspiration-for-hobbyist-programmers/1315998#13159983Answer by Anders Sandvig for Best sites for inspiration for hobbyist programmers?Anders Sandvig2009-08-22T13:37:41Z2009-08-22T13:37:41Z<p>I usually make software to solve (common) problems I face in my everyday (personal or work) life. Typical examples would be automating tedious or boring tasks that I have to do frequently or semi-frequently. Another example is developing a plug-in or add-on for another piece of software to add a specific feature or solve a certain need you have that the software currently does not meet.</p>
<p>Of course, just writing stuff for the challenge (i.e. see if you are able to accomplish something or solve a given problem) or for fun is also good.</p>
http://stackoverflow.com/questions/55622/best-tools-for-working-with-docbook-xml-documents8Best tool(s) for working with DocBook XML documents?Anders Sandvig2008-09-11T01:18:09Z2009-08-17T05:16:16Z
<p>I experimented with DocBook XML a while back, and also used it professionally for documenting a few software projects, but since the tool support at the time was not very good, I soon abandoned it in favor of hand-written <a href="http://en.wikipedia.org/wiki/LaTeX" rel="nofollow">LaTeX</a>, and later <a href="http://www.lyx.org/" rel="nofollow">LyX</a>. </p>
<p>Now I'm considering taking another look at DocBook, and I was wondering, what are the best tools for working with DocBook XML documents today?</p>
http://stackoverflow.com/questions/681889/multiple-stylesheets-for-a-single-xml-document-selectable-in-browser0Multiple stylesheets for a single XML document selectable in browser?Anders Sandvig2009-03-25T14:41:06Z2009-07-21T19:54:27Z
<p>I have an XML file that I want the user to be able to see with two different stylesheets. The stylesheets are mutually exclusive, so only one of them should be active at a a time. </p>
<p>I tried adding the following to the top of my XML file:</p>
<p><code><pre>
<?xml-stylesheet type="text/xsl" href="brief.xsl" title="Breif" ?>
<?xml-stylesheet type="text/xsl" href="detailed.xsl" title="Detailed" alternate="yes" ?>
</pre></code></p>
<p>What I would expect to happen was that <code>brief.xsl</code> would be used as the default stylesheet, and "Detailed" would show up as an item in the "View -> Page Style" menu, but Firefox seems to ignore the second stylesheet (I only get the items "No Style" and "Basic Page Style", which are the default ones for every page). </p>
<p>Does Firefox not support the <code>alternate</code> attribute, or am I doing something (else) wrong? Do other browsers support this?</p>
http://stackoverflow.com/questions/1126448/how-do-i-generate-c-code-from-wadl-files1How do I generate C# code from WADL files?Anders Sandvig2009-07-14T16:11:00Z2009-07-17T09:00:27Z
<p>I am looking for a code generator than can generate C# code to access RESTful web services described by <a href="http://en.wikipedia.org/wiki/Web_Application_Description_Language" rel="nofollow">WADL files</a> in a way similar to how <a href="https://wadl.dev.java.net/wadl2java.html" rel="nofollow">wadl2java</a> works.</p>
<p>Doing som searching I came across the <a href="http://code.google.com/p/rest-api-code-gen/" rel="nofollow">rest-api-code-gen</a> project on Google Code, but although the latest source does in fact support C#, the <a href="http://tomayac.de/rest-describe/latest/RestDescribe.html" rel="nofollow">REST Describe & Compile demo site</a> does not. (The C# button is there, but it's disabled.)</p>
<p>I realize I could download the source and set up my own server with the latest version, but I would prefer not to, as what I need is a command line tool and not a web application with dependencies to Google Web Toolkit. I guess I could write my own a command line tool based on the same source code, but if it has already been done, or other tools can do the job, I'd rather avoid it.</p>
<p>So, I'm wondering, are there any tools like that out there?</p>
http://stackoverflow.com/questions/1017953/svn-automatic-code-formatting-on-check-in/1017976#10179766Answer by Anders Sandvig for SVN automatic code formatting on check in?Anders Sandvig2009-06-19T13:32:38Z2009-06-19T13:41:57Z<p>I think you can do this using <a href="http://wordaligned.org/articles/a-subversion-pre-commit-hook" rel="nofollow">a pre-commit hook</a> in your repository.</p>
<p><strong>Edit</strong> To the people who think this a bad idea (I'm not saying it isn't): It's not uncommon for organizations to enforce a specific code style or code formatting. Sometimes these rules can be quite pedantic and strictly enforced, and although they are usually human actions involved in this (i.e. formatting to the correct style before you commit anything to the repository), automating the process can sometimes be useful.</p>
<p>An alternative approach might be to do the verification automatically before the commit, but still allow the commit even if the check fails, but then only send an e-mail or some other notification to indicate that someone didn't follow the style.</p>
http://stackoverflow.com/questions/381915/free-resource-editor-for-windows-rc-files3Free resource editor for Windows .rc files?Anders Sandvig2008-12-19T19:15:33Z2009-06-16T13:22:08Z
<p>Microsoft Visual C++ Express does not include the built-in resource editor that comes with the professional versions. Are there any good, free, alternatives out there that let you visually edit those .rc files?</p>
<p>Note: I am talking about the resource script source files used by Visual C++ to compile the resources, not the compiled resources themselves (i.e. the program would need to be able to visually edit menus and dialogs in a similar way as MSVC++ does it).</p>
http://stackoverflow.com/questions/120359/tools-for-automated-gui-testing-on-windows9Tools for automated GUI testing (on Windows)?Anders Sandvig2008-09-23T11:11:28Z2009-06-16T11:55:35Z
<p>Does anyone have tools to recommend for automated testing of GUI applications on Windows? </p>
<p>The tools must be language-independent and thus should be able to interact with any GUI, regardless of implementation language. In other words, I'm looking for something that can be scripted to press buttons, select menu items, check checkboxes, etc., and ideally observe the results and compare them to reference results. </p>
<p>What are your experiences with such tools? Do they work, in practice? Are they worth the time they take to set up and configure? Do they actually find errors in the GUI or the application?</p>
<p><strong>Update</strong></p>
<p>I am aware of the replies to the other threads mentioned in the first answers, but I would like to hear from people who have experience with using these tools—or other tools—in practice.</p>
http://stackoverflow.com/questions/992919/how-to-set-up-win32-tooltips-control-with-dynamic-unicode-text0How to set up Win32 tooltips control with dynamic unicode text?Anders Sandvig2009-06-14T14:32:45Z2009-06-14T21:26:58Z
<p>I am having some trouble provding a Win32 tooltips control with dynamic text in unicode format. I use the following code to set up the control:</p>
<pre><code>INITCOMMONCONTROLSEX icc;
icc.dwSize = sizeof(INITCOMMONCONTROLSEX);
icc.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&icc);
HWND hwnd_tip = CreateWindowExW(0, TOOLTIPS_CLASSW, NULL,
WS_POPUP | TTS_NOPREFIX | TTS_ALWAYSTIP,
CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
NULL, NULL, hinst, NULL
);
SetWindowPos(hwnd_tip, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
TOOLINFOW ti;
memset(&ti, 0, sizeof(TOOLINFOW));
ti.cbSize = sizeof(TOOLINFOW);
ti.hwnd = hwnd_main;
ti.uId = (UINT) hwnd_control;
ti.uFlags = TTF_IDISHWND | TTF_SUBCLASS;
ti.lpszText = L"This tip is shown correctly, including unicode characters.";
SendMessageW(hwnd_tip, TTM_ADDTOOLW, 0, (LPARAM) &ti);
</pre>
<p>This works fine as long as I provide the tooltip text in <code>ti.lpszText</code>. However, I want the text to be dynamic, so instead I set <code>ti.lpszText</code> to <code>LPSTR_TEXTCALLBACKW</code> and handle the callback in my WindowProc(), like this:</p>
<pre>...
case WM_NOTIFY:
{
NMHDR *nm = (NMHDR *) lParam;
switch (nm->code)
{
case TTN_GETDISPINFOW:
{
static std::wstring tip_string = L"Some random unicode string.";
NMTTDISPINFOW *nmtdi = (NMTTDISPINFOW *) lParam;
nmtdi->lpszText = (LPWSTR) tip_string.c_str();
}
break;
}
}
break;
...</code></pre>
<p>Which does not work, as I never receive the <code>TTN_GETDISPINOW</code> message. (Note: It works if I handle <code>TTN_GETDISPINFO</code> instead and use <code>NMTTDISPINFO</code> to provide a char array, but then no unicode support...)</p>
<p>I'm guessing I'm doing something wrong in my setup or message handling here? Any suggestions on how to do it properly?</p>
<p><strong>Update</strong> <br>
Also note that my project is not compiled in unicoe mode (i.e. _UNICODE is not defined and the project is set to use multi-byte character set). This is intentional and I would like to keep it like that as, I have no desire to rewrite the entire application to be unicode-aware (at least not yet). Since the _UNICODE define is used to select *W versions of various functions and data structures I was hoping I could achieve the same result by using these explicitly in my code, as shown above. </p>
http://stackoverflow.com/questions/992919/how-to-set-up-win32-tooltips-control-with-dynamic-unicode-text/993797#9937972Answer by Anders Sandvig for How to set up Win32 tooltips control with dynamic unicode text?Anders Sandvig2009-06-14T21:26:58Z2009-06-14T21:26:58Z<p>Thanks for the Robert Scott link. I found a way to solve it now.</p>
<p><strong>In short, the trick was to make sure the receiving window was a unicode window and register a unicode window procedure for it.</strong></p>
<p>The problem was that I did not have a unicode <code>WindowProc()</code> for my parent window handling the <code>TTN_GETDISPINFOW</code> notification message. Since this window (class) was created with RegisterClassEx()/<code>CreateWindowEx()</code> and not RegisterClassExW()/<code>CreateWindowExW()</code>, it did not have registered window procedure for unicode messages. </p>
<p>To get around the problem I changed <code>ti.hwnd</code> from <code>hwnd_main</code> to <code>hwnd_control</code> when sending <code>TTM_ADDTOOLW</code>, resulting in the control's window procedure receving the notifications instead of its parent. In order to intercept the unicode events now sent to the control's window procedure, I subclassed it using <code>SetWindowLongW(hwnd_control, GWL_WNDPROC, (LONG) NewControlWndProc)</code>. </p>
<p>Note that <code>hwnd_control</code> is a standard "LISTBOX" window created with <code>CreateWindowExW()</code> and is therefore unicode-aware, since all buildt-in Windows classes are automatically registered in both unicode and ANSI version by the system.</p>
http://stackoverflow.com/questions/924787/best-method-for-embedding-source-code-in-openoffice-org-presentations0Best method for embedding source code in OpenOffice.org presentations?Anders Sandvig2009-05-29T07:20:34Z2009-05-29T07:27:25Z
<p>When creating (Impress) presentations containing source code snippets, what is the best way of including these snippets in the presentation? If possible, I would like them to be rendered with a fixed-width font and appropriate syntax coloring. </p>
<p>An obvious answer would be to embed a screen captures from a code editor, but this causes problems when showing the presentation on projectors with varying screen resolutions. Maybe it's possible to create a vector graphics image that will scale properly, or even render the code with some macros to provide proper formatting and coloring instead? Do any tools for processing source code in this way exist?</p>
http://stackoverflow.com/questions/916867/copying-functions-from-lgpl-libraries2Copying functions from LGPL libraries?Anders Sandvig2009-05-27T16:55:01Z2009-05-27T17:06:56Z
<p>Consider the following scenario:</p>
<ol>
<li>I am developing a closed-source commercial application.</li>
<li>I find a LGPL-licensed library providing some functionality I would like to use in my application.</li>
<li>Said functionality is limited to a few functions and/or classes.</li>
<li>For practical and/or technical reasons, it's not possible and/or feasible to link to the entire library, either statically or dynamically. Because of this, I copy the relevant functions/classes into my own code base.</li>
<li>To make the copied functions/classes compatible with my application and/or development environment, I make some minor modifications to them.</li>
<li>The modifications do not add any new functionality not already included in the library from which the original functions/classes where taken.</li>
</ol>
<p>Would this be a violation of the LGPL, and if so, what would I need to do to comply with it?</p>
<p>I realize that I ideally should be releasing the new "library" with my modifications under LGPL, but this doesn't make much sense when the modified code can't be used on its own, thus making it completely useless to anyone else.</p>
http://stackoverflow.com/questions/903491/display-text-from-txt-file-in-batch-file/903643#9036430Answer by Anders Sandvig for Display text from .txt file in batch fileAnders Sandvig2009-05-24T12:12:16Z2009-05-24T12:12:16Z<p>Here's a version that doesn't fail if <code>log.txt</code> is missing:</p>
<pre><code>
@echo off
if not exist log.txt goto firstlogin
echo Date/Time last login:
type log.txt
goto end
:firstlogin
echo No last login found.
:end
echo %date%, %time%. > log.txt
pause
</code></pre>
http://stackoverflow.com/questions/810872/best-library-for-audio-file-meta-data1Best library for audio file meta data?Anders Sandvig2009-05-01T10:10:22Z2009-05-03T19:11:37Z
<p>I am looking for a library to read meta data from compressed and uncompressed audio files (i.e. mp3, ogg, etc.). In the past I have used libvorbis and id3lib, but I'm wondering if there are better libraries around? Ideally I would like a library that provides a common API to reading meta data from all the various formats. I realize more advanced libraries probably have id3lib and libvorbis as dependencies, and I don't mind that, I just would like to avoid having to write my own wrapper.</p>
http://stackoverflow.com/questions/810872/best-library-for-audio-file-meta-data/810895#8108954Answer by Anders Sandvig for Best library for audio file meta data?Anders Sandvig2009-05-01T10:19:42Z2009-05-01T10:19:42Z<p><a href="http://developer.kde.org/~wheeler/taglib.html" rel="nofollow">TagLib</a> seems like a good candidate.</p>
http://stackoverflow.com/questions/701895/best-terminal-environment-for-cygwin-windows6Best terminal environment for Cygwin/Windows?Anders Sandvig2009-03-31T16:28:29Z2009-04-06T16:46:59Z
<p>Today I run Cygwin with <code>rxvt</code> using the following startup line:</p>
<p><code><pre>
rxvt -bg black -sl 8192 -fg white -sr -g 150x56 -fn "Fixedsys" -e /usr/bin/bash --login -i
</pre></code></p>
<p>This gives me a resizeable native Windows window which is much better than the standard "DOS box" the default <code>cygwin.bat</code> provides.</p>
<p>However, the current configuration does have a couple of issues:</p>
<ol>
<li>I am not able to enter non-ASCII characters into the terminal window (i.e. æ, ø, å and Æ, Ø, Å, which I use semi-frequently. In fact, the terminal will not even accept them when I paste them into the window. If I paste a string like "bølle" (Norwegian for "bulley"), all I get is "blle".</li>
<li>I am not able to render UTF-8 character, they only show as ?, even if they are supported by the font (i.e. when rendering the same characters in ISO-8859-1 they show just fine.).</li>
</ol>
<p>I am running English Windows Vista with locale and keyboard layout set to Norwegian (ISO-8859-1 character set?), but I've had the exact same issue on Windows 2000 and XP.</p>
<p>Anyone knows how to fix this (i.e. a better way to configure rxvt)?</p>
<p>Apart from the issues mentioned above, I'm very happy with <code>rxvt</code>, so if I find a way to resolve them I'd like to continue using it. However, if the issues are not (easily) solvable, are the any other good terminal solutions for Cygwin?</p>
<p><strong>Update</strong></p>
<p>The solution provided by Andy and Mattias (editing the <code>.inputrc</code> file) did solve the input problem, but output rendering is still an issue. Output is fine when I render in ISO-8859-1, but when using UTF-8 I only get ? for non-ASCII characters. This behavior is consistent between <code>rxvt</code>, <code>urxvt</code> (under Cygwin XFree X Server), <code>mintty</code> and PuttyCyg. </p>
<p>Is there a similar configuration file where output encoding can be set (i.e. the equivalent of setting output locale on a Linux system)?</p>
http://stackoverflow.com/questions/681855/how-do-you-read-technical-books/681899#6818990Answer by Anders Sandvig for How do you read technical books?Anders Sandvig2009-03-25T14:43:09Z2009-03-25T14:43:09Z<p>I usually read them cover to cover. I rarely skip chapters on the first read-through, but while reading I will highlight paragraphs and sections that interest me, so they are easier to find when I want to look them up for reference later.</p>
http://stackoverflow.com/questions/666584/how-do-i-generate-a-comma-separated-list-with-xslt-xpath3How do I generate a comma-separated list with XSLT/XPath?Anders Sandvig2009-03-20T15:16:53Z2009-03-22T19:38:07Z
<p>Given this XML data:</p>
<pre>
<root>
<item>apple</item>
<item>orange</item>
<item>banana</item>
</root>
</pre>
<p>I can use this XSLT markup:</p>
<pre>
...
<xsl:for-each select="root/item">
<xsl:value-of select="."/>,
</xsl:for-each>
...
</pre>
<p>to get this result:</p>
<blockquote>
apple, orange, banana,
</blockquote>
<p>but how do I produce a list where the last comma is not present? I assume it can be done doing something along the lines of:</p>
<pre>
...
<xsl:for-each select="root/item">
<xsl:value-of select="."/>
<xsl:if test="...">,</xsl:if>
</xsl:for-each>
...
</pre>
<p>but what should the test expression be? </p>
<p>I need some way to figure out how long the list is and where I currently am in the list, or, alternatively, if I am currently processing the last element in the list (which means I don't care how long it is or what the current position is).</p>
http://stackoverflow.com/questions/145703/review-of-documentation-and-technical-articles12Review of documentation and technical articles?Anders Sandvig2008-09-28T11:35:08Z2009-03-01T18:42:47Z
<p>After reading about <a href="http://stackoverflow.com/questions/87896/code-reviews-on-the-web-for-php-and-javascript-code">code reviews on the web</a> I started to wonder, are there any sites or communities out there that provide reviews of documentation and technical articles? </p>
<p>When working as the only author on a (hobby/open source) project or a (blog) article, I often wish I had someone to read over my work and provide some feedback. This is especially important for software documentation and articles such as tutorials and introductory texts, since I know the program/area very well I have no idea whether my explanations are understandable for someone who is not familiar with the software or topic, thus feedback from an "outsider" can be very valuable. </p>
<p>If someone were to review my material and provide me with some (useful) comments, I would be more than happy to help them out by reviewing some of their writings.</p>
<p>Note: For some types of content it would be more suitable with a per review or a review by a closed group, since the material may not make very much sense until it is presented in its final form, after the review process.</p>
<p>So, are there any communities of technical writers (and/or editors) out there?</p>
<p><strong>Update</strong></p>
<p>Maybe what I am looking for is an online forum for (technical) writers? I guess most reviews could be done one-to-one (i.e. via e-mail or instant messaging) and a special online tool would not be required, given that I was able to get in touch with people who were interested in such an exchange.</p>
http://stackoverflow.com/questions/149553/best-format-for-a-software-engineers-resume/150270#15027014Answer by Anders Sandvig for Best Format for a Software Engineer's ResumeAnders Sandvig2008-09-29T19:28:56Z2009-02-12T22:59:02Z<p>Here are some suggestions:</p>
<ul>
<li><p><strong>Keep it short and to the point.</strong> Few people bother to read anything longer than three pages. Put the most important information first, since when someone is scanning a large stack of resumes, they are only likely to read the first few paragraphs or the first page before they move on to the next in the pile. Because of this, you must make your first page a memorable one.</p></li>
<li><p><strong>Write a short (one paragraph) "snippet" about yourself at the top of the first page</strong> (after the basic personal information, contact details, etc.). If someone only reads the first two scentences on your resume, this is your (possibly only) chance to make a good first impression.</p></li>
<li><p><strong>Summarize your areas of expertise and key domains with a few keywords on the first page.</strong> Again, this is your first impression for lazy and busy readers. Put "trigger" keywords here that will make peple interested in reading the rest of your resume. For example:</p></li>
</ul>
<blockquote>
<strong>Key areas:</strong><br>
Programming, quality assurance, usability, networking (TCP/IP), enterprise systems, distributed applications, Scrum, security, databases (SQL), test-driven development, web 2.0, cloud computing.
</blockquote>
<p>Note: don't fall for the temptation to put a lot of buzzwords in this section. If they trigger anything for the interviewer, you probably don't want to work there anyway... ;)</p>
<ul>
<li><strong>Include keywords for your work experience.</strong> If you write a few sentences about each job position or project in your list of work experience, it is often a good idea to also include some keywords about the languages, concepts and technologies used. Again, this is to increase "scannability" of your resume for people who don't have time to read it all. Example:</li>
</ul>
<blockquote>
<pre>2000 - 2005: Mad scientist assistanct, Insanley Rich Man Inc., Secret Place.
Worked as an assistant for a mad scientist on a private research
project funded by an insanely rich man. Developed humanoid robots
to feed and play with his pet tigers while he was on vacation.
Keywords: Python, C++, Scrum, robotics, microcontrollers,
animal psychology.
</pre>
</blockquote>
<ul>
<li><p><strong>Include your hobbies and interests.</strong> They tell something about you as a person and it gives the interviewer a chance to "break the ice" and make you relax with some smalltalk. You might be surprised how often geeks (even geek bosses) share similar interests, also outside the domain of computers and natural sciences.</p></li>
<li><p>If you have experience in many programming languages or technologies, it might be useful to list them in a three-column table listing the language, years of experience and your subjective experience level. For example:</p></li>
</ul>
<blockquote>
<pre>
Language Level Known since
C++ Advanced 1995
Perl Basic 2005
PHP Intermediate 2000
Java Advanced 1998
</pre>
</blockquote>
<p><strong>Update:</strong> I have elaborated on some of these thoughts (and others) in <a href="http://blog.looplabel.net/2009/02/12/writing-a-good-technical-resume-cv/" rel="nofollow">a separate article on my blog</a>.</p>
http://stackoverflow.com/questions/535980/how-did-you-get-your-first-programming-job/536591#5365913Answer by Anders Sandvig for How did you get your first programming job?Anders Sandvig2009-02-11T12:35:24Z2009-02-11T12:35:24Z<p>With a background in real-time graphics programming and the demoscene as a hobbyist, the natural choice for me was the gaming industry. I did not have any strong opinions on where I wanted to work, I just knew I wanted to program games. </p>
<p>Seeing as there were only a few gaming companies in my area at the time, I applied to them all. I don't remember if either of them actually had any open positions announced, but I did not care. I just sent them e-mails with my resume and background, explaining that I wanted to work with programming games.</p>
<p>Of the four (I think, it's a long time ago...) requests I sent out, two of them got me interviews. The first interview did not result in a job, since they did not have any position suitable for me at the time. The second interview got me a job as a game programmer on an upcoming title. I did get recommended by a friend of mine who already worked there, but I like to believe I also got the job because of my skills and previous experience with graphics programming.</p>
<p>In later years I have also been in charge of hiring new developers (although not in the gaming industry), and I must say that showing a genuine interest in the field and/or company to which you are applying is a great advantage. As an employer I would always prefer the people who applied to our company because they had an interest in what we were doing rather than those you applied just because they wanted a job. </p>
<p>That being said, showing that you have an interest in programming in general is also a plus, even if you don't have any particular interest or experience in a given technical field or business area.</p>
http://stackoverflow.com/questions/515199/what-free-web-development-ides-do-people-use/515221#5152217Answer by Anders Sandvig for What (free) web development IDEs do people use?Anders Sandvig2009-02-05T09:58:18Z2009-02-05T09:58:18Z<p><a href="http://www.openkomodo.org/" rel="nofollow">Open Komodo</a> (or <a href="http://www.activestate.com/" rel="nofollow">Komodo Edit</a>) and Eclipse.</p>
http://stackoverflow.com/questions/510854/documents-with-different-filters-levels-of-information/510928#5109280Answer by Anders Sandvig for Documents with different "Filters" / Levels of informationAnders Sandvig2009-02-04T11:17:24Z2009-02-04T11:17:24Z<p>If your document format/workflow allows it, I would recommend using the same source document and filter out the content depending on target audience. This is possible with custom XML/XSLT setups and is also natively supported by DocBook. If your documents are XML or some form of (plain) text (i.e. not binary format), you may also consider writing a custom processing script to remove irrelevant sections.</p>
<p>If direct tool support is not an option (i.e. when using Word), I would recommend either of two approaches:</p>
<p>1) Keep everything in the same document, but be careful to split the information into sections. That way the testers can ignore any sections marked as "for developers", etc.</p>
<p>2) Keep the information in separate documents, but be careful not to have any overlapping information in any of them (i.e. make one design document, one test document, one architecture document, etc.). Whenever you need to reference information from two or more documents, put this information in a third document and reference it there. The key here is to avoid duplicating anything between all the different versions.</p>
http://stackoverflow.com/questions/506396/how-relevant-is-win32-programming-to-modern-professionals/506428#5064283Answer by Anders Sandvig for How relevant is Win32 programming to modern professionals? Anders Sandvig2009-02-03T09:03:03Z2009-02-03T09:03:03Z<p>I don't really think "learning Win32 API" is realistic for anyone. The APIs (yeah, there's more than one) are huge, and you will hardly ever need to know all of them in detail. I would recommend reading up on some basics (i.e. Window creation, window messaging, window procedures, maybe some GDI, etc.) and using MSDN to look up the rest whenever you need it.</p>
http://stackoverflow.com/questions/30571/how-do-i-tell-maven-to-use-the-latest-version-of-a-dependency/30618#30618Comment by Anders Sandvig on How do I tell Maven to use the latest version of a dependency?Anders Sandvig2009-09-19T11:46:36Z2009-09-19T11:46:36ZI believe the comments feature was not implemented when this answer was added...http://stackoverflow.com/questions/14373/cvs-to-svn-conversion-and-reorganizing-branches/14411#14411Comment by Anders Sandvig on CVS to SVN conversion and reorganizing branchesAnders Sandvig2009-08-25T09:08:54Z2009-08-25T09:08:54ZNot sure what you mean by "unmentioned branches", but svndumpfilter has both --include and --exclude parameters. If you tell cvs2svn to use the "/trunk", "/branches" and "/tags" as root folders, extracting the trunk (HEAD from CVS) and a specific branch can be done with 'svndumpfilter --include "/trunk" --include "/branches/<branch-name>" 'http://stackoverflow.com/questions/14373/cvs-to-svn-conversion-and-reorganizing-branches/14411#14411Comment by Anders Sandvig on CVS to SVN conversion and reorganizing branchesAnders Sandvig2009-08-24T14:24:01Z2009-08-24T14:24:01ZI guess you could dump it all and use then svndumpfilter to filter out whatever you don't want?http://stackoverflow.com/questions/1126448/how-do-i-generate-c-code-from-wadl-files/1126469#1126469Comment by Anders Sandvig on How do I generate C# code from WADL files?Anders Sandvig2009-07-16T12:10:04Z2009-07-16T12:10:04ZThe only feature supported by this tool seems to be the printing of a usage string. None of the parameters work and it doesn't produce any output, which seems to make sense if you look at the provided source code, it's just an empty shell with no implemented functionality.http://stackoverflow.com/questions/1126448/how-do-i-generate-c-code-from-wadl-files/1135242#1135242Comment by Anders Sandvig on How do I generate C# code from WADL files?Anders Sandvig2009-07-16T11:49:38Z2009-07-16T11:49:38ZI see. I don't think this is much of an issue as long as I have control over both the generation and the processing of the WADL, which I do in my case. If we run into any compatibility issues, I hope I can resolve them by manually editing the WADL file.http://stackoverflow.com/questions/1136829/do-you-end-your-exception-messages-with-a-period/1136857#1136857Comment by Anders Sandvig on Do you end your exception messages with a period?Anders Sandvig2009-07-16T11:25:45Z2009-07-16T11:25:45ZI think not showing exception messages to your end users would make perceived quality even higher.http://stackoverflow.com/questions/1126448/how-do-i-generate-c-code-from-wadl-files/1135242#1135242Comment by Anders Sandvig on How do I generate C# code from WADL files?Anders Sandvig2009-07-16T06:31:23Z2009-07-16T06:31:23ZInteresting opinion. Do you have other suggestions for generating code to use web services, preferably in multiple languages (Java, Python and C# would be a good start)?http://stackoverflow.com/questions/1017953/svn-automatic-code-formatting-on-check-in/1018035#1018035Comment by Anders Sandvig on SVN automatic code formatting on check in?Anders Sandvig2009-06-19T13:50:21Z2009-06-19T13:50:21ZThe conflict/stale working copy issue is no different than if anyone else committed a new version of a file to the repository. This will be resolved by getting the latest version from the server, and if the user forgets, the svn client will detect this when trying to commit the file again.http://stackoverflow.com/questions/869609/keyboard-type-qwerty-or-dvorak-detection/869649#869649Comment by Anders Sandvig on Keyboard Type (Qwerty or Dvorak) detectionAnders Sandvig2009-05-15T16:47:50Z2009-05-15T16:47:50Z@aric The only solution I have found is to remove all other keyboard layouts/input languages from the system...http://stackoverflow.com/questions/726912/fastest-way-to-learn-python/726957#726957Comment by Anders Sandvig on Fastest way to learn Python?Anders Sandvig2009-04-07T18:33:46Z2009-04-07T18:33:46ZI don't think being honest about one's experience and learning as much Python as one can in 24 hours are mutually exclusive. I would do both.http://stackoverflow.com/questions/701895/best-terminal-environment-for-cygwin-windows/705026#705026Comment by Anders Sandvig on Best terminal environment for Cygwin/Windows?Anders Sandvig2009-04-06T21:27:12Z2009-04-06T21:27:12ZActually, I'm thinking about programs I know output to stdout in utf-8 (i.e. the ones I write myself). Maybe it's because Cygwin doesn't really support utf-8, yet?http://stackoverflow.com/questions/701895/best-terminal-environment-for-cygwin-windows/701961#701961Comment by Anders Sandvig on Best terminal environment for Cygwin/Windows?Anders Sandvig2009-04-01T12:54:54Z2009-04-01T12:54:54ZThere is a rxvt-unicode package in the Cygwin repository, but it requires an X server, which I would prefer to avoid.http://stackoverflow.com/questions/701895/best-terminal-environment-for-cygwin-windows/705026#705026Comment by Anders Sandvig on Best terminal environment for Cygwin/Windows?Anders Sandvig2009-04-01T12:45:25Z2009-04-01T12:45:25ZThanks, that solved the input problem, but output is still wrong (? instead of non-ASCII characters).http://stackoverflow.com/questions/701895/best-terminal-environment-for-cygwin-windows/701984#701984Comment by Anders Sandvig on Best terminal environment for Cygwin/Windows?Anders Sandvig2009-04-01T10:56:04Z2009-04-01T10:56:04ZIn general, terminal emulation (via ssh) works better in a "real" terminal instead of just using bash.exe (If I remember correctly, the bash.exe method also has problems with certain shortcut keys and character sequences when working with remote sessions).http://stackoverflow.com/questions/701895/best-terminal-environment-for-cygwin-windows/701984#701984Comment by Anders Sandvig on Best terminal environment for Cygwin/Windows?Anders Sandvig2009-04-01T10:55:10Z2009-04-01T10:55:10Zrxvt (and, apparently, mintty) give me colors in the terminal when logging into a remote ssh session (via openssh), running bash.exe as a "DOS program" does not. Also I like the ability to copy past simply marking it and pasting text using the mouse wheel or middle mouse button.