User Grzegorz Gierlik - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T10:23:46Z http://stackoverflow.com/feeds/user/1483 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1807498/are-there-any-good-blogs-for-software-team-leaders-or-software-project-managers/1807637#1807637 0 Answer by Grzegorz Gierlik for Are there any good blogs for software team leaders or software project managers? Grzegorz Gierlik 2009-11-27T09:23:01Z 2009-11-27T11:41:45Z <p>These are podcasts but worth to listen: <a href="http://davidmaister.com/podcasts/" rel="nofollow">David Maister's Business Masterclass</a>.</p> <p>Especially <a href="http://davidmaister.com/podcasts.archives/3/" rel="nofollow">Managing Professionals: Attitudes, Skills and Behaviors</a> series is worth to listen.</p> http://stackoverflow.com/questions/1807498/are-there-any-good-blogs-for-software-team-leaders-or-software-project-managers/1807685#1807685 0 Answer by Grzegorz Gierlik for Are there any good blogs for software team leaders or software project managers? Grzegorz Gierlik 2009-11-27T09:35:54Z 2009-11-27T09:35:54Z <p><a href="http://ecorner.stanford.edu/podcasts.html" rel="nofollow">The Entrepreneurial Thought Leaders lecture series</a> by Stanford Technology Ventures Program.</p> <p>Not all are for team leaders/project managers are some of them are really good -- i.e. <a href="http://ecorner.stanford.edu/authorMaterialInfo.html?mid=1677" rel="nofollow">Your Ship: Lessons in Leadership</a>.</p> http://stackoverflow.com/questions/1807498/are-there-any-good-blogs-for-software-team-leaders-or-software-project-managers/1807644#1807644 2 Answer by Grzegorz Gierlik for Are there any good blogs for software team leaders or software project managers? Grzegorz Gierlik 2009-11-27T09:24:46Z 2009-11-27T09:30:13Z <p>This one is my favourite one: <a href="http://blog.brodzinski.com/" rel="nofollow">Pawel Brodzinski on Software Project Management</a>.</p> http://stackoverflow.com/questions/1807498/are-there-any-good-blogs-for-software-team-leaders-or-software-project-managers/1807662#1807662 1 Answer by Grzegorz Gierlik for Are there any good blogs for software team leaders or software project managers? Grzegorz Gierlik 2009-11-27T09:29:50Z 2009-11-27T09:29:50Z <p><a href="http://www.softwarebyrob.com/" rel="nofollow">Software by Rob</a> by Rob Walling.</p> http://stackoverflow.com/questions/1807498/are-there-any-good-blogs-for-software-team-leaders-or-software-project-managers/1807650#1807650 0 Answer by Grzegorz Gierlik for Are there any good blogs for software team leaders or software project managers? Grzegorz Gierlik 2009-11-27T09:27:08Z 2009-11-27T09:27:08Z <p>Scott Berkun <a href="http://www.scottberkun.com/blog/" rel="nofollow">blog</a>.</p> http://stackoverflow.com/questions/68504/what-are-my-ide-editor-choices-for-haskell/1797138#1797138 0 Answer by Grzegorz Gierlik for What are my IDE/Editor choices for Haskell? Grzegorz Gierlik 2009-11-25T14:08:51Z 2009-11-25T14:08:51Z <p><a href="http://stackoverflow.com/questions/734309/haskell-ide-for-windows">Here</a> is similar question: <a href="http://stackoverflow.com/questions/734309/haskell-ide-for-windows">Haskell IDE for windows?</a> with accepted answer.</p> http://stackoverflow.com/questions/1791774/how-to-remove-cookie-with-underscore-in-name-in-vb6 0 How to remove cookie with underscore in name in VB6? Grzegorz Gierlik 2009-11-24T17:51:13Z 2009-11-25T11:42:34Z <p>I have VB6 web application and I have to remove cookie. Unfortunately cookie has underscore character in name -- exemplary cookie name looks like that: <code>XXXXXXAAASS_session_key</code>.</p> <p>When I try to remove it by assign empty value to it:</p> <pre><code>Response.cookies.Item("XXXXXXAAASS_session_key") = "" </code></pre> <p>I've got a new cookie with name <code>`XXXXXXAAASS%5Fsession%5Fkey</code> (underscore in encoded as <code>%5F</code>) as my Firefox browser reported (both in Cookie view somewhere in FF options and in Firebug view of request).</p> <p>I also tried to clear this cookie from Javascript with code like:</p> <pre><code>document.cookie = 'XXXXXXAAASS_session_key_session_key=;expires=Thu, 01-Jan-70 00:00:01 GMT;path=/'; </code></pre> <p>This also didn't work :( -- creates cookies in other domain.</p> <p>I am afraid I cannot change cookie name.</p> <p>Now I will try to iterate over <code>cookies</code> collection, but I don't believe it will work :(.</p> <p>Any idea what I can do wrong?</p> http://stackoverflow.com/questions/1791774/how-to-remove-cookie-with-underscore-in-name-in-vb6/1796419#1796419 0 Answer by Grzegorz Gierlik for How to remove cookie with underscore in name in VB6? Grzegorz Gierlik 2009-11-25T11:42:34Z 2009-11-25T11:42:34Z <p>Problem was solved, partly...</p> <p>I could not clear the cookie because it was not set by my application/server -- I didn't notice that :(, because cookie domain was set to my web application server name.</p> <p>This explains why I could not clear it or just create new cookie with the same name.</p> <p>But second problem still exists -- why cookie name was encoded by VB6.</p> http://stackoverflow.com/questions/1789126/best-practices-for-improving-software-quality/1789220#1789220 1 Answer by Grzegorz Gierlik for Best Practices for improving Software Quality Grzegorz Gierlik 2009-11-24T10:33:07Z 2009-11-24T10:33:07Z <p>Personally I believe in <a href="http://en.wikipedia.org/wiki/Code%5Freview" rel="nofollow">code reviews</a>. Some of advantages are:</p> <ul> <li>Constantly keeping an eye on code quality and coding standards.</li> <li>It's <strong>easy to notice</strong> any <strong>unusual/buggy/hard</strong> to understand coding structures (i.e. long <code>if</code> conditions, strange type conversions, etc.).</li> <li>While <strong>reading someone else code</strong> it's easier <strong>to notice all false assumptions</strong> (could be negative false) (i.e. this object is never <code>null</code>), which could introduce bugs.</li> <li>It <strong>makes familiar</strong> with <strong>all changes to source code</strong>, so it's easy to remember that this piece of code was lastly modified (which could introduce bugs).</li> <li>It makes <strong>easy to learn</strong> (and teach) <strong>good habits</strong>.</li> </ul> <p>And I <strong>do not believe</strong> in any tools, which are thread as special kind of <a href="http://en.wikipedia.org/wiki/No%5FSilver%5FBullet" rel="nofollow">silver bullet</a> -- which is not true.</p> http://stackoverflow.com/questions/1782162/form-submit-problem-using-javascript-in-internet-explorer-6/1782842#1782842 0 Answer by Grzegorz Gierlik for Form submit problem using JavaScript in Internet Explorer 6 Grzegorz Gierlik 2009-11-23T12:24:37Z 2009-11-23T12:24:37Z <p>Let's try again :).</p> <p>What happen after replacing:</p> <p><code>onclick="dodelete('&lt;?php echo $row['image_id']?&gt;')"&gt;</code></p> <p>with:</p> <p><code>onclick="dodelete('&lt;?php echo $row['image_id']?&gt;'); return false;"&gt;</code></p> <p>What exactly doesn't work with your code? Throw JS error, there is no server request, values in request are empty?</p> <p>And (maybe the most important question) -- where is <code>action</code> attribute for your <code>del_form</code> form?</p> http://stackoverflow.com/questions/1782162/form-submit-problem-using-javascript-in-internet-explorer-6/1782391#1782391 1 Answer by Grzegorz Gierlik for Form submit problem using JavaScript in Internet Explorer 6 Grzegorz Gierlik 2009-11-23T10:55:31Z 2009-11-23T10:55:31Z <p>What is returned by:</p> <p><code>document.getElementById('image_id')</code></p> <p>It returns one <code>INPUT</code> element of collection of elements?</p> <p>Try to replace:</p> <p><code>document.getElementById('image_id').value=image_id;</code></p> <p>with:</p> <p><code>document.del_form.image_id.value=image_id;</code> </p> http://stackoverflow.com/questions/1782254/how-to-resize-linked-images-dynamically-in-php/1782279#1782279 0 Answer by Grzegorz Gierlik for How to resize linked images dynamically in PHP? Grzegorz Gierlik 2009-11-23T10:32:02Z 2009-11-23T10:32:02Z <p>I don't have ready to use source code, but it should look like:</p> <ol> <li>Load image pointed by <code>image</code> parameter into object of <code>ImageMagick</code> (or other graphics library).</li> <li>Resize it.</li> <li>Send content to output stream.</li> </ol> <p>Optionally you could:</p> <ol> <li>Check if loaded file is image (plus other validation checks).</li> <li>Save resized image on disk and serve it from disk next time (if you do it often).</li> </ol> <p>Check docs of you favorite graphics library used in PHP for details.</p> <p>Good luck!</p> http://stackoverflow.com/questions/1782162/form-submit-problem-using-javascript-in-internet-explorer-6/1782239#1782239 0 Answer by Grzegorz Gierlik for Form submit problem using JavaScript in Internet Explorer 6 Grzegorz Gierlik 2009-11-23T10:19:56Z 2009-11-23T10:19:56Z <p>Try to move <code>method='POST'</code> to the beginning of <code>form</code> element definition. </p> <p>I mean -- <code>method</code> attribute should be the first attribute of <code>form</code> element.</p> <p>If I remember well, this fixed some problems with submitting forms on IE6.</p> http://stackoverflow.com/questions/1781946/getting-only-month-and-year-from-sql-date/1782071#1782071 1 Answer by Grzegorz Gierlik for Getting only Month and Year from SQL DATE Grzegorz Gierlik 2009-11-23T09:37:59Z 2009-11-23T09:37:59Z <p>There are two SQL function to do it:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/aa258265%28SQL.80%29.aspx" rel="nofollow">DATEPART()</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/aa260707%28SQL.80%29.aspx" rel="nofollow">YEAR()</a> and <a href="http://msdn.microsoft.com/en-us/library/aa933239%28SQL.80%29.aspx" rel="nofollow">MONTH()</a>.</li> </ul> <p>See <a href="http://msdn.microsoft.com/en-us/library/aa258863%28SQL.80%29.aspx" rel="nofollow">MSDN docs</a> for details.</p> http://stackoverflow.com/questions/1756191/why-would-this-select-statement-lock-up-on-sql-server/1756278#1756278 0 Answer by Grzegorz Gierlik for Why would this SELECT statement lock up on SQL Server? Grzegorz Gierlik 2009-11-18T14:14:32Z 2009-11-18T14:14:32Z <p><code>MY_TABLE</code> could be also locked up by some uncommitted transaction -- i.e. script/stored procedure running (of fails when run) in another MSMM window.</p> http://stackoverflow.com/questions/1720775/server-or-database/1720872#1720872 1 Answer by Grzegorz Gierlik for Server Or Database Grzegorz Gierlik 2009-11-12T09:01:34Z 2009-11-12T09:01:34Z <p>I would <strong>measure first</strong> if the <strong>simpler version</strong> (seems to query database directly first) is not <strong>good enough</strong>.</p> <p>Then, if this would be not good enough, look for better solution (still measuring results).</p> <p>There are to many <em>ifs</em> and <em>depends</em> to give you good advice remotely.</p> http://stackoverflow.com/questions/605263/tips-for-using-vim-over-a-slow-connection/1666678#1666678 0 Answer by Grzegorz Gierlik for Tips for using vim over a slow connection? Grzegorz Gierlik 2009-11-03T11:08:04Z 2009-11-03T11:08:04Z <p><a href="http://www.depesz.com/index.php/2009/07/10/slow-vim-startup/" rel="nofollow">Slow vim startup</a> by <a href="http://www.depesz.com/" rel="nofollow">Depesz</a> is probably not your case, but maybe it helps you too.</p> http://stackoverflow.com/questions/1611932/tool-or-formula-for-calcuating-man-hours-required-for-a-project/1612310#1612310 0 Answer by Grzegorz Gierlik for Tool or formula for calcuating man-hours required for a project Grzegorz Gierlik 2009-10-23T09:24:35Z 2009-10-23T09:24:35Z <p>Unfortunately general the answer is <strong>no</strong> -- there is no, ready to use, formula to calculate man-hours for software project.</p> <p>However, software project estimation, is a huge problem and there are a lot of ways to deal with it.</p> <p>Many solutions are described in Steve McConnell's book <a href="http://www.stevemcconnell.com/est.htm" rel="nofollow">Software Estimation: Demystifying the Black Art</a>.</p> <p><a href="http://www.construx.com/" rel="nofollow">Steve's company</a> offers also some resources and tools (some of them are free) which help to estimate software project.</p> http://stackoverflow.com/questions/457129/where-to-start-self-learning-c-or-should-i-learn-i-learn-a-different-language/1587505#1587505 0 Answer by Grzegorz Gierlik for Where to start (self-)learning C, or should I learn I learn a different language? Grzegorz Gierlik 2009-10-19T08:22:03Z 2009-10-19T08:22:03Z <p><strong>About learning C</strong></p> <p>If you really want to learn C, <a href="http://en.wikipedia.org/wiki/The%5FC%5FProgramming%5FLanguage%5F%28book)" rel="nofollow">Kernighan and Ritchie "The C Programming Language" book</a> is good start.</p> <p>However nowadays, in my opinion, learning C is just mind exercise -- you can learn a lot important details like, for example:</p> <ol> <li>Difference between equal operator (<code>==</code>) and assignment instruction (<code>=</code>),</li> <li>Expression can have value (i.e. <code>a = 1</code> has value 1),</li> <li>Pointers arithmetic,</li> <li>Direct memory operations (i.e. <code>memset()</code>, <code>memcpy()</code>).</li> </ol> <p>These things are interesting for developers, but most of them is not in use in today mainstream application development (except two first points above).</p> <p>However if you try to take part in some computer since competitions, C language can be useful.</p> <p><strong>My recommendation</strong></p> <p>I would learn C# because it's modern, well designed (in my opinion) object oriented programming language with good, free of charge IDE -- <a href="http://www.microsoft.com/exPress/" rel="nofollow">Visual Studio Express Edition</a>, good support (wide community, a lot of source code to study, a lot of tutorials and examples). With C# you can write console application, desktop application or Web Apps, which makes easy to learn by solving wide range of real problems.</p> <p>Also, on .NET platform there are some other interesting choices -- <a href="http://www.codeplex.com/wikipage?ProjectName=IronPython" rel="nofollow">IronPyton</a> or functional <a href="http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/" rel="nofollow">F#</a>.</p> http://stackoverflow.com/questions/1556283/ebook-reader-for-programming-books/1559454#1559454 0 Answer by Grzegorz Gierlik for ebook reader for programming books? Grzegorz Gierlik 2009-10-13T10:44:39Z 2009-10-13T10:44:39Z <p>I use Google Reader on mobile phones a lot (Nokia E51, G1) and it's hard to read any source code on small screen (even on 3.2" screen of G1).</p> <p>I would invest into Kindle DX (if you live in US) following <a href="http://www.hanselman.com/blog/AmazonKindleVsAmazonKindleDXTheFinalWord.aspx" rel="nofollow">recommendation</a> of Scott Hanselman.</p> <p>Kindle is now available in many countries and Kindle DX version can even show any PDF emailed to it.</p> http://stackoverflow.com/questions/1559201/sql-how-do-i-group-by-month-and-year-when-only-having-a-datetime-field/1559235#1559235 1 Answer by Grzegorz Gierlik for [SQL] How do I group by month and year when only having a datetime field? Grzegorz Gierlik 2009-10-13T09:57:09Z 2009-10-13T09:57:09Z <p>I would try something like that:</p> <pre><code>SELECT YEAR(when) AS year, MONTH(when) AS month, SUM(amount) AS amount FROM TRANSACTION GROUP BY YEAR(when), MONTH(when) ORDER BY YEAR(when), MONTH(when) </code></pre> <p>This works on MS SQL and should work on MySQL too.</p> http://stackoverflow.com/questions/1502705/which-to-do-list-application-do-you-use/1502733#1502733 2 Answer by Grzegorz Gierlik for which to-do list application do you use? Grzegorz Gierlik 2009-10-01T08:51:09Z 2009-10-01T08:51:09Z <p><a href="http://www.rememberthemilk.com/" rel="nofollow">Remember The Milk</a> -- offers API so could be integrated with IDE and, possibly, has many interfaces (IDE, mobile, desktop app or even SVN hook).</p> <p>But I prefer code comments parsed to TO DO lists by IDE itself -- it keep TODOs together with source code.</p> http://stackoverflow.com/questions/194807/how-many-points-your-company-has-in-the-joel-test-nowadays 5 How many points your company has in the Joel test nowadays? Grzegorz Gierlik 2008-10-11T23:16:19Z 2009-09-16T15:20:34Z <p>We all know <a href="http://www.joelonsoftware.com/articles/fog0000000043.html" rel="nofollow">the Joel test</a>. Joel had written it 8 years ago in August 2000. He wrote that most software companies ran with score between 2 and 3, which should have been quite scary for them.</p> <p>8 years is a long time in software industry :). </p> <p>Two years ago friend of mine <a href="http://www.projectcomplete.pl/blog/entry70" rel="nofollow">ask his friends</a> [text is in Polish] about Joel test and published some results.</p> <p>In short: </p> <ul> <li>two the worst companies had 4 points, </li> <li>three the best had 8 points,</li> <li>not many companies ask for writing a piece of code,</li> <li>almost no once test UI.</li> </ul> <p>I would like to ask you how many points your company earns today in the Joel test?</p> <p>I am sure the results look much better then 8 years ago. But I am wondering how much better and how much Joel's post influenced this progress...</p> http://stackoverflow.com/questions/1397879/how-can-i-query-rankings-for-the-users-in-my-db-but-only-consider-the-latest-ent/1398073#1398073 0 Answer by Grzegorz Gierlik for How can I query rankings for the users in my DB, but only consider the latest entry for each user? Grzegorz Gierlik 2009-09-09T07:26:17Z 2009-09-09T07:26:17Z <p>Try something like:</p> <ol> <li>Select user id and max date of last entry for each user.</li> <li>Select and order records to get ranking based on above query results.</li> </ol> <p>This should work, however depends on your database size.</p> <pre><code>DECLARE @last_entries TABLE(id int, dte datetime) -- insert date (dte) of last entry for each user (id) INSERT INTO @last_entries (id, dte) SELECT UserID, MAX(ScrapeDate) FROM Scrape WITH (NOLOCK) GROUP BY UserID -- select ranking SELECT -- optionally you can use RANK OVER() function to get rank value UserName, Wins, Losses FROM @last_entries JOIN Scraps WITH (NOLOCK) ON UserID = id AND ScrapeDate = dte ORDER BY Winds, Losses </code></pre> <p>I do not test this code, so it could not compile on first run.</p> http://stackoverflow.com/questions/1393050/conversion-of-integer-to-datetime-differs-to-vb6/1393232#1393232 6 Answer by Grzegorz Gierlik for Conversion of INTEGER to DATETIME differs to VB6 Grzegorz Gierlik 2009-09-08T10:36:00Z 2009-09-08T10:36:00Z <p>Seems that VB datetime starts on 30th Dec 1899:</p> <pre><code>?CDbl(#30/12/1899 03:00:01#) 0.125011574074074 </code></pre> <p>whereas SQL datetime starts on 1st Jun 1900:</p> <pre><code>SELECT CAST(0 AS DATETIME) 1900-01-01 00:00:00.000 </code></pre> <p>This gives two days difference which fits your results :).</p> <pre><code>'VB6 CDbl(#2009-09-08#) 40064 -- SQL: SELECT CAST(40064 AS DATETIME) 2009-09-10 00:00:00.000 </code></pre> http://stackoverflow.com/questions/1393094/ie7-problem-session-and-cookie-problem/1393118#1393118 0 Answer by Grzegorz Gierlik for IE7 problem - session and cookie problem Grzegorz Gierlik 2009-09-08T10:07:24Z 2009-09-08T10:07:24Z <p>Yes. IE shares session/cookie between tabs.</p> <p>Try to run a new browser (i.e. from Start menu) -- it helped with older versions of IE and it works with my IE7.</p> http://stackoverflow.com/questions/1310363/how-to-average-3-values-in-sql-server/1310682#1310682 0 Answer by Grzegorz Gierlik for How to average 3 values in Sql Server? Grzegorz Gierlik 2009-08-21T08:21:47Z 2009-08-21T08:21:47Z <p>For me this is easier to read and understand:</p> <pre><code>DECLARE @ScoreA DECIMAL(10,7), @ScoreB DECIMAL(10,7), @ScoreC DECIMAL(10,7), @FinalScore DECIMAL(10, 7) SET @ScoreA = 1.4 SET @ScoreB = 3.5 SET @ScoreC = 5.0 DECLARE @AVG TABLE (value DECIMAL(10,7)) INSERT INTO @AVG SELECT @ScoreA WHERE @ScoreA &gt; 0 UNION SELECT @ScoreB WHERE @ScoreB &gt; 0 UNION SELECT @ScoreC WHERE @ScoreC &gt; 0 SELECT COALESCE(AVG(value), 0) FROM @AVG </code></pre> http://stackoverflow.com/questions/1244487/how-do-i-turn-logging-off-using-log4j/1244617#1244617 2 Answer by Grzegorz Gierlik for How do I turn logging off using log4j? Grzegorz Gierlik 2009-08-07T13:09:06Z 2009-08-07T13:09:06Z <p>Depends on configuration. Try something like:</p> <pre><code>&lt;log4j:configuration&gt; &lt;root&gt; &lt;priority value ="off" /&gt; &lt;appender-ref ref="console" /&gt; &lt;appender-ref ref="rolling-file" /&gt; &lt;/root&gt; &lt;/log4j:configuration&gt; </code></pre> <p>Check <a href="http://wiki.apache.org/logging-log4j/Log4jXmlFormat" rel="nofollow">Log4jXmlFormat</a> for more details.</p> http://stackoverflow.com/questions/1237991/how-to-use-the-same-parameter-more-than-once-in-a-query/1238104#1238104 0 Answer by Grzegorz Gierlik for How to use the same parameter more than once in a query Grzegorz Gierlik 2009-08-06T10:29:18Z 2009-08-06T10:29:18Z <p>I've never used SQL CE, but maybe this will work:</p> <pre><code>DECLARE @P int SET @P = @Param SELECT t.Field1, t.Field2 FROM MyTable t WHERE t.Field1 = @P UNION ALL SELECT t2.Field1, t2.Field2 FROM MyOtherTable t2 WHERE t2.Field1 = @P </code></pre> http://stackoverflow.com/questions/1233016/store-user-information-in-session/1233064#1233064 0 Answer by Grzegorz Gierlik for Store user information in session? Grzegorz Gierlik 2009-08-05T12:54:07Z 2009-08-05T12:54:07Z <p>I would not store in session, which flying over the net with each request, anything which can be read from database.</p> <p>Big session object could become real issue in long time -- it's so easy to add one more think to it :).</p> http://stackoverflow.com/questions/1791774/how-to-remove-cookie-with-underscore-in-name-in-vb6/1792289#1792289 Comment by Grzegorz Gierlik on How to remove cookie with underscore in name in VB6? Grzegorz Gierlik 2009-11-25T11:21:49Z 2009-11-25T11:21:49Z Unfortunately this was just a typo while editing my question. http://stackoverflow.com/questions/1791774/how-to-remove-cookie-with-underscore-in-name-in-vb6 Comment by Grzegorz Gierlik on How to remove cookie with underscore in name in VB6? Grzegorz Gierlik 2009-11-24T18:07:59Z 2009-11-24T18:07:59Z Iterate over cookies collection also won't work :(. http://stackoverflow.com/questions/1782162/form-submit-problem-using-javascript-in-internet-explorer-6 Comment by Grzegorz Gierlik on Form submit problem using JavaScript in Internet Explorer 6 Grzegorz Gierlik 2009-11-23T10:52:19Z 2009-11-23T10:52:19Z What exactly doesn't work? http://stackoverflow.com/questions/1699761/getting-the-last-inserted-record-id-of-a-database-table-in-java/1699783#1699783 Comment by Grzegorz Gierlik on Getting the last inserted record id of a database table in java? Grzegorz Gierlik 2009-11-09T08:53:21Z 2009-11-09T08:53:21Z If MySQL JDBC driver implements it. http://stackoverflow.com/questions/1630543/sql-delete-performance-problem Comment by Grzegorz Gierlik on SQL DELETE performance problem Grzegorz Gierlik 2009-10-27T12:43:39Z 2009-10-27T12:43:39Z What database is it? http://stackoverflow.com/questions/1623959/how-to-calculate-vampire-numbers/1623977#1623977 Comment by Grzegorz Gierlik on How to calculate Vampire numbers? Grzegorz Gierlik 2009-10-26T10:14:03Z 2009-10-26T10:14:03Z Unfortunetly Manoj has to write code to find these numbers -- not just prints them :( http://stackoverflow.com/questions/1559201/sql-how-do-i-group-by-month-and-year-when-only-having-a-datetime-field/1559234#1559234 Comment by Grzegorz Gierlik on [SQL] How do I group by month and year when only having a datetime field? Grzegorz Gierlik 2009-10-13T10:00:18Z 2009-10-13T10:00:18Z Nice, but will not work on every database :(. http://stackoverflow.com/questions/1421279/troubles-with-html-forms/1421310#1421310 Comment by Grzegorz Gierlik on Troubles with html-forms. Grzegorz Gierlik 2009-09-14T12:50:19Z 2009-09-14T12:50:19Z In original form element action attribute has different value (update_db.php) then above. And here is the problem. Set proper action value and it will work. Redirect could drop values of form. http://stackoverflow.com/questions/1393050/conversion-of-integer-to-datetime-differs-to-vb6/1393149#1393149 Comment by Grzegorz Gierlik on Conversion of INTEGER to DATETIME differs to VB6 Grzegorz Gierlik 2009-09-08T11:03:53Z 2009-09-08T11:03:53Z You can find explanation here: <a href="http://www.joelonsoftware.com/items/2006/06/16.html" rel="nofollow">joelonsoftware.com/items/2006/&hellip;</a> http://stackoverflow.com/questions/1393094/ie7-problem-session-and-cookie-problem/1393118#1393118 Comment by Grzegorz Gierlik on IE7 problem - session and cookie problem Grzegorz Gierlik 2009-09-08T10:47:08Z 2009-09-08T10:47:08Z I am sorry, but I have no idea how to check if web app is already opened in other tab. When I had problem like that in my app I just taught users how to open 2ed window and log as another user. Moreover -- if you open new browser window form working browser window it inherited session -- new browser window must be opened from Start menu or by clicking on IE icon. http://stackoverflow.com/questions/1393094/ie7-problem-session-and-cookie-problem/1393127#1393127 Comment by Grzegorz Gierlik on IE7 problem - session and cookie problem Grzegorz Gierlik 2009-09-08T10:12:53Z 2009-09-08T10:12:53Z However, for IE new browser window does not inherit session, whereas for FF session is always inherited. http://stackoverflow.com/questions/1237991/how-to-use-the-same-parameter-more-than-once-in-a-query Comment by Grzegorz Gierlik on How to use the same parameter more than once in a query Grzegorz Gierlik 2009-08-06T10:06:09Z 2009-08-06T10:06:09Z Is this query executed by sp_executesql? http://stackoverflow.com/questions/4745/asp-net-mvc-is-it-worth-it-yet Comment by Grzegorz Gierlik on ASP.NET MVC - Is it worth it yet? Grzegorz Gierlik 2009-06-25T10:25:40Z 2009-06-25T10:25:40Z Since March 2009 when ASP.NET MVC 1.0 was released, ASP.NET MVC is not longer &quot;preview&quot; technology. http://stackoverflow.com/questions/1011619/hiring-a-project-or-development-manager-what-are-good-interview-question/1015668#1015668 Comment by Grzegorz Gierlik on Hiring a project or development manager: what are good interview question? Grzegorz Gierlik 2009-06-19T08:04:13Z 2009-06-19T08:04:13Z Or The Deadline: A Novel About Project Management, which is also great book. http://stackoverflow.com/questions/1011619/hiring-a-project-or-development-manager-what-are-good-interview-question/1011769#1011769 Comment by Grzegorz Gierlik on Hiring a project or development manager: what are good interview question? Grzegorz Gierlik 2009-06-19T07:59:19Z 2009-06-19T07:59:19Z He doesn't have to :). But it says something about candidate -- he could not read anything (bad) or read something different and I can learn something new from him (at least interesting).