User Swati - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T21:58:06Z http://stackoverflow.com/feeds/user/12682 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/89154/benefits-of-using-short-circuit-evaluation 3 Benefits of using short-circuit evaluation Swati 2008-09-18T01:19:51Z 2009-11-19T12:16:11Z <pre><code>boolean a = false, b = true; if ( a &amp;&amp; b ) { ... }; </code></pre> <p>In most languages, <code>b</code> will not get evaluated because <code>a</code> is false so <code>a &amp;&amp; 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 ) &amp;&amp; ( 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 ) &amp;&amp; ( 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#1719102 2 Answer by Swati for A View Over a XML Data Type Column Swati 2009-11-12T00:39:39Z 2009-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#1719009 1 Answer by Swati for Toolkits or Applications That Build UI From Xsd Swati 2009-11-12T00:17:34Z 2009-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#544374 15 Answer by Swati for Junior Engineer Interviewing Senior Engineer - Need Questions Swati 2009-02-13T01:32:29Z 2009-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-column 1 Updating multiple rows with a value calculated from another column Swati 2009-02-12T03:49:29Z 2009-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-elixir 2 Pylons with Elixir Swati 2008-10-10T17:24:23Z 2008-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#193177 8 Answer by Swati for Putting newbies on Reports. Beneficial/Harmful? Swati 2008-10-10T22:01:38Z 2008-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#167545 10 Answer by Swati for XSLT Abstractions Swati 2008-10-03T15:53:06Z 2008-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>&lt;page title="Home"&gt; &lt;navigation&gt; &lt;!-- something here --&gt; &lt;/navigation&gt; &lt;main&gt; &lt;!-- something here --&gt; &lt;/main&gt; &lt;/page&gt; </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>&lt;xsl:template match="/page" name="page"&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;&lt;xsl:value-of select="(@title)" /&gt;&lt;/title&gt; &lt;xsl:call-template name="css" /&gt; &lt;xsl:call-template name="script" /&gt; &lt;/head&gt; &lt;body&gt; &lt;xsl:call-template name="container" /&gt; &lt;/body&gt; &lt;/html&gt; &lt;/xsl:template&gt; </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> &lt;xsl:template name="css"&gt; &lt;link rel="stylesheet" type="text/css" href="{$cssPath}reset.css" /&gt; &lt;link rel="stylesheet" type="text/css" href="{$cssPath}style.css" /&gt; &lt;link rel="stylesheet" type="text/css" href="{$cssPath}layout.css" /&gt; &lt;xsl:call-template name="css-extended" /&gt; &lt;/xsl:template&gt; &lt;!-- This is meant to be blank. It gets overriden by implementing stylesheets --&gt; &lt;xsl:template name="css-extended" /&gt; </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> &lt;xsl:template name="container"&gt; &lt;div id="container"&gt; &lt;xsl:call-template name="header" /&gt; &lt;xsl:call-template name="content" /&gt; &lt;xsl:call-template name="footer" /&gt; &lt;/div&gt; &lt;/xsl:template&gt; &lt;xsl:template name="content"&gt; &lt;div id="content"&gt; &lt;div id="content-inner"&gt; &lt;xsl:call-template name="sideBar" /&gt; &lt;xsl:call-template name="main" /&gt; &lt;/div&gt; &lt;/div&gt; &lt;/xsl:template&gt; &lt;xsl:template name="main"&gt; &lt;div id="main"&gt; &lt;xsl:apply-templates select="main" /&gt; &lt;xsl:call-template name="main-extended" /&gt; &lt;/div&gt; &lt;/xsl:template&gt; &lt;!-- This is meant to be blank. It gets overriden by implementing stylesheets --&gt; &lt;xsl:template name="main-extended" /&gt; &lt;xsl:template name="footer"&gt; &lt;div id="footer"&gt; &lt;div id="footer-inner"&gt; &lt;!-- Footer content here --&gt; &lt;/div&gt; &lt;/div&gt; &lt;/xsl:template&gt; </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#168617 2 Answer by Swati for What is the command line syntax to delete files in Perforce? Swati 2008-10-03T19:54:15Z 2008-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#167845 5 Answer by Swati for Should you worry about fake accounts/logins on a website? Swati 2008-10-03T16:54:02Z 2008-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#163429 2 Answer by Swati for Enum inside a JSP Swati 2008-10-02T16:57:36Z 2008-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#162501 8 Answer by Swati for Asking to see employer's code/database in an interview Swati 2008-10-02T14:14:23Z 2008-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#162096 0 Answer by Swati for Howto deactivate caching inside a jsp page Swati 2008-10-02T12:51:36Z 2008-10-02T12:51:36Z <pre><code>&lt;?xml version="1.0"?&gt; &lt;jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"&gt; &lt;jsp:scriptlet&gt;&lt;![CDATA[ response.setHeader("Cache-Control", "no-cache"); ]]&gt;&lt;/jsp:scriptlet&gt; &lt;/jsp:root&gt; </code></pre> <p>You must put the response header inside <code>&lt;jsp:root /&gt;</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#160898 5 Answer by Swati for What is "lambda binding" in Python? Swati 2008-10-02T04:38:59Z 2008-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#160150 1 Answer by Swati for Divide by zero error, how do I fix this? Swati 2008-10-01T22:57:53Z 2008-10-01T22:57:53Z <ul> <li>You can throw an exception.</li> <li>You can do <code>int percent = ( max &gt; 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#160117 13 Answer by Swati for What's the difference between <%# %> and <%= %>? Swati 2008-10-01T22:48:09Z 2008-10-01T22:52:52Z <p><code>&lt;%# %&gt;</code> is invoked during the DataBinding phase.</p> <p><code>&lt;%= %&gt;</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>&lt;%@ %&gt;</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 (&lt;%@ %>) 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#160073 0 Answer by Swati for Many-to-Many with "Primary" Swati 2008-10-01T22:36:17Z 2008-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#159321 2 Answer by Swati for How can I prevent a base constructor from being called by an inheritor in C#? Swati 2008-10-01T19:34:56Z 2008-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#158410 7 Answer by Swati for Non-programming jobs that require programming knowledge Swati 2008-10-01T16:12:23Z 2008-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#156195 1 Answer by Swati for How do you measure if an interface change improved or reduced usability? Swati 2008-10-01T03:56:48Z 2008-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#148743 4 Answer by Swati for Scrollable JDesktopPane? Swati 2008-09-29T13:56:10Z 2008-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#145116 0 Answer by Swati for What coding languages should a web developer know? Swati 2008-09-28T03:18:54Z 2008-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#141403 2 Answer by Swati for xsl scope help Swati 2008-09-26T19:23:33Z 2008-09-26T20:20:33Z <p>Remembering that xsl variables are immutable...</p> <pre><code>&lt;!-- You may want to use absolute path --&gt; &lt;xsl:variable name="varOne" select="one/@count" /&gt; &lt;xsl:template match="one"&gt; &lt;!-- // do something --&gt; &lt;/xsl:template&gt; &lt;xsl:template match="two"&gt; &lt;xsl:if test="$varOne = 'Y'"&gt; &lt;xsl:value-of select="varTwo"/&gt; &lt;/xsl:if&gt; &lt;/xsl:template&gt; </code></pre> http://stackoverflow.com/questions/140355/what-are-the-advantages-and-disadvantages-of-using-xml-schemas/140381#140381 1 Answer by Swati for What are the advantages and disadvantages of using XML schemas? Swati 2008-09-26T15:54:58Z 2008-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#140209 7 Answer by Swati for Regular expressions but for writing in the match Swati 2008-09-26T15:26:22Z 2008-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)') &gt;&gt;&gt; p.sub( 'colour', 'blue socks and red shoes') 'colour socks and colour shoes' &gt;&gt;&gt; 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#140169 4 Answer by Swati for Creating a custom error page in Umbraco CMS Swati 2008-09-26T15:19:12Z 2008-09-26T15:19:12Z <p>In <code>/config/umbracoSettings.xm</code>l modify <code>&lt;error404&gt;1&lt;/error404&gt;</code> 1 with the id of the page you want to show.</p> <pre><code>&lt;errors&gt; &lt;error404&gt;1&lt;/error404&gt; &lt;/errors&gt; </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#136673 1 Answer by Swati for Long compile times and lost productivity Swati 2008-09-25T22:45:06Z 2008-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#128899 28 Answer by Swati for Do you ever code just for fun? Swati 2008-09-24T18:24:44Z 2008-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#127939 3 Answer by Swati for Is Programming Style important? How Important? Swati 2008-09-24T15:38:52Z 2008-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#125420 0 Answer by Swati for Any clever ways of handling the context in a web app? Swati 2008-09-24T04:29:30Z 2008-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>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;paths&gt; &lt;path name="account" parent="home"&gt;Account/&lt;/path&gt; &lt;path name="css"&gt;css/&lt;/path&gt; &lt;path name="home"&gt;servlet/&lt;/path&gt; &lt;path name="icons" parent="images"&gt;icons/&lt;/path&gt; &lt;path name="images"&gt;images/&lt;/path&gt; &lt;path name="js"&gt;js/&lt;/path&gt; &lt;/paths&gt; </code></pre> <p>An internal link would be in the XML as follows:</p> <pre><code>&lt;ilink name="link to icons" type="icons"&gt;link to icons&lt;/ilink&gt; </code></pre> <p>This would get processed by our XSL:</p> <pre><code>&lt;xsl:template match="ilink"&gt; &lt;xsl:variable name="temp"&gt; &lt;xsl:value-of select="$rootpath" /&gt; &lt;xsl:call-template name="paths"&gt; &lt;xsl:with-param name="path-name"&gt;&lt;xsl:value-of select="@type" /&gt;&lt;/xsl:with-param&gt; &lt;/xsl:call-template&gt; &lt;xsl:value-of select="@file" /&gt; &lt;/xsl:variable&gt; &lt;a href="{$temp}" title="{@name}" &gt;&lt;xsl:value-of select="." /&gt;&lt;/a&gt; &lt;/xsl:template&gt; </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-library Comment by Swati on Is there a problem initializing a JAXBContext with a package in a library? Swati 2009-11-12T00:10:52Z 2009-11-12T00:10:52Z Maybe 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#539951 Comment by Swati on Updating multiple rows with a value calculated from another column Swati 2009-02-12T04:13:25Z 2009-02-12T04:13:25Z A 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#539951 Comment by Swati on Updating multiple rows with a value calculated from another column Swati 2009-02-12T04:06:16Z 2009-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#539956 Comment by Swati on Updating multiple rows with a value calculated from another column Swati 2009-02-12T04:03:47Z 2009-02-12T04:03:47Z Not 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#539951 Comment by Swati on Updating multiple rows with a value calculated from another column Swati 2009-02-12T04:02:58Z 2009-02-12T04:02:58Z This is not working. I keep getting &quot;query returned no resultset&quot;. 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#539951 Comment by Swati on Updating multiple rows with a value calculated from another column Swati 2009-02-12T03:54:44Z 2009-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#169060 Comment by Swati on How should a SO answer be credited for use in an open-source project? Swati 2008-10-03T22:14:14Z 2008-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#168341 Comment by Swati on How to enforce locking workstation when leaving? Is this important? Swati 2008-10-03T19:04:52Z 2008-10-03T19:04:52Z Or sending an email to the entire team, &quot;Pizza on me today!&quot; http://stackoverflow.com/questions/167791/control-multiple-pcs-with-single-mouse-and-keyboard/167793#167793 Comment by Swati on Control multiple PCs with single Mouse and Keyboard Swati 2008-10-03T16:43:43Z 2008-10-03T16:43:43Z Nice. Much better than the KVM solution I adopted. http://stackoverflow.com/questions/91526/best-programming-jokes/91538#91538 Comment by Swati on Best Programming Jokes Swati 2008-10-02T17:14:09Z 2008-10-02T17:14:09Z yeah seriously folks who upvoted this....did <i>no</i> one click on the link!? http://stackoverflow.com/questions/163400/database-design-issues-with-relationships Comment by Swati on Database Design Issues with relationships Swati 2008-10-02T17:12:21Z 2008-10-02T17:12:21Z A link to the image would probably suffice. http://stackoverflow.com/questions/162484/asking-to-see-employers-code-database-in-an-interview/162501#162501 Comment by Swati on Asking to see employer's code/database in an interview Swati 2008-10-02T14:55:31Z 2008-10-02T14:55:31Z Our 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#162053 Comment by Swati on Are there any viable alternatives to the GOF Singleton Pattern? Swati 2008-10-02T12:41:28Z 2008-10-02T12:41:28Z I 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-class Comment by Swati on Problem with vector inside a class Swati 2008-09-29T16:28:31Z 2008-09-29T16:28:31Z Please 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#145122 Comment by Swati on C++ performance vs. Java/C# Swati 2008-09-28T03:23:51Z 2008-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/&hellip;</a> is a good article