User Ilya Kochetov - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T05:52:18Z http://stackoverflow.com/feeds/user/15329 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1281104/why-is-adobe-air-so-slow/1559296#1559296 0 Answer by Ilya Kochetov for why is adobe air so slow Ilya Kochetov 2009-10-13T10:09:19Z 2009-10-13T10:09:19Z <p>It's a known issue - Flash/Flex for Linux is not as fast as the Windows version, AIR could not help this much, it's just a shell for executing Flex.</p> <p>This question is really for SuperUser - I vote for moving it there.</p> http://stackoverflow.com/questions/1460959/multiple-db-connections-vs-centralized-redundant-db/1461034#1461034 2 Answer by Ilya Kochetov for multiple db connections vs. centralized/redundant db Ilya Kochetov 2009-09-22T16:09:23Z 2009-09-22T16:09:23Z <p>To give you are short answer: yes, you want a central data storage.</p> <p>You don't want to run complex reports on your live database. As your live database will grow you will want to do some housekeeping and clean it up but keep the data for analysi.</p> <p>You will also want the data to be aggregated so you could perform historical analysis.</p> <p>For the data which comes from different sources some clean-up will be required. And you will probably need to know how to link your data together and there are quire a lot of things like that you will have to be aware of to do the job properly.</p> <p>You might consider reading on data warehousing (<a href="http://en.wikipedia.org/wiki/Data%5Fwarehouse" rel="nofollow">wikipedia</a>) and business intelligence (<a href="http://en.wikipedia.org/wiki/Business%5Fintelligence" rel="nofollow">wikipedia</a>).</p> <p>If you want to have 'new features' added to this system you could also look up orchestration (<a href="http://en.wikipedia.org/wiki/Orchestration%5F%28computers" rel="nofollow">wikipedia</a>). It will allow you to link your heterogeneous business processes together.</p> <p>All of these are quite specialized and complex disciplines on their own so you might want to have a specialist to consult you.</p> http://stackoverflow.com/questions/1459291/how-to-reverse-a-string-with-php/1459296#1459296 4 Answer by Ilya Kochetov for How to reverse a string with PHP? Ilya Kochetov 2009-09-22T10:34:01Z 2009-09-22T10:34:01Z <p>Is it a trick question?</p> <p><a href="http://us.php.net/manual/en/function.strrev.php" rel="nofollow">http://us.php.net/manual/en/function.strrev.php</a></p> http://stackoverflow.com/questions/1425835/code-review-tools-to-work-with-sccs/1425853#1425853 2 Answer by Ilya Kochetov for Code review tools to work with SCCS? Ilya Kochetov 2009-09-15T08:18:30Z 2009-09-15T14:39:49Z <ul> <li><a href="http://www.atlassian.com/software/crucible/" rel="nofollow">Crucible</a> - it is considered to be very good but it is also quite expensive</li> <li><a href="http://codecollab.com/" rel="nofollow">smartBear Code Collaborator</a> - the next best thing (also not cheap)</li> <li><a href="http://code.google.com/p/rietveld/" rel="nofollow">Rietveld</a></li> </ul> <p>None of these support SCCS directly but Crucible could be extended using its <a href="https://plugins.atlassian.com/search/by/crucible" rel="nofollow">plugins</a> and so do others</p> <p>But really please look here: <a href="http://stackoverflow.com/questions/49906/best-tools-for-code-reviews">Question with quite a lot of good answers</a></p> http://stackoverflow.com/questions/1380638/statistics-and-selling-points-on-agile-and-project-success-failure-rates/1380664#1380664 1 Answer by Ilya Kochetov for Statistics and Selling Points on Agile and Project Success/Failure Rates Ilya Kochetov 2009-09-04T17:50:27Z 2009-09-04T17:50:27Z <ul> <li><a href="http://stackoverflow.com/questions/52997/you-have-to-sell-agile-to-management">this question</a></li> <li>and <a href="http://stackoverflow.com/questions/90312/selling-points-of-agile-practices">this question</a></li> </ul> <p>are covering the 'sales points' topic in details</p> http://stackoverflow.com/questions/1378313/iphone-is-it-worth-developing-an-application-to-support-the-os-2-2-anymore 2 iPhone: is it worth developing an application to support the OS 2.2 anymore? Ilya Kochetov 2009-09-04T10:01:15Z 2009-09-04T12:26:50Z <p>The new OS (3.0+) adds more features which speed up the development (like working with the lists etc). On the other hand there could be (potentially) a lot of users somewhere still running OS 2.2.</p> <p>Is there any place to look for statistics? Could someone offer an advice on the target OS for a new iPhone app scheduled for Christmas release?</p> http://stackoverflow.com/questions/1378703/how-to-refactor-global-variables-out-of-your-code/1378752#1378752 1 Answer by Ilya Kochetov for How to refactor global variables out of your code. Ilya Kochetov 2009-09-04T11:40:06Z 2009-09-04T11:40:06Z <p>The answer usually lies in the architecture of your program. You could design in in a way global variables are absolutely necessary and you could design in in the way you never need them. You would usually end up with a better and cleaner architecture in the later scenario plus would avoid all of the usual problems with creating unit tests for the methods which rely on the global variables etc.</p> <p><a href="http://stackoverflow.com/questions/44364/how-can-i-avoid-global-state">This question</a> will also help.</p> <p>P.S. In your particular scenario the global variable is not really needed at all - you could easily pass it as a parameter to the <code>addPerson</code> method.</p> http://stackoverflow.com/questions/1377908/is-it-worth-learning-oop-in-c/1377980#1377980 4 Answer by Ilya Kochetov for Is it worth learning OOP in C++? Ilya Kochetov 2009-09-04T08:31:35Z 2009-09-04T08:31:35Z <p>If your goal is to learn OOP you might consider going with a language which is build for OOP from ground-up so you would be learning OOP and not its implementation.</p> <p>If you know OOP well and just curious about using it in C++ by all means do that - new knowledge like that is rarely harmful</p> http://stackoverflow.com/questions/1372341/scrum-technical-items-in-a-backlog-that-is-managed-by-a-non-technical-po/1372756#1372756 3 Answer by Ilya Kochetov for Scrum: Technical items in a backlog that is managed by a non technical PO? Ilya Kochetov 2009-09-03T11:01:59Z 2009-09-03T11:01:59Z <p>Usually in the 'vanilla' SCRUM the technical tasks you mentioned will not go as separate stories.</p> <p>To me the non-technical PO should not be looking at the stories like 'Upgrade the server'. It's not a business story, it is not visible to the end-user so it is difficult to prioritize if it is formulated this way. Priorities should be assigned according to the business value of the work. 'Upgrading' does not mean much. 'Allowing more simultaneous connections', 'Reducing the downtime' or even 'improving the team velocity' might provide much more valuable insight to a non-technical person. If you cannot find a non-technical description ask yourself a question about the necessity of the upgrade :)</p> <p>The 'refactoring' story is even more complicated. Did you ask yourself why is it a story at all? Refactoring could be done as a task in the story but it is rarely a story on itself. So if you want to make login work better or provide more features that's a story but tinkering under the hood does not count as one. Please also note that refactoring without a business purpose could easily lead to a so-called 'gold plating'</p> <p>I would suggest doing the 'upgrade' stories as a spike with the 'improve performance' and 're-factor' being the tasks for a relevant business story.</p> <p>P.S. You might find a good discussion on this topic (mostly in part 3 of it) in the excellent book by Mike Cohn called "<a href="http://rads.stackoverflow.com/amzn/click/0321205685" rel="nofollow">User Stories Applied: For Agile Software Development</a>".</p> http://stackoverflow.com/questions/1367057/flex-doing-useful-things-while-the-transition-effect-is-played 0 Flex: doing useful things while the transition effect is played Ilya Kochetov 2009-09-02T11:10:20Z 2009-09-02T20:54:58Z <p>We have a Flex application which has several 'pages' worth of content. Each time a page is opened by the user some of the information on the page needs to be refreshed (takes less than a second to do so). We currently display a 'loading' animation. The idea is to replace it with some kind of transition effect for the whole page and load the content in <strong>background</strong> while the transition is in progress.</p> <p>Is it possible? Is it a good idea? Could someone share a link to a good example or article on the subject?</p> <p>thank you very much</p> http://stackoverflow.com/questions/1339594/inserting-into-a-view-in-sql-server/1339620#1339620 1 Answer by Ilya Kochetov for inserting into a view in SQL server Ilya Kochetov 2009-08-27T08:20:31Z 2009-08-27T08:25:36Z <p>The problem is that your view is across several tables. If you access multiple tables you could update or insert in only one of them.</p> <p>Please also check the <a href="http://msdn.microsoft.com/en-us/library/aa214068%28SQL.80%29.aspx" rel="nofollow">MSDN</a> for more detailed information on restrictions and on <a href="http://msdn.microsoft.com/en-us/library/ms180800.aspx" rel="nofollow">proper strategies for view updates</a></p> http://stackoverflow.com/questions/1292115/code-review-tools-for-transact-sql/1335894#1335894 0 Answer by Ilya Kochetov for Code Review Tools for Transact SQL Ilya Kochetov 2009-08-26T16:17:45Z 2009-08-26T16:35:48Z <p>I am not aware of any existing tool which would do that but you might have some luck with training <a href="http://pear.php.net/package/PHP%5FCodeSniffer/" rel="nofollow">PHP CodeSniffer</a> to tokenize T-SQL and by creating your own sniffs. It's not an easy task so let me know if you will find a better way.</p> <p>UPD: there are SQL tokenizers already created for PHP: <a href="http://www.tehuber.com/article.php?story=20081016164856267" rel="nofollow">Justin Carlson's one</a>, also a <a href="http://www.txtsql.com/4.0/txtSQL.tokenizer.txt" rel="nofollow">txtSQL.tokenizer.txt</a>. This means that if you adapt them to be used by the CodeSniffer you're ready to go.</p> http://stackoverflow.com/questions/1335703/fortran-as-a-good-choice/1335768#1335768 3 Answer by Ilya Kochetov for Fortran as a Good Choice Ilya Kochetov 2009-08-26T15:57:23Z 2009-08-26T15:57:23Z <blockquote> <p>...At a conference on computational physics in South Korea (CCP2006), most of the plenary speakers who talked about codes used Fortran. Perhaps scientists prefer Fortran because they're productive when using it.</p> </blockquote> <p><a href="http://ieeexplore.ieee.org/xpl/freeabs%5Fall.jsp?arnumber=4263269" rel="nofollow">from here</a></p> http://stackoverflow.com/questions/1333282/does-identifier-casing-really-matter/1333350#1333350 5 Answer by Ilya Kochetov for Does identifier casing really matter? Ilya Kochetov 2009-08-26T09:07:06Z 2009-08-26T15:51:32Z <p>You need to make sure that your code is readable in the future. Please remember that you might want to pass the development of your application to someone else and this person will need to read and understand it. You could stop actively working on a project and return to it after a year - and be suprised that you have to read code carefully to understand how it works.</p> <p>I believe it was Steve McConnell who said that specific naming style does not really matter (you could use anything you want as long as you are consistent) but this only applies when everyone working on the project agree with you.</p> <p>In general it is better to adopt community-accepted coding styles where possible to facilitate code reuse and shorten learning curves.</p> http://stackoverflow.com/questions/1304886/how-do-i-maintain-high-level-documentation-along-with-phpdoc-generated-documentat/1333519#1333519 1 Answer by Ilya Kochetov for How do I maintain high-level documentation along with phpdoc generated documentation? Ilya Kochetov 2009-08-26T09:42:25Z 2009-08-26T09:42:25Z <p>If you use phpdoc-style you're obviously aware that you could do the examples, tutorials etc right inside it and provide links to external content like roadmaps as necessary. It is not ideal but definitely works and gives you a consistent and useful documentation. Just use some formating inside your comments for easy-to read text and @see for the links. You might also consider using inline tags but I am not sure you need to go as far as that from the start.</p> <pre><code>/** * @todo Need to move to the main framework * * class: RegistrationPeer extends AbstractPeer * package: Registration * subpackage: Peer * * method: findByUserId($userId) * visibility: public * static: yes * * file: xxx * * class: Registration extends AbstractModel * package: Registration * subpackage: Model * * Sample usage: * &lt;code&gt; * &lt;?php * $userId = $sessionManager-&gt;getRegUid(); * $registration = RegistrationPeer::findByUserId($userId); * ?&gt; * &lt;/code&gt; * * @see AbstractPeer * @see http://docs.google.com/Doc?docid=xxxx&amp;hl=en * * @author xxx */ </code></pre> http://stackoverflow.com/questions/1333208/excluding-svn-directories-with-winrar/1333390#1333390 1 Answer by Ilya Kochetov for Excluding .svn directories with WinRar Ilya Kochetov 2009-08-26T09:14:51Z 2009-08-26T09:14:51Z <p>I agree with Neil Butterworth comment regarding the use of the <code>svn export</code> command being more appropriate in this case. Talking about <code>WinRar</code> you might consider using an <a href="http://acritum.com/winrar/manual/html%5Fhelpsweattr.htm" rel="nofollow"><code>-e</code></a> switch to skip hidden folders (.svn is a hidden folder) and an <a href="http://acritum.com/winrar/manual/html%5Fhelpswep.htm" rel="nofollow"><code>-ep</code></a> switch to exclude it by name.</p> <p>Please refer to <a href="http://acritum.com/winrar/manual/index.html" rel="nofollow">WinRar manual</a> for more information</p> http://stackoverflow.com/questions/679347/watin-in-visual-studio-2008-second-test-method-fails 0 WatiN in Visual Studio 2008 - second test method fails Ilya Kochetov 2009-03-24T21:35:50Z 2009-03-31T13:19:21Z <p>When trying to run a very simple WatiN 2.0 (CTP3) test in Visual Studio 2008 I found that the first one always executes fine. The second test method seem to break something in the IE object producing the following exception:</p> <blockquote> <p>Test method testProject.WatinTest.testTwo threw exception: System.Runtime.InteropServices.InvalidComObjectException: COM object that has been separated from its underlying RCW cannot be used..</p> </blockquote> <p>A sample code is below. Due to the way the initialization method is workin in VS2008 the browser variable has to be defined as <code>static</code> which I believe could be a key to the problem. Unfortunately unless the browser is opened in the common method it means a separate window for every test which is not ideal</p> <p>I would be very grateful for any ideas on how to fix that. Google search and SO search did not produce any useful results so I hope that a good answer to this question will help the community. Many thanks,</p> <p><hr /></p> <pre><code> private static IE ie [ClassInitialize] public static void testInit(TestContext testContext) { ie = new IE("http://news.bbc.co.uk"); } [TestMethod] public void testOne() { Assert.IsTrue(ie.ContainsText("Low graphics")); } [TestMethod] public void testTwo() { Assert.IsTrue(ie.ContainsText("Low graphics")); } </code></pre> http://stackoverflow.com/questions/687592/any-recommendation-for-ie-6-7-javascript-memory-inspection-tool/687693#687693 2 Answer by Ilya Kochetov for Any recommendation for IE 6 / 7 Javascript Memory Inspection tool? Ilya Kochetov 2009-03-26T21:48:35Z 2009-03-26T21:48:35Z <p>You could try <a href="http://www.outofhanwell.com/ieleak/index.php?title=Main%5FPage" rel="nofollow">Drip</a> for memory leaks but in my experience that's pretty much it for IE. Let's wait for better responses :)</p> http://stackoverflow.com/questions/114597/what-is-the-fastest-way-to-scale-and-display-an-image-in-python/614425#614425 0 Answer by Ilya Kochetov for What is the fastest way to scale and display an image in Python? Ilya Kochetov 2009-03-05T11:39:30Z 2009-03-05T11:39:30Z <p>I second <a href="http://pyglet" rel="nofollow">pyglet</a> - it's an excellent choice for images in python</p> http://stackoverflow.com/questions/191137/database-development-organisation 2 Database development organisation Ilya Kochetov 2008-10-10T12:58:01Z 2009-02-27T16:52:29Z <p>A question regarding a DB development project. The database already exist and is rather large (several TBs).</p> <ol> <li>What do you use for version control in DB development?</li> <li>How do you control concurrent changes to the data model by different teams</li> <li>What is your approach to the Unit Testing in the DB development</li> <li>How do you deal with the sensitive data if the DB owners do not know what is sensitive? What is your approach to the data obfuscation? What are your obfuscation techniques?</li> <li>How do you work on a large DB from several locations?</li> </ol> <p>Please answer one or more of the items as you see fit. Each answer will be reviewed separately. Thank you very much!</p> <p><strong>EDIT:</strong> A related question with good answers to the p.1 is here: <a href="http://stackoverflow.com/questions/175451/how-do-you-version-your-database-schema">http://stackoverflow.com/questions/175451/how-do-you-version-your-database-schema</a></p> http://stackoverflow.com/questions/519405/whats-wrong-with-bringing-code-to-a-programming-job-interview/519722#519722 2 Answer by Ilya Kochetov for What's wrong with bringing code to a programming job interview ? Ilya Kochetov 2009-02-06T09:51:52Z 2009-02-06T09:51:52Z <p>Bear in mind that the code you've created as an employee of a company is most likely a property of that company - that's a pretty solid reason not to have it on a flash drive in your pocket when you're going to a job interview.</p> <p>Also if I would be interested in the way you code I would ask you to do that in front of me right on the interview instead of reviewing some canned stuff.</p> http://stackoverflow.com/questions/211397/career-future-as-software-developer/211532#211532 4 Answer by Ilya Kochetov for Career future as Software Developer Ilya Kochetov 2008-10-17T09:22:00Z 2009-01-08T12:18:54Z <p>Your choices are really up to you. I work for a big company and we have plenty of experience with these situations. Basically you have two 'paths' you could take without making any changes to your career.</p> <ul> <li><p>You could become a 'manager'. I.e. you start by being a senior developer, then a team leader, then a project manager assistant, picking up the experience along the way. It does not mean that you don't get to be an engineer, but obviously you'll spend more time administrating things. I knew several people who turned down this path because they did not want to quit coding.</p></li> <li><p>You could become an 'expert'. You get more and more technological prowess, you know more and more. Ultimately you become a guru who advice others, do code reviews and work on the 'crack teams' of experts if something has to be done really quick and really good. An variation on this is that you become an architect (System Architect or Database Architect) but that requires a certain frame of mind which not every one have. A downside of this path is that you never get that high up in the chain of command. But sometimes it's actually an upside from the personal point of view :) </p></li> </ul> <p>There are other paths: you could become a resource manager (almost like switching from the field operative to an office paperwork duty).</p> <p>You could also become a Analyst and start working with the clients to collect, analyse and process their requirements into the specifications for the development team. It is great fun but it requires an inclination to work with people a lot (and talk a lot I would say :).</p> http://stackoverflow.com/questions/305306/informix-sql-query-two-similar-queries-returning-different-results 0 Informix SQL query: Two similar queries returning different results Ilya Kochetov 2008-11-20T13:33:10Z 2008-11-25T02:29:31Z <p>I have an Informix SQL query which returns a set of rows. It was slightly modified for the new version of the site we've been working on and our QA noticed that the new version returns different results. After investigation we've found that the only difference between two queries were in the number of fields returned.</p> <p>FROM, WHERE and ORDER BY clauses are identical and the column names in the SELECT part did not affect the results. It was only the number of fields which caused the problem.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/305304/single-database-tool-to-access-different-database-types/305351#305351 0 Answer by Ilya Kochetov for Single database tool to access different database types? Ilya Kochetov 2008-11-20T13:49:59Z 2008-11-20T13:49:59Z <p>I think you might be interested in <a href="http://www.sparxsystems.com.au/products/index.html#EA" rel="nofollow">Sparx Enterprise Architect</a>. It could help with reverse engineering and creating fancy diagrams. It works with everything you could get drivers for but your database are natively supported.</p> <p>Vision for Enterprise Architects could do the same.</p> http://stackoverflow.com/questions/305306/informix-sql-query-two-similar-queries-returning-different-results/305339#305339 1 Answer by Ilya Kochetov for Informix SQL query: Two similar queries returning different results Ilya Kochetov 2008-11-20T13:46:25Z 2008-11-20T13:46:25Z <p>The Informix SQL engine uses the indices on the tables based on the columns we want to retrieve. When retrieving different columns we were using different indices and therefore getting the results in different order.</p> http://stackoverflow.com/questions/305306/informix-sql-query-two-similar-queries-returning-different-results/305309#305309 1 Answer by Ilya Kochetov for Informix SQL query: Two similar queries returning different results Ilya Kochetov 2008-11-20T13:35:25Z 2008-11-20T13:35:25Z <p>Adding <code>--+ ORDERED</code> join-order directive fixes the problem by allowing you to get your results in predictable order each time.</p> <p>The links goes to the description of how the directive works <a href="http://publib.boulder.ibm.com/infocenter/idshelp/v10/index.jsp?topic=/com.ibm.sqls.doc/sqls1144.htm" rel="nofollow">http://publib.boulder.ibm.com/infocenter/idshelp/v10/index.jsp?topic=/com.ibm.sqls.doc/sqls1144.htm</a></p> <blockquote> <p>Use the ORDERED join-order directive to force the optimizer to join tables or views in the order in which they appear in the FROM clause of the query.</p> </blockquote> <pre><code>SELECT --+ ORDERED name, title, salary, dname FROM dept, job, emp WHERE title = 'clerk' AND loc = 'Palo Alto' AND emp.dno = dept.dno AND emp.job= job.job; </code></pre> http://stackoverflow.com/questions/229257/what-do-project-managers-do-all-day/229283#229283 16 Answer by Ilya Kochetov for What do project managers do all day? Ilya Kochetov 2008-10-23T10:43:06Z 2008-11-07T04:20:02Z <p>It really depends on the situation, on the size of the team, on the company, on the product customer and on 100% different factors.</p> <p>As a developer you might not be aware of what your PM is actually doing all day as he's shielding you from different things which you don't have to worry about: meetings with the customers, stakeholders reviews, auditors etc etc.</p> <p>On a big projects in our company we have situation where are couple of PMs are involved and they both add value.</p> <p>On some smaller projects I was involved into the team leader was able to effectively do most of organisation and that project shared the PM with another project in the same situation.</p> <p>I know about one project which almost failed when the customer attempted to do so to save some expenses.</p> http://stackoverflow.com/questions/246983/informix-how-to-get-an-id-of-the-last-inserted-record 0 Informix: how to get an id of the last inserted record Ilya Kochetov 2008-10-29T14:22:09Z 2008-10-31T02:11:11Z <p>What's the most efficient way of getting the value of the SERIAL column after the INSERT statement? I.e. I am looking for a way to replicate <code>@@IDENTITY</code> or <code>SCOPE_IDENTITY</code> functionality of MS SQL</p> http://stackoverflow.com/questions/248340/config-values-in-db-or-file/248372#248372 7 Answer by Ilya Kochetov for Config values in DB or File? Ilya Kochetov 2008-10-29T20:51:21Z 2008-10-29T20:51:21Z <p>It's easy and convenient to create a robust interface to edit the values in the database.</p> <p>It's less easy to create a good one for the config file.</p> <p>So I would usually you want to store everything which you would like your users/administrators to be able to edit later in the database. Everything which only needs to be touched during serious changes like re-installation etc is better off in the config file.</p> http://stackoverflow.com/questions/246760/how-do-i-tag-a-database-component-in-uml/246771#246771 1 Answer by Ilya Kochetov for How do I tag a database component in UML? Ilya Kochetov 2008-10-29T13:21:06Z 2008-10-29T13:21:06Z <p>Just use the <code>&lt;&lt;database&gt;&gt;</code> for the component diagram.</p> <p>For a more detailed information check out this article: <a href="http://www.sparxsystems.com.au/resources/uml_datamodel.html" rel="nofollow">http://www.sparxsystems.com.au/resources/uml_datamodel.html</a></p> http://stackoverflow.com/questions/1460959/multiple-db-connections-vs-centralized-redundant-db/1461034#1461034 Comment by Ilya Kochetov on multiple db connections vs. centralized/redundant db Ilya Kochetov 2009-09-26T15:46:14Z 2009-09-26T15:46:14Z If it is an operational system you're after DW is not the way to go... a central information repository would still be very useful so you would not have to rely on any application to integrate the data for you. Using an orchestration server to load the data from various sources into a centralized storage might be the answer http://stackoverflow.com/questions/1460959/multiple-db-connections-vs-centralized-redundant-db/1461034#1461034 Comment by Ilya Kochetov on multiple db connections vs. centralized/redundant db Ilya Kochetov 2009-09-23T07:34:27Z 2009-09-23T07:34:27Z @Tony: of course if you have time and resources to learn something yourself and are not afraid of experimenting it's better to do it instead of getting a consultant. Please be aware that DW IS different from a normal RDBMS and could be tricky to do right from the first time. The book you suggested IS good, however quite a lot of other books are not so caveat emptor http://stackoverflow.com/questions/1461168/program-algorithm-to-find-the-time-complexity-of-any-given-program/1461197#1461197 Comment by Ilya Kochetov on Program/algorithm to find the time complexity of any given program. Ilya Kochetov 2009-09-22T16:44:20Z 2009-09-22T16:44:20Z @S.Lott I've tried to improve my wording - I am not sure that the question was not about that http://stackoverflow.com/questions/1461168/program-algorithm-to-find-the-time-complexity-of-any-given-program/1461197#1461197 Comment by Ilya Kochetov on Program/algorithm to find the time complexity of any given program. Ilya Kochetov 2009-09-22T16:40:59Z 2009-09-22T16:40:59Z @S.Lott - yep, did not read the question through http://stackoverflow.com/questions/1425835/code-review-tools-to-work-with-sccs/1425853#1425853 Comment by Ilya Kochetov on Code review tools to work with SCCS? Ilya Kochetov 2009-09-19T15:21:16Z 2009-09-19T15:21:16Z @someguy: that it strange, FishEye does support Perl http://stackoverflow.com/questions/1425835/code-review-tools-to-work-with-sccs/1425853#1425853 Comment by Ilya Kochetov on Code review tools to work with SCCS? Ilya Kochetov 2009-09-15T14:39:09Z 2009-09-15T14:39:09Z not directly (what does) but look here (<a href="https://plugins.atlassian.com/search/by/crucible" rel="nofollow">plugins.atlassian.com/search/by/crucible</a>) - you could review changes to the file system, you could create your own plugin to work with sccs natively etc. At the end of the day, CLI for SCCS is not THAT different from some of the other source control tools http://stackoverflow.com/questions/1367057/flex-doing-useful-things-while-the-transition-effect-is-played/1370052#1370052 Comment by Ilya Kochetov on Flex: doing useful things while the transition effect is played Ilya Kochetov 2009-09-15T08:20:33Z 2009-09-15T08:20:33Z This is the best answer so far and I believe the question was not that good to start with :) I will close it now and accept your answer http://stackoverflow.com/questions/1378703/how-to-refactor-global-variables-out-of-your-code/1378752#1378752 Comment by Ilya Kochetov on How to refactor global variables out of your code. Ilya Kochetov 2009-09-04T14:01:24Z 2009-09-04T14:01:24Z That's one way of doing it http://stackoverflow.com/questions/1378313/iphone-is-it-worth-developing-an-application-to-support-the-os-2-2-anymore/1378351#1378351 Comment by Ilya Kochetov on iPhone: is it worth developing an application to support the OS 2.2 anymore? Ilya Kochetov 2009-09-04T11:18:07Z 2009-09-04T11:18:07Z great, thank you very much for the link http://stackoverflow.com/questions/1378313/iphone-is-it-worth-developing-an-application-to-support-the-os-2-2-anymore/1378394#1378394 Comment by Ilya Kochetov on iPhone: is it worth developing an application to support the OS 2.2 anymore? Ilya Kochetov 2009-09-04T11:11:16Z 2009-09-04T11:11:16Z very good answer, thank you http://stackoverflow.com/questions/1367057/flex-doing-useful-things-while-the-transition-effect-is-played/1370052#1370052 Comment by Ilya Kochetov on Flex: doing useful things while the transition effect is played Ilya Kochetov 2009-09-04T09:53:25Z 2009-09-04T09:53:25Z The page is rendered but I would like to refresh a part of it every time it opens (price box) http://stackoverflow.com/questions/1367057/flex-doing-useful-things-while-the-transition-effect-is-played/1370052#1370052 Comment by Ilya Kochetov on Flex: doing useful things while the transition effect is played Ilya Kochetov 2009-09-03T09:31:16Z 2009-09-03T09:31:16Z not exactly what I was looking for but thank you for a good answer http://stackoverflow.com/questions/1339594/inserting-into-a-view-in-sql-server/1339620#1339620 Comment by Ilya Kochetov on inserting into a view in SQL server Ilya Kochetov 2009-08-27T08:26:47Z 2009-08-27T08:26:47Z Yes, there are strategies. I've updated my answer with the MSDN links. This article <a href="http://www.craigsmullins.com/cnr_0299b.htm" rel="nofollow">craigsmullins.com/cnr_0299b.htm</a> might help as well http://stackoverflow.com/questions/1336036/matching-heights-of-inline-elements Comment by Ilya Kochetov on Matching heights of inline elements Ilya Kochetov 2009-08-26T16:37:33Z 2009-08-26T16:37:33Z did you want to say 'heights' in your title? Do you want me to fix the title for you? http://stackoverflow.com/questions/1334237/carmen-robotics Comment by Ilya Kochetov on Carmen Robotics Ilya Kochetov 2009-08-26T12:08:51Z 2009-08-26T12:08:51Z I suppose you're talking about <a href="http://carmen.sourceforge.net/" rel="nofollow">carmen.sourceforge.net</a>? It would be useful to specify this in your question