Meaningful XML
Another day, another code review. Today I came across a function that generates non-meaningful XML. This is something that at first glance feels like it has a nice structure to it, but there’s a better way. First, let take a…
Another day, another code review. Today I came across a function that generates non-meaningful XML. This is something that at first glance feels like it has a nice structure to it, but there’s a better way. First, let take a…
Today I was looking into some code that was running slower than it should, and I happened across this little tidbit: let $normal :=  try {   xs:int($value)  }  catch($e) {   $value  }…