User Swati - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T21:58:06Zhttp://stackoverflow.com/feeds/user/12682http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/89154/benefits-of-using-short-circuit-evaluation3Benefits of using short-circuit evaluationSwati2008-09-18T01:19:51Z2009-11-19T12:16:11Z
<pre><code>boolean a = false, b = true;
if ( a && b ) { ... };
</code></pre>
<p>In most languages, <code>b</code> will not get evaluated because <code>a</code> is false so <code>a && b</code> cannot be true. My question is, wouldn't short circuiting be slower in terms of architecture? In a pipeline, do you just stall while waiting to get the result of a to determine if b should be evaluated or not? Would it be better to do nested ifs instead? Does that even help?</p>
<p>Also, does anyone know what short-circuit evaluation is typically called? This question arose after I found out that my programming friend had never heard of short-circuit evaluation and stated that it is not common, nor found in many languages, and is inefficient in pipeline. I am not certain about the last one, so asking you folks!</p>
<p>Okay, I think a different example to perhaps explain where my friend might be coming from. He believes that since evaluating a statement like the following in parallel:</p>
<pre><code>(a) if ( ( a != null ) && ( a.equals(b) ) ) { ... }
</code></pre>
<p>will crash the system, an architecture that doesn't have short-circuiting (and thereby not allowing statements like the above) would be faster in processing statements like these:</p>
<pre><code>(b) if ( ( a == 4 ) && ( b == 5 ) )
</code></pre>
<p>since if it couldn't do (a) in parallel, it can't do (b) in parallel. In this case, a language that allows short-circuiting is slower than one that does not.</p>
<p>I don't know if that's true or not.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1719075/a-view-over-a-xml-data-type-column/1719102#17191022Answer by Swati for A View Over a XML Data Type ColumnSwati2009-11-12T00:39:39Z2009-11-12T00:39:39Z<p><a href="http://msdn.microsoft.com/en-us/library/bb500166.aspx" rel="nofollow" title="Creating Views">http://msdn.microsoft.com/en-us/library/bb500166.aspx</a></p>
<p>Use <code>FileContent.value('(/FuelPathwayCode/@year)[1]', 'int(4)')</code> to retrieve the particular field you are looking for.</p>
<p>This is supported in SQL Server 2008.</p>
http://stackoverflow.com/questions/1684774/toolkits-or-applications-that-build-ui-from-xsd/1719009#17190091Answer by Swati for Toolkits or Applications That Build UI From XsdSwati2009-11-12T00:17:34Z2009-11-12T00:17:34Z<p>Do you mean something like <a href="http://stackoverflow.com/questions/167453/xslt-abstractions/167545#167545">this</a>? This is an approach that I used in one of my projects to convert my xml's via an xsd to xhtml. It was quite flexible for my project.</p>
http://stackoverflow.com/questions/544364/junior-engineer-interviewing-senior-engineer-need-questions/544374#54437415Answer by Swati for Junior Engineer Interviewing Senior Engineer - Need QuestionsSwati2009-02-13T01:32:29Z2009-02-13T01:32:29Z<p>It is <em>not</em> pointless to ask him technical questions. I have interviewed people twice my age and am dumbfounded by their extensive experience and lack of knowledge. This is not to say that experience doesn't matter, rather experience doesn't necessarily show technical knowledge. </p>
<p>Follow the same procedure as you would in interviewing another programmer for a position. You have to see if the programmer has the skill set you're looking for and fits into the personality of the team.</p>
http://stackoverflow.com/questions/539942/updating-multiple-rows-with-a-value-calculated-from-another-column1Updating multiple rows with a value calculated from another columnSwati2009-02-12T03:49:29Z2009-02-12T04:28:28Z
<p>I have a table with a row that looks like this:</p>
<p>(<strong>20091231</strong>48498429, '...', '...')</p>
<p>The first part, id, is a timestamp followed by a random number. (needed to work with other parts in the system) The data already exists in the table. </p>
<p>I want to create a column, timestamp, and extract just the date (20091231) and update all the rows with the timestamp.</p>
<ol>
<li>How can I do this for all the rows with SQL? (i.e. update them all with some sort of a function?)</li>
<li>What kind of default value should I assign the column to make sure that future inserts correctly extract the date?</li>
</ol>
<p><strong>UPDATE</strong> - Please read the comments by bobince in the first answered question by Jonathan Sampson on how we got to the answer. This is the final query that worked:</p>
<pre><code>UPDATE table SET rdate=substring(convert(rid,char(20)),1,8);
</code></pre>
<p>The problem was that I was using <code>substring</code> as <code>substring( str, 0, 8 )</code> whereas it should be <code>substring( str, 1, 8 )</code>. I guess we're all used to 0 as the beginning position! More info here on <a href="http://dev.mysql.com/doc/refman/5.1/en/string-functions.html#function_substring" rel="nofollow" title="substring @ mysql">substring</a></p>
<p>Related to: <a href="http://stackoverflow.com/questions/3432/multiple-updates-in-mysql" rel="nofollow" title="multiple updates in my mysql">multiple updates in mysql</a></p>
http://stackoverflow.com/questions/192345/pylons-with-elixir2Pylons with ElixirSwati2008-10-10T17:24:23Z2008-10-13T17:37:32Z
<p>I would like to use Pylons with Elixir, however, I am not sure what is the best way to get about doing this. There are several blog posts (<a href="http://cleverdevil.org/computing/68/" rel="nofollow" title="cleverdevil's technique">cleverdevil</a>, <a href="http://beachcoder.wordpress.com/2007/05/11/using-elixir-with-pylons/" rel="nofollow" title="beachcoder's technique">beachcoder</a>, <a href="http://hoscilo.pypla.net/2007/03/19/sqlalchemy-elixir-and-pylons-round-one/" rel="nofollow" title="adam hoscilo's technique">adam hoscilo</a>) and even an <a href="http://code.google.com/p/tesla-pylons-elixir/" rel="nofollow" title="tesla">entire new framework</a> about how to go about doing this; however, I am not certain about the differences between them. Which one is the best to use? Am I going to run into issues using one over the other? </p>
<p>I would prefer not to have to use SQLAlchemy directly because of its verbosity and repetitiveness. </p>
http://stackoverflow.com/questions/193172/putting-newbies-on-reports-beneficial-harmful/193177#1931778Answer by Swati for Putting newbies on Reports. Beneficial/Harmful?Swati2008-10-10T22:01:38Z2008-10-10T22:01:38Z<p>Perhaps they should be looking for a job at different companies? Maybe they shouldn't settle? </p>
<p>I was once a fresh-grad, and I have <em>never</em> been asked to work on a report. I had a programming check-in within the first 5 days of my job. </p>
<p>Maybe I am confused about the question. We are talking about folks who apply for programming positions and are sent to doing "reports" related job?!</p>
http://stackoverflow.com/questions/167453/xslt-abstractions/167545#16754510Answer by Swati for XSLT AbstractionsSwati2008-10-03T15:53:06Z2008-10-04T18:46:10Z<p>For my own project, this is how I divided up my pages. There was a template.xsl file which was imported
by each of my XSLs. Most pages just had template.xsl, but some pages such as cart, etc. needed their own
because of the different kind of data they were parsing. </p>
<pre><code><page title="Home">
<navigation>
<!-- something here -->
</navigation>
<main>
<!-- something here -->
</main>
</page>
</code></pre>
<p>This is a snippet from my template.xsl. I threw in all the common stuff in here, and then gave the opportunity
for my pages to add their own information through <code>call-template</code>.</p>
<pre><code><xsl:template match="/page" name="page">
<html>
<head>
<title><xsl:value-of select="(@title)" /></title>
<xsl:call-template name="css" />
<xsl:call-template name="script" />
</head>
<body>
<xsl:call-template name="container" />
</body>
</html>
</xsl:template>
</code></pre>
<p>An example of how my css tag would respond. Note that it calls <code>css-extended.</code> css only
had the the common css' that would apply across all pages. Some pages needed more. Those
could override css-extended. Note that is needed because <code>call-template</code> will fail if a
page calls a template but doesn't define it anywhere.</p>
<pre><code> <xsl:template name="css">
<link rel="stylesheet" type="text/css" href="{$cssPath}reset.css" />
<link rel="stylesheet" type="text/css" href="{$cssPath}style.css" />
<link rel="stylesheet" type="text/css" href="{$cssPath}layout.css" />
<xsl:call-template name="css-extended" />
</xsl:template>
<!-- This is meant to be blank. It gets overriden by implementing stylesheets -->
<xsl:template name="css-extended" />
</code></pre>
<p>My container would work in a similar manner-- common stuff was defined and then each page
could just provide an implementation. A default implementation was in the XSL. (in <code>content</code>)</p>
<pre><code> <xsl:template name="container">
<div id="container">
<xsl:call-template name="header" />
<xsl:call-template name="content" />
<xsl:call-template name="footer" />
</div>
</xsl:template>
<xsl:template name="content">
<div id="content">
<div id="content-inner">
<xsl:call-template name="sideBar" />
<xsl:call-template name="main" />
</div>
</div>
</xsl:template>
<xsl:template name="main">
<div id="main">
<xsl:apply-templates select="main" />
<xsl:call-template name="main-extended" />
</div>
</xsl:template>
<!-- This is meant to be blank. It gets overriden by implementing stylesheets -->
<xsl:template name="main-extended" />
<xsl:template name="footer">
<div id="footer">
<div id="footer-inner">
<!-- Footer content here -->
</div>
</div>
</xsl:template>
</code></pre>
<p>It worked quite beautifully for me. If there are any questions I can answer for you, let me know.</p>
http://stackoverflow.com/questions/168594/what-is-the-command-line-syntax-to-delete-files-in-perforce/168617#1686172Answer by Swati for What is the command line syntax to delete files in Perforce?Swati2008-10-03T19:54:15Z2008-10-03T19:54:15Z<p><a href="http://www.perforce.com/perforce/doc.062/manuals/boilerplates/quickstart.html" rel="nofollow">http://www.perforce.com/perforce/doc.062/manuals/boilerplates/quickstart.html</a></p>
<p><strong>Deleting files</strong></p>
<p>To delete files from both the Perforce server and your workspace, issue the p4 delete command. For example:</p>
<pre><code>p4 delete demo.txt readme.txt
</code></pre>
<p>The specified files are removed from your workspace and marked for deletion from the server. If you decide you don't want to delete the files after all, issue the p4 revert command. When you revert files opened for delete, Perforce restores them to your workspace.</p>
http://stackoverflow.com/questions/167835/should-you-worry-about-fake-accounts-logins-on-a-website/167845#1678455Answer by Swati for Should you worry about fake accounts/logins on a website?Swati2008-10-03T16:54:02Z2008-10-03T16:54:02Z<p>Not make registration mandatory to read something? i.e. Ask people to register when you are providing some functionality for them that 'saves' some settings, data, etc. I would imagine site like stackoverflow gets less fake registrations (reading questions doesn't require an account) than say New York Times, where you need to have an account to read articles.</p>
<p>If that is not upto your control, you may consider removing dormant accounts. i.e. Removing accounts after a certain amount of inactivity. </p>
http://stackoverflow.com/questions/163407/enum-inside-a-jsp/163429#1634292Answer by Swati for Enum inside a JSPSwati2008-10-02T16:57:36Z2008-10-02T16:57:36Z<p>Same question:
<a href="http://stackoverflow.com/questions/123598/access-enum-value-using-el-with-jstl">http://stackoverflow.com/questions/123598/access-enum-value-using-el-with-jstl</a></p>
http://stackoverflow.com/questions/162484/asking-to-see-employers-code-database-in-an-interview/162501#1625018Answer by Swati for Asking to see employer's code/database in an interviewSwati2008-10-02T14:14:23Z2008-10-02T14:14:23Z<p>None of the candidates we have interviewed have ever asked that; however, many of them have been co-ops/interns in the company so they are familiar with our code...</p>
<p>Having said that, it is highly unlikely we will show our code to ANY candidate, regardless of an NDA. I would be happy to answer questions about what technologies we use, what system we use for revisions, practices around, etc. Actual code though? No.</p>
<p>Also in a large enough system (as ours is) someone can just show you the "best" code there is...and you would be where you started :) As for a database design...both companies I have worked at have had enormously large databases (university, corporate company)...so that wouldn't work either. </p>
http://stackoverflow.com/questions/161937/howto-deactivate-caching-inside-a-jsp-page/162096#1620960Answer by Swati for Howto deactivate caching inside a jsp pageSwati2008-10-02T12:51:36Z2008-10-02T12:51:36Z<pre><code><?xml version="1.0"?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
<jsp:scriptlet><![CDATA[
response.setHeader("Cache-Control", "no-cache");
]]></jsp:scriptlet>
</jsp:root>
</code></pre>
<p>You must put the response header inside <code><jsp:root /></code>. Also, I would instead recommend it sending this from your servlet instead of JSP page. </p>
http://stackoverflow.com/questions/160859/what-is-lambda-binding-in-python/160898#1608985Answer by Swati for What is "lambda binding" in Python?Swati2008-10-02T04:38:59Z2008-10-02T04:38:59Z<p>First, a general definition: <a href="http://www.mathwright.com/help/MathkitLambda_Binding_of_Arguments_in_P.htm" rel="nofollow">Lambda Binding of Arguments in Programs and Functions</a></p>
<blockquote>
<p>When a program or function statement
is executed, the current values of
formal parameters are saved (on the
stack) and within the scope of the
statement, they are bound to the
values of the actual arguments made in
the call. When the statement is
exited, the original values of those
formal arguments are restored. This
protocol is fully recursive. If within
the body of a statement, something is
done that causes the formal parameters
to be bound again, to new values, the
lambda-binding scheme guarantees that
this will all happen in an orderly
manner.</p>
</blockquote>
<p>Now, there is an excellent <a href="http://markmail.org/message/fypalne4rp5curta" rel="nofollow" title="Theoretical question about Lambda">python example in a discussion here</a>:</p>
<p>"...there is only one binding for <code>x</code>: doing <code>x = 7</code> just changes the value in the pre-existing binding. That's why</p>
<pre><code>def foo(x):
a = lambda: x
x = 7
b = lambda: x
return a,b
</code></pre>
<p>returns two functions that both return 7; if there was a new binding after the <code>x = 7</code>, the functions would return different values [assuming you don't call foo(7), of course. Also assuming nested_scopes]...."</p>
http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160150#1601501Answer by Swati for Divide by zero error, how do I fix this?Swati2008-10-01T22:57:53Z2008-10-01T22:57:53Z<ul>
<li>You can throw an exception.</li>
<li>You can do <code>int percent = ( max > 0 ) ? (100 * position) / max : 0;</code></li>
<li>You can choose to do nothing instead of assigning a value to percent.</li>
<li>many, many other things...</li>
</ul>
<p>Depends on what you want.</p>
http://stackoverflow.com/questions/160097/whats-the-difference-between-and/160117#16011713Answer by Swati for What's the difference between <%# %> and <%= %>?Swati2008-10-01T22:48:09Z2008-10-01T22:52:52Z<p><code><%# %></code> is invoked during the DataBinding phase.</p>
<p><code><%= %></code> is used to get values from code to the UI layer. Meant for backward compatibility with ASP applications. Shouldn't use in .NET.</p>
<p><code><%@ %></code> represents <a href="http://msdn.microsoft.com/en-us/library/t8syafc7.aspx" rel="nofollow" title="directives">directives</a> and allow behaviors to be set without resorting to code. </p>
<blockquote>
<p>Directives specify settings that are
used by the page and user-control
compilers when the compilers process
ASP.NET Web Forms pages (.aspx files)
and user control (.ascx) files.</p>
<p>ASP.NET treats any directive block
(<%@ %>) that does not contain an
explicit directive name as an @ Page
directive (for a page) or as an @
Control directive (for a user
control).</p>
</blockquote>
<p>@<a href="#160117" rel="nofollow">Esteban </a>- Added a msdn link to directives. If you need...more explanation, please let me know.</p>
http://stackoverflow.com/questions/160051/many-to-many-with-primary/160073#1600730Answer by Swati for Many-to-Many with "Primary"Swati2008-10-01T22:36:17Z2008-10-01T22:36:17Z<p>I would have made another table PRIMARY_USERS with unique on <code>computer_id</code> and making both <code>computer_id</code> and <code>user_id</code> foreign keys of USERS.</p>
http://stackoverflow.com/questions/159296/how-can-i-prevent-a-base-constructor-from-being-called-by-an-inheritor-in-c/159321#1593212Answer by Swati for How can I prevent a base constructor from being called by an inheritor in C#?Swati2008-10-01T19:34:56Z2008-10-01T19:34:56Z<p>Can you make your base constructors <code>private</code>?</p>
http://stackoverflow.com/questions/158374/non-programming-jobs-that-require-programming-knowledge/158410#1584107Answer by Swati for Non-programming jobs that require programming knowledgeSwati2008-10-01T16:12:23Z2008-10-01T16:12:23Z<ul>
<li>Technical Writer </li>
<li>Usability
Specialist/Analyst (making
prototypes now and then)</li>
</ul>
http://stackoverflow.com/questions/156176/how-do-you-measure-if-an-interface-change-improved-or-reduced-usability/156195#1561951Answer by Swati for How do you measure if an interface change improved or reduced usability?Swati2008-10-01T03:56:48Z2008-10-01T03:56:48Z<p>Similar methods that you used to identify the usability problems to begin with-- usability testing. Typically you identify your use-cases and then have a lab study evaluating how users go about accomplishing certain goals. Lab testing is typically good with 8-10 people.</p>
<p>The more information methodology we have adopted to understand our users is to have anonymous data collection (you may need user permission, make your privacy policys clear, etc.) This is simply evaluating what buttons/navigation menus users click on, how users delete something (i.e. changing quantity - are more users entering 0 and updating quantity or hitting X)? This is a bit more complex to setup; you have to develop an infrastructure to hold this data (which is actually just counters, i.e. "Times clicked x: 138838383, Times entered 0: 390393") and allow data points to be created as needed to plug into the design.</p>
http://stackoverflow.com/questions/148728/scrollable-jdesktoppane/148743#1487434Answer by Swati for Scrollable JDesktopPane?Swati2008-09-29T13:56:10Z2008-09-29T13:56:10Z<p>I've used <a href="http://www.javaworld.com/javaworld/jw-11-2001/jw-1130-jscroll.html" rel="nofollow" title="Scrollable JDesktopPane">JavaWorld's solution</a> by creating my own <code>JScrollableDesktopPane.</code> </p>
http://stackoverflow.com/questions/145104/what-coding-languages-should-a-web-developer-know/145116#1451160Answer by Swati for What coding languages should a web developer know?Swati2008-09-28T03:18:54Z2008-09-28T03:18:54Z<p>There are no languages that you "should" know, but give a try to Python and/or Ruby.</p>
<p>I'd imagine that it is more important for you to keep up with the frameworks and the various libraries within your chosen language.</p>
<p>Also, did you account for JavaScript? Pretty hard to get anywhere without it. Should also try different databases.</p>
http://stackoverflow.com/questions/141345/xsl-scope-help/141403#1414032Answer by Swati for xsl scope helpSwati2008-09-26T19:23:33Z2008-09-26T20:20:33Z<p>Remembering that xsl variables are immutable...</p>
<pre><code><!-- You may want to use absolute path -->
<xsl:variable name="varOne" select="one/@count" />
<xsl:template match="one">
<!-- // do something -->
</xsl:template>
<xsl:template match="two">
<xsl:if test="$varOne = 'Y'">
<xsl:value-of select="varTwo"/>
</xsl:if>
</xsl:template>
</code></pre>
http://stackoverflow.com/questions/140355/what-are-the-advantages-and-disadvantages-of-using-xml-schemas/140381#1403811Answer by Swati for What are the advantages and disadvantages of using XML schemas?Swati2008-09-26T15:54:58Z2008-09-26T15:54:58Z<p>Keeping a repository of XMLs without an XSD is akin (in my opinion) to having a database where all the types are declared as VARCHAR(n). You don't care what kind of input you get, you just want input.</p>
<p>XSDs assure that your XMLs have the type of input that you expect. They give structure to your model, the very thing you're looking for. </p>
http://stackoverflow.com/questions/140182/regular-expressions-but-for-writing-in-the-match/140209#1402097Answer by Swati for Regular expressions but for writing in the matchSwati2008-09-26T15:26:22Z2008-09-26T15:26:22Z<pre><code>sub (replacement, string[, count = 0])
</code></pre>
<p><a href="http://www.amk.ca/python/howto/regex/regex.html#SECTION000620000000000000000" rel="nofollow" title="sub">sub</a> returns the string obtained by replacing the leftmost non-overlapping occurrences of the RE in string by the replacement replacement. If the pattern isn't found, string is returned unchanged.</p>
<pre><code> p = re.compile( '(blue|white|red)')
>>> p.sub( 'colour', 'blue socks and red shoes')
'colour socks and colour shoes'
>>> p.sub( 'colour', 'blue socks and red shoes', count=1)
'colour socks and red shoes'
</code></pre>
http://stackoverflow.com/questions/140137/creating-a-custom-error-page-in-umbraco-cms/140169#1401694Answer by Swati for Creating a custom error page in Umbraco CMSSwati2008-09-26T15:19:12Z2008-09-26T15:19:12Z<p>In <code>/config/umbracoSettings.xm</code>l modify <code><error404>1</error404></code> 1 with the id of the page you want to show.</p>
<pre><code><errors>
<error404>1</error404>
</errors>
</code></pre>
<p>Other ways to do it can be found at <a href="http://www.umbraco.org/documentation/books/not-found-handlers?altTemplate=print" rel="nofollow" title="Umbraco not found handlers">Not found handlers</a></p>
http://stackoverflow.com/questions/136650/long-compile-times-and-lost-productivity/136673#1366731Answer by Swati for Long compile times and lost productivitySwati2008-09-25T22:45:06Z2008-09-25T22:45:06Z<p>Our compile time is roughly 10-15 minutes as well; I normally browse the web/visit blogs/read news/visit S.O. about then. If I know that the compile time is going to be >1 hour, I normally do that around lunch time or end of day. </p>
<p>It's not so bad, and didn't take me long to get used to. It's a nice way to take a break.</p>
http://stackoverflow.com/questions/128705/do-you-ever-code-just-for-fun/128899#12889928Answer by Swati for Do you ever code just for fun?Swati2008-09-24T18:24:44Z2008-09-24T18:32:38Z<p>Wow, I am surprised to learn that I am in the minority. </p>
<p>After a 1/4 of a day staring at the computer monitor, no, I don't go home and code. In fact, I even prefer to not use the computer at all. Don't get me wrong, I love my work (developer) very much and love learning new things. </p>
<p>Having said that, if there is something I want to automate or just a simple script that I need-- yes, I'll code that. But it's entirely for practical purposes, not for fun. To me fun is not in actual coding, rather problem solving. If you ask do I just solve problems for fun? Yes, I do that. But code? I would try something besides coding to solve a problem.</p>
<p>Edit: Even projects (multiple web ones) that I work on in my spare time are a means to an end. They don't exist because they are coding projects, but because they make something easier. i.e. A discussion forum for a group of folks on a website that doesn't have forums. </p>
http://stackoverflow.com/questions/127916/is-programming-style-important-how-important/127939#1279393Answer by Swati for Is Programming Style important? How Important?Swati2008-09-24T15:38:52Z2008-09-24T15:38:52Z<p>In an interview, it is perfectly fine to not indent or comment your code. In fact, I would be surprised if you had time to do that-- we normally don't give that much time.</p>
<p>As a general practice, however, I fully expect you to indent your code and add comments where necessary. In fact, our build machine will fail on minute things like including tabs instead of spaces in your code. </p>
<p>Code readability is important. Just like no one likes reading one big paragraph (instead of small, structured paragraphs), no one likes reading one big lump of code with no formatting. </p>
http://stackoverflow.com/questions/125359/any-clever-ways-of-handling-the-context-in-a-web-app/125420#1254200Answer by Swati for Any clever ways of handling the context in a web app?Swati2008-09-24T04:29:30Z2008-09-24T04:29:30Z<p>I by <em>no</em> means claim that the following is an elegant issue. In fact, in hindsight, I wouldn't recommend this issue given the (most likely) performance hit. </p>
<p>Our web app's JSPs were strictly XML raw data. This raw data was then sent into an XSL (server-side) which applied the right CSS tags, and spit out the XHTML. </p>
<p>We had a single template.xsl which would be inherited by the multiple XSL files that we had for different components of the website. Our paths were all defined in an XSL file called paths.xml:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<paths>
<path name="account" parent="home">Account/</path>
<path name="css">css/</path>
<path name="home">servlet/</path>
<path name="icons" parent="images">icons/</path>
<path name="images">images/</path>
<path name="js">js/</path>
</paths>
</code></pre>
<p>An internal link would be in the XML as follows:</p>
<pre><code><ilink name="link to icons" type="icons">link to icons</ilink>
</code></pre>
<p>This would get processed by our XSL:</p>
<pre><code><xsl:template match="ilink">
<xsl:variable name="temp">
<xsl:value-of select="$rootpath" />
<xsl:call-template name="paths">
<xsl:with-param name="path-name"><xsl:value-of select="@type" /></xsl:with-param>
</xsl:call-template>
<xsl:value-of select="@file" />
</xsl:variable>
<a href="{$temp}" title="{@name}" ><xsl:value-of select="." /></a>
</xsl:template>
</code></pre>
<p><code>$rootPath</code> was passed onto each file with <code>${applicationScope.contextPath}</code> The idea behind us using XML instead of just hard-coding it in a JSP/Java file was we didn't want to have to recompile. </p>
<p>Again, the solution isn't a good one at all...but we did use it once!</p>
<p><strong>Edit</strong>: Actually, the complexity in our issue arose because we weren't able to use JSPs for our entire view. Why wouldn't someone just use <code>${applicationScope.contextPath}</code> to retrieve the context path? It worked fine for us then.</p>
http://stackoverflow.com/questions/1718923/is-there-a-problem-initializing-a-jaxbcontext-with-a-package-in-a-libraryComment by Swati on Is there a problem initializing a JAXBContext with a package in a library?Swati2009-11-12T00:10:52Z2009-11-12T00:10:52ZMaybe the files are not in your build path? Are you using an IDE - which one?http://stackoverflow.com/questions/539942/updating-multiple-rows-with-a-value-calculated-from-another-column/539951#539951Comment by Swati on Updating multiple rows with a value calculated from another columnSwati2009-02-12T04:13:25Z2009-02-12T04:13:25ZA new error now with CONVERT(colDate, CHAR(8)): Truncated incorrect char(8) value:'200910101...'http://stackoverflow.com/questions/539942/updating-multiple-rows-with-a-value-calculated-from-another-column/539951#539951Comment by Swati on Updating multiple rows with a value calculated from another columnSwati2009-02-12T04:06:16Z2009-02-12T04:06:16Z@Ben: the length of the random number varies...so that doesn't work.
http://stackoverflow.com/questions/539942/updating-multiple-rows-with-a-value-calculated-from-another-column/539956#539956Comment by Swati on Updating multiple rows with a value calculated from another columnSwati2009-02-12T04:03:47Z2009-02-12T04:03:47ZNot working either. I am getting complaints about using AS in the FROM clause...which is peculiar. Maybe they aren't allowed in UPDATE statements?http://stackoverflow.com/questions/539942/updating-multiple-rows-with-a-value-calculated-from-another-column/539951#539951Comment by Swati on Updating multiple rows with a value calculated from another columnSwati2009-02-12T04:02:58Z2009-02-12T04:02:58ZThis is not working. I keep getting "query returned no resultset". Could it be because the 'colDate' (i.e. 2009123148498429) is stored as a BIGINT and not a string?http://stackoverflow.com/questions/539942/updating-multiple-rows-with-a-value-calculated-from-another-column/539951#539951Comment by Swati on Updating multiple rows with a value calculated from another columnSwati2009-02-12T03:54:44Z2009-02-12T03:54:44Z...I also want to be able to insert it right back into the table. In all the rows.http://stackoverflow.com/questions/169041/how-should-a-so-answer-be-credited-for-use-in-an-open-source-project/169060#169060Comment by Swati on How should a SO answer be credited for use in an open-source project?Swati2008-10-03T22:14:14Z2008-10-03T22:14:14Z<a href="http://stackoverflow.com/questions/169041#169060" rel="nofollow">stackoverflow.com/questions/169041#169060</a>http://stackoverflow.com/questions/168303/how-to-enforce-locking-workstation-when-leaving-is-this-important/168341#168341Comment by Swati on How to enforce locking workstation when leaving? Is this important?Swati2008-10-03T19:04:52Z2008-10-03T19:04:52ZOr sending an email to the entire team, "Pizza on me today!"http://stackoverflow.com/questions/167791/control-multiple-pcs-with-single-mouse-and-keyboard/167793#167793Comment by Swati on Control multiple PCs with single Mouse and KeyboardSwati2008-10-03T16:43:43Z2008-10-03T16:43:43ZNice. Much better than the KVM solution I adopted.http://stackoverflow.com/questions/91526/best-programming-jokes/91538#91538Comment by Swati on Best Programming JokesSwati2008-10-02T17:14:09Z2008-10-02T17:14:09Zyeah seriously folks who upvoted this....did <i>no</i> one click on the link!? http://stackoverflow.com/questions/163400/database-design-issues-with-relationshipsComment by Swati on Database Design Issues with relationshipsSwati2008-10-02T17:12:21Z2008-10-02T17:12:21ZA link to the image would probably suffice.http://stackoverflow.com/questions/162484/asking-to-see-employers-code-database-in-an-interview/162501#162501Comment by Swati on Asking to see employer's code/database in an interviewSwati2008-10-02T14:55:31Z2008-10-02T14:55:31ZOur group happens be a core group in the company; seeing our code can reveal some unreleased stuff...which would be a legal no-no. Even a quick glance at the file names can give you an idea of what we have coming.http://stackoverflow.com/questions/162042/are-there-any-viable-alternatives-to-the-gof-singleton-pattern/162053#162053Comment by Swati on Are there any viable alternatives to the GOF Singleton Pattern?Swati2008-10-02T12:41:28Z2008-10-02T12:41:28ZI was going to say the same thing, but it doesn't quite answer his question :)http://stackoverflow.com/questions/149463/problem-with-vector-inside-a-classComment by Swati on Problem with vector inside a classSwati2008-09-29T16:28:31Z2008-09-29T16:28:31ZPlease format your code as code (<code>code</code>) or click on the 101010 after selecting code) for readability. Also, what language?http://stackoverflow.com/questions/145110/c-performance-vs-java-c/145122#145122Comment by Swati on C++ performance vs. Java/C#Swati2008-09-28T03:23:51Z2008-09-28T03:23:51Z<a href="http://www-128.ibm.com/developerworks/java/library/j-jtp09275.html?ca=dgr-jw22JavaUrbanLegends" rel="nofollow">www-128.ibm.com/developerworks/java/…</a> is a good article