User Rytmis - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T21:28:30Z http://stackoverflow.com/feeds/user/266 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1927400/design-time-moving-of-a-child-control-owned-by-a-composite-user-control 0 Design-time moving of a child control owned by a composite user control Rytmis 2009-12-18T10:21:25Z 2009-12-18T10:53:03Z <p>Hi,</p> <p>I have a Windows Forms user control, which (for various reasons irrelevant to this issue) are exposed in the designer, much like the panels in a split panel. Most everything works nicely, except for dragging the control. The child controls are created by the user control, and it does not accept new children. The intent is only to allow the properties of the predefined children to be edited.</p> <p>Since the control allows the child controls to be designed, they can also be selected in the designer (this is a good thing, and I don't want to change this). However, they can not and should not be moved individually.</p> <p>What I would like to happen is that when a child control is dragged in the designer, the drag actually moves the parent.</p> <p>I've been skimming the documentation on control designers, but nothing popped up that would be simple or obvious.</p> http://stackoverflow.com/questions/1926890/how-to-start-a-process-and-then-pause-it-immediately/1927136#1927136 0 Answer by Rytmis for How to start a process and then pause it immediately? Rytmis 2009-12-18T09:07:17Z 2009-12-18T09:07:17Z <p>You can also add a call to</p> <pre><code>System.Diagnostics.Debugger.Break(); </code></pre> <p>in the code. It will suspend the program and then ask you to choose the debugger you want to use. You can then attach to a running Visual Studio instance. If you're already running from a debugger, it will simply break as if it would have hit a breakpoint.</p> http://stackoverflow.com/questions/253063/disable-but-not-uninstall-resharper-4-x-onwards/253167#253167 25 Answer by Rytmis for Disable, but not uninstall Resharper 4.x onwards Rytmis 2008-10-31T11:07:18Z 2009-12-15T01:02:34Z <p>You can disable ReSharper using the Visual Studio Add-In Manager (remove the check from check box on the left):</p> <p><img src="http://img137.imageshack.us/img137/8628/addinmanagerpz8.png" alt="Add-in manager"></p> <p>Caveat: only tested with VS 2005 and R# 3.1, but I see no reason why it wouldn't work with other versions too. :)</p> <p>In R5, <a href="http://stackoverflow.com/questions/253063/disable-but-not-uninstall-resharper-4-x/1900927#1900927">this is how you can suspend</a> ReSharper from the Tools > Options > Resharper <img src="http://img697.imageshack.us/img697/2126/resharpersuspend.png" alt="alt text"></p> http://stackoverflow.com/questions/1807285/odp-ado-net-driver-returns-decimal-with-extra-zero-in-string-representation 1 ODP ADO.NET driver returns decimal with extra zero in string representation Rytmis 2009-11-27T07:42:06Z 2009-11-27T07:55:25Z <p>Hello,</p> <p>Today's problem is as follows: we have a table in an Oracle database. The table contains a field that is of the type Number(18, 3).</p> <p>On the surface, both saving and loading data from said field work perfectly. However, further inspection reveals, that numbers that have three decimal digits in them, e.g. 500.001, are read from the database in such a way that the <em>string representation</em> of the decimal has a fourth, zero digit (e.g. 500.0010). This seems to happen whenever the third decimal digit is nonzero.</p> <p>For math purposes, this is not a problem. However, we have validators that verify the number of decimal digits in a decimal number by converting it to a string and then counting the number of decimal digits. Since this particular piece of data is defined to have at most three decimal digits, the extra zero causes a validation error.</p> <p>Since I can't change the validators, I'm left wondering if there is a clean way to get the decimal without the extra zero, apart from converting the number to a string, trimming the trailing zeroes and then re-parsing it? Or should I be doing something different altogether?</p> http://stackoverflow.com/questions/1802240/attribute-runat-is-not-a-valid-attribute-did-you-mean-content-or-target-h/1802260#1802260 1 Answer by Rytmis for Attribute "runat" is not a valid attribute. Did you mean "content" or "target"? How to solve this asp.net validation error Rytmis 2009-11-26T08:20:38Z 2009-11-26T08:20:38Z <p>Er... remove the attributes? They aren't valid HTML, and they're only meaningful when interpreted by ASP.NET.</p> http://stackoverflow.com/questions/1745559/sliksvn-windows-2008-server/1745595#1745595 1 Answer by Rytmis for SlikSVN + Windows 2008 Server Rytmis 2009-11-16T23:37:06Z 2009-11-17T14:27:08Z <p>Your SVN repository is at C:\dia\svn\repos, but you're setting up the server root to be C:\dialog? </p> <p>[Edit: OK, so that's fixed...]</p> <p>Let's take a look at this then:</p> <p>You're passing this as the <em>repository root</em>:<br> c:\dia\svn\repos</p> <p>But then you try to <em>connect to</em>: svn://xx.xx.xx.xx/dia/svn/repos</p> <p>Now, since your <em>repository root</em> is what you expose as the <em>root of your svn server</em> and whatever you request for is appended to that, you're now actually requesting for c:\dia\svn\repos\dia\svn\repos</p> <p>Instead, you probably want to try just this:<br> svn://xx.xx.xx.xx/</p> http://stackoverflow.com/questions/1643722/using-yield-return-to-return-objects-that-inherit-form-a-base-type/1643865#1643865 0 Answer by Rytmis for Using yield return to return objects that inherit form a base type Rytmis 2009-10-29T13:46:38Z 2009-10-29T13:46:38Z <p>Looks like you're trying to add <code>Media</code> instances into a <code>Video</code> collection, and it blows up because one or more of them is a <code>Photo</code> -- you're trying to add a photo to a video collection. The error is in your client code, not in the generated enumerator.</p> http://stackoverflow.com/questions/1643399/how-to-dynamically-retrieve-the-page-url-within-flash-using-swfobject-javascrip/1643445#1643445 0 Answer by Rytmis for How to dynamically retrieve the page URL within Flash using swfobject / JavaScript Rytmis 2009-10-29T12:42:11Z 2009-10-29T13:17:01Z <p>According to W3C, <a href="http://www.w3schools.com/jsref/prop%5Fdoc%5Furl.asp" rel="nofollow">document.URL</a> should do the trick:</p> <pre><code>flashvars.pageURL = document.URL; </code></pre> http://stackoverflow.com/questions/1626270/is-this-normal-development-procedure/1626363#1626363 0 Answer by Rytmis for Is This Normal Development Procedure? Rytmis 2009-10-26T18:06:09Z 2009-10-26T18:06:09Z <p>The role of the project manager is not to know the technology, but they definitely should have a finger on the pulse of the project, so to speak. The real project management job is not to control the project, but rather to <em>enable</em> it. Either way, from your description, looks like yours isn't doing such a great job at it.</p> <p>The other extreme is a process-heavy organization where meetings and committees decide everything, and all the real communication, if it exists at all, happens through side channels.</p> <p>The ideal world lies somewhere in between.</p> <p>Your project manager should not be <em>too</em> concerned with how you're doing things. Since they have no qualifications, the best they can do is connect you with someone who does. When they can't verify that you're building the thing right, they should at the very least ensure you're building the right thing. Even if it's for internal use, you still have a customer, and no communication with the customer spells bad news to me. :)</p> <p>If your PM is not concerned about the issue, you could try to do something yourself. For example, ask the PM to connect you with a would-be end user of the application. Extract bits of your application and give them to the user to play with -- just make sure the bits you give them don't look or feel too finished.</p> <p>If you can't change things, take this as a learning experience. Make sure next time you're up for a project, you know the things that went wrong last time, and try to mitigate them from the start.</p> <p>And finally, if your bosses tell you this is a "more agile way" of working, punch them in the face. Agile is, or <em>should</em> be, synonymous with discipline, not complete lack thereof.</p> <p>Good luck!</p> http://stackoverflow.com/questions/1590012/how-to-make-doctrine-use-a-mysql-timestamp-column-instead-of-datetime 0 How to make Doctrine use a MySQL TIMESTAMP column instead of DATETIME? Rytmis 2009-10-19T17:28:41Z 2009-10-21T01:46:07Z <p>I'm looking for a way to use the MySQL <code>timestamp</code> column type in Doctrine 1.0. I was able to get it working by modifying <code>Doctrine_DataDict_Mysql</code> to return <code>TIMESTAMP</code> instead of <code>DATETIME</code> when the specified type is <code>timestamp</code>, but I'm fairly certain that it's not the right way, and it will probably break at some point.</p> <p>Doctrine 2.0 seems to come with a built-in type mapping facility, but I can't find an equivalent mechanism in 1.0, and I'm kind of stuck with it for now. </p> <p>Any pointers would be much appreciated.</p> http://stackoverflow.com/questions/1596589/why-are-asynchronous-processes-not-called-synchronous/1596625#1596625 1 Answer by Rytmis for Why are Asynchronous processes not called Synchronous? Rytmis 2009-10-20T18:55:04Z 2009-10-20T18:55:04Z <p>Your second definition is more helpful here:</p> <pre><code>2. [...] having each operation started only after the preceding operation is completed. </code></pre> <p>When you make an asynchronous call, that call might not be completed before the next operation is started. When the call is synchronous, it will be.</p> http://stackoverflow.com/questions/1579850/is-it-possible-to-change-files-during-checkout-from-svn/1579868#1579868 2 Answer by Rytmis for Is it possible to change files during checkout from SVN? Rytmis 2009-10-16T19:13:35Z 2009-10-16T19:13:35Z <p>Of all the times you could think up, why would <em>checkout</em> be the one when you would want to do this? Obviously you want all your source files to contain a copyright notice -- why not write a <a href="http://wordaligned.org/articles/a-subversion-pre-commit-hook" rel="nofollow">pre-commit hook</a> script that checks the file header and errors out if it's wrong? Provide file templates for developers, so it's easy to get it right the first time and easy to copy the copyright notice to the offending files, and you're set.</p> http://stackoverflow.com/questions/1562020/restricting-the-use-of-back-button-without-javascript/1562047#1562047 1 Answer by Rytmis for Restricting the use of back button without JavaScript Rytmis 2009-10-13T18:21:36Z 2009-10-13T18:21:36Z <p>Keep the navigation state on the server side, and if the user hits a page that doesn't correspond with a next/prev click, redirect them to where they were supposed to be.</p> http://stackoverflow.com/questions/1558849/same-method-that-takes-a-different-parameter-type/1558878#1558878 6 Answer by Rytmis for Same method that takes a different parameter type? Rytmis 2009-10-13T08:23:36Z 2009-10-13T08:53:33Z <pre><code>public List&lt;List&lt;T&gt;&gt; BatchResultsList&lt;T&gt;(List&lt;T&gt; objectList) { foreach(T t in objectList) { // do something with T. // note that since the type of T isn't constrained, the compiler can't // tell what properties and methods it has, so you can't do much with it // except add it to a collection or compare it to another object. } } </code></pre> <p>and if you need to limit the type of T so that you'll only process specific sorts of objects, make both TestResult and ResultLinks implement an interface, say, IResult. Then:</p> <pre><code>public interface IResult { void DoSomething(); } public class TestResult : IResult { ... } public class ResultLinks : IResult { ... } public List&lt;List&lt;T&gt;&gt; BatchResultsList&lt;T&gt;(List&lt;T&gt; objectList) where T : IResult { foreach(T t in objectList) { t.DoSomething(); // do something with T. // note that since the type of T is constrained to types that implement // IResult, you can access all properties and methods defined in IResult // on the object t here } } </code></pre> <p>When you call the method, you can of course omit the type parameter, since it can be inferred:</p> <pre><code>List&lt;TestResult&gt; objectList = new List&lt;TestResult&gt;(); List&lt;List&lt;TestResult&gt;&gt; list = BatchResultsList(objectList); </code></pre> http://stackoverflow.com/questions/1543522/why-do-we-prefer-to-operator-in-c/1543542#1543542 11 Answer by Rytmis for why do we prefer ? to ?? operator in c#? Rytmis 2009-10-09T12:45:28Z 2009-10-09T12:45:28Z <p>The ?? operator (also known as the <a href="http://msdn.microsoft.com/en-us/library/ms173224.aspx" rel="nofollow">null-coalescing operator</a>) is less known than the ternary operator, as it made its debut with .NET 2.0 and Nullable Types. Reasons for not using it probably include not begin aware that it exists, or being more familiar with the ternary operator.</p> <p>That said, checking for null is not the only thing the ternary operator is good for, so it's not a replacement for it as such, more like a better alternative for a very specific need. :)</p> http://stackoverflow.com/questions/1543372/svn-ignore-on-repo-export/1543434#1543434 2 Answer by Rytmis for SVN ignore on repo export Rytmis 2009-10-09T12:16:57Z 2009-10-09T12:16:57Z <p>Sounds like you're trying to make svn do something that would more properly be done using a build automation system. Depending on your environment and goals, Make, Ant, NAnt or somesuch might be appropriate. In simpler cases, a shell script will do just as well.</p> http://stackoverflow.com/questions/1543044/how-to-do-dynamic-allocation-of-task-to-threads-in-java/1543069#1543069 0 Answer by Rytmis for How to do Dynamic allocation of task to Threads in java? Rytmis 2009-10-09T10:44:23Z 2009-10-09T10:44:23Z <p>I suppose you could make your tasks <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Runnable.html" rel="nofollow">Runnable</a> and use a <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/ThreadPoolExecutor.html" rel="nofollow">ThreadPoolExecutor</a> to run them.</p> http://stackoverflow.com/questions/1542986/why-dont-analysis-tools-apply-refactorings/1543056#1543056 3 Answer by Rytmis for Why don't analysis tools apply refactorings? Rytmis 2009-10-09T10:42:00Z 2009-10-09T10:42:00Z <p>Possibly because there isn't always -- or even most of the time -- a single, correct choice of refactoring to make. There usually are dozens of ways to refactor code so, that the amount of warnings will be reduced, but the one that is actually right for the project is something a developer should decide.</p> http://stackoverflow.com/questions/2483/casting-newtype-vs-object-as-newtype/2487#2487 49 Answer by Rytmis for Casting: (NewType) vs. Object as NewType Rytmis 2008-08-05T15:44:46Z 2009-10-09T05:33:21Z <p>The former will throw an exception if the source type can't be cast to the target type. The latter will result in sc2 being a null reference, but no exception.</p> <p>[Edit]</p> <p>My original answer is certainly the most pronounced difference, but as Eric Lippert <a href="http://blogs.msdn.com/ericlippert/archive/2009/10/08/what-s-the-difference-between-as-and-cast-operators.aspx" rel="nofollow">points out</a>, it's not the only one. Other differences include:</p> <ul> <li>You can't use the 'as' operator to cast to a type that doesn't accept 'null' as a value</li> <li>You can't use 'as' to <em>convert</em> things, like numbers to a different representation (float to int, for example).</li> </ul> <p>And finally, using 'as' vs. the cast operator, you're also saying "I'm not sure if this will succeed." </p> http://stackoverflow.com/questions/1538043/implement-math-functions-in-custom-c-type/1538067#1538067 2 Answer by Rytmis for Implement math functions in custom C# type? Rytmis 2009-10-08T14:11:13Z 2009-10-08T14:11:13Z <p>What you're looking for is not an interface, but <a href="http://msdn.microsoft.com/en-us/library/aa288467%28VS.71%29.aspx" rel="nofollow">Operator Overloading</a>. Basically, you define a static method like so:</p> <pre><code>public static MyClass operator+(MyClass first, MyClass second) { // This is where you combine first and second into a meaningful value. } </code></pre> <p>after which you can add MyClasses together:</p> <pre><code>MyClass first = new MyClass(); MyClass second = new MyClass(); MyClass result = first + second; </code></pre> http://stackoverflow.com/questions/1537931/can-any-one-suggest-me-how-to-resolve-this-problem-error-code-1064-in-my-sql-5/1537986#1537986 2 Answer by Rytmis for Can any one suggest me how to resolve this problem: Error Code : 1064 in MY SQL 5.5 ver Rytmis 2009-10-08T14:00:31Z 2009-10-08T14:00:31Z <p>How about this:</p> <pre><code>DELIMITER $$ DROP FUNCTION IF EXISTS tonumeric $$ CREATE FUNCTION tonumeric() returns numeric BEGIN declare num numeric; set num = to_number('12'); return num; END$$ DELIMITER ; </code></pre> <p>Delimiter is a special command, in that you shouldn't terminate it with a ; -- you're actually setting the delimiter to "$$;", not "$$".</p> http://stackoverflow.com/questions/1519871/datagridview-column-editor-empties-string-properties-of-a-custom-column 0 DataGridView column editor empties string properties of a custom column Rytmis 2009-10-05T12:45:22Z 2009-10-06T05:21:37Z <p>Hi,</p> <p>I've implemented a custom lookup column, but I'm encountering the damnedest thing with the VS designer. The column has four string properties in addition to the standard column props. Now, if I select the column from the component list in the property grid, then set the properties, everything seems to work fine. However, the moment I open up the "edit columns" designer view for the DataGridView, the string properties are emptied.</p> <p>While a workaround is to not use the column editor, I'm bound to do that at some point, and then wonder what the heck happened to my data. So, what might I be doing so wrong as to cause this? </p> <p>Edit: Correction: the properties get emptied even if I don't use the DataGridView column editor. :(</p> http://stackoverflow.com/questions/1519871/datagridview-column-editor-empties-string-properties-of-a-custom-column/1523730#1523730 0 Answer by Rytmis for DataGridView column editor empties string properties of a custom column Rytmis 2009-10-06T05:21:37Z 2009-10-06T05:21:37Z <p>These days, it seems every SO question I post is based on a false assumption. This time, the culprit was neither my code nor the designer, but an extender control on the same form.</p> http://stackoverflow.com/questions/1453812/how-to-avoid-a-stack-overflow/1453827#1453827 1 Answer by Rytmis for How to avoid a stack overflow? Rytmis 2009-09-21T10:25:53Z 2009-09-21T10:25:53Z <p>If recursion causes a stack overflow, then the problem is not related to compiling the class -- a recursive function needs a terminating condition, because <a href="http://stackoverflow.com/questions/491376/why-doesnt-net-c-eliminate-tail-recursion">C# doesn't (usually) optimize tail calls</a>.</p> http://stackoverflow.com/questions/1453448/performance-issue-with-apache-php-and-symfony/1453695#1453695 0 Answer by Rytmis for Performance issue with Apache, PHP and Symfony~ Rytmis 2009-09-21T09:52:30Z 2009-09-21T09:52:30Z <p>You should use a <a href="http://www.xdebug.org/docs/profiler" rel="nofollow">profiler</a> to find the hot spots in your code. It's hands down the best way to pinpoint the problems -- anything else, and you're just guessing.</p> http://stackoverflow.com/questions/1437640/using-mono-to-recognize-executable-files-in-linux/1437729#1437729 1 Answer by Rytmis for Using Mono to recognize executable files in Linux? Rytmis 2009-09-17T09:33:33Z 2009-09-17T13:40:39Z <p>Yes, <a href="http://www.alexandre-gomes.com/?p=92" rel="nofollow">we can</a>, but I don't know of a common .NET class that does it. You could look at the mono sources. :)</p> <p>Edit:</p> <p>The original link refers to a helper application, which can't be found. However, the Mono Project page has something to say about <a href="http://www.mono-project.com/Guide%3ARunning%5FMono%5FApplications" rel="nofollow">binfmt support</a> too, and no helper app seems to be required.</p> http://stackoverflow.com/questions/1437180/how-to-get-started-with-zend-framework-developemt/1437208#1437208 0 Answer by Rytmis for How to get started with Zend Framework developemt Rytmis 2009-09-17T07:21:19Z 2009-09-17T07:21:19Z <p>You probably don't want to have a single Zend framework instance for your entire server, as it's possible that different applications will want to use different versions. Although in your case it probably doesn't matter much. :)</p> <p>As for getting started with Zend, there's a perfectly good <a href="http://framework.zend.com/docs/quickstart" rel="nofollow">tutorial</a> on the Zend site you can read.</p> http://stackoverflow.com/questions/1388917/esc-key-event-not-getting-fired-in-winforms/1388939#1388939 3 Answer by Rytmis for Esc key event not getting fired in winforms Rytmis 2009-09-07T11:35:25Z 2009-09-07T11:44:48Z <p>If the focus is in a child control, you need to set</p> <pre><code>frm2.KeyPreview = true; </code></pre> <p>to handle key events in the form's event handler.</p> <p>or in the load event handler or constructor of the form:</p> <pre><code>this.KeyPreview = true; </code></pre> http://stackoverflow.com/questions/1388780/im-new-to-c-can-someone-explain-why-the-size-of-this-string-can-change/1388838#1388838 3 Answer by Rytmis for I'm new to C, can someone explain why the size of this string can change? Rytmis 2009-09-07T11:10:58Z 2009-09-07T11:18:59Z <p>What you have to understand is that C doesn't actually have strings, it has character arrays. Moreover, the character arrays don't have associated length information -- instead, string length is determined by iterating over the characters until a null byte is encountered. This implies, that every char array should be at least strlen + 1 characters in length.</p> <p>C doesn't perform array bounds checking. This means that the functions you call blindly trust you to have allocated enough space for your strings. When that isn't the case, you may end up writing beyond the bounds of the memory you allocated for your string. For a stack allocated char array, you'll overwrite the values of local variables. For heap-allocated char arrays, you may write beyond the memory area of your application. In either case, the best case is you'll error out immediately, and the worst case is that things <em>appear</em> to be working, but actually aren't.</p> <p>As for the assignment, you can't write something like this:</p> <pre><code>char *str; sprintf(str, ...); </code></pre> <p>and expect it to work -- str is an uninitialized pointer, so the value is "not defined", which in practice means "garbage". Pointers are memory addresses, so an attempt to write to an uninitialized pointer is an attempt to write to a random memory location. Not a good idea. Instead, what you want to do is something like:</p> <pre><code>char *str = malloc(sizeof(char) * (string length + 1)); </code></pre> <p>which allocates n+1 characters worth of storage and stores the pointer to that storage in str. Of course, to be safe, you should check whether or not malloc returns null. And when you're done, you need to call free(str).</p> <p>The reason your code works with the array syntax is because the array, being a local variable, is automatically allocated, so there's actually a free slice of memory there. That's (usually) not the case with an uninitialized pointer.</p> <p>As for the question of how the size of a string can change, once you understand the bit about null bytes, it becomes obvious: all you need to do to change the size of a string is futz with the null byte. For example:</p> <pre><code>char str[] = "Foo bar"; str[1] = (char)0; // I'd use the character literal, but this editor won't let me </code></pre> <p>At this point, the length of the string as reported by strlen will be exactly 1. Or:</p> <pre><code>char str[] = "Foo bar"; str[7] = '!'; </code></pre> <p>after which strlen will probably crash, because it will keep trying to read more bytes from beyond the array boundary. It might encounter a null byte and then stop (and of course, return the wrong string length), or it might crash.</p> <p>I've written all of one C program, so expect this answer to be inaccurate and incomplete in a number of ways, which will undoubtedly be pointed out in the comments. ;-)</p> http://stackoverflow.com/questions/1388511/how-to-avoid-repeating-similar-code-in-c/1388710#1388710 1 Answer by Rytmis for How to avoid repeating similar code in C# Rytmis 2009-09-07T10:43:02Z 2009-09-07T10:43:02Z <p>You could implement lazy initialization in a manner similar to this:</p> <pre><code> public class Lazy&lt;T&gt; where T : new() { private T _value; private bool _isInitialized; private T GetValue() { if (!_isInitialized) { _value = new T(); _isInitialized = true; } return _value; } public static implicit operator T (Lazy&lt;T&gt; t) { return t.GetValue(); } } </code></pre> <p>which would allow you to write code like this:</p> <pre><code> private Lazy&lt;ComplexType&gt; _lazyCt = new Lazy&lt;ComplexType&gt;(); public ComplexType LazyCt { get { return _lazyCt; } } </code></pre> <p>The specifics of the initialization are irrelevant, I wrote it like this to show that you can make it transparently convertible to the non-lazy version, and perform the initialization on the first conversion. :) </p> http://stackoverflow.com/questions/1927400/design-time-moving-of-a-child-control-owned-by-a-composite-user-control/1927473#1927473 Comment by Rytmis on Design-time moving of a child control owned by a composite user control Rytmis 2009-12-18T10:51:55Z 2009-12-18T10:51:55Z Thanks, but I think you might have misunderstood the situation a bit. :) The child controls are created by the parent control, and the control does not support adding child controls -- it merely allows the properties of the children to be edited. I'm not quite seeing how intercepting the Changed/Removed events will help me here. http://stackoverflow.com/questions/225772/compare-two-mysql-databases/225817#225817 Comment by Rytmis on Compare two MySQL databases Rytmis 2009-12-06T10:15:43Z 2009-12-06T10:15:43Z Red Gate tools don't seem to support anything other than SQL Server. http://stackoverflow.com/questions/1807285/odp-ado-net-driver-returns-decimal-with-extra-zero-in-string-representation/1807306#1807306 Comment by Rytmis on ODP ADO.NET driver returns decimal with extra zero in string representation Rytmis 2009-11-27T08:01:28Z 2009-11-27T08:01:28Z That looks like it will work, yes. I was sort of hoping there would be a magical way to tell the driver to get me the value the way I want it, so I could avoid doing that. But unless such a way turns up, I'll probably pick this option. :-) http://stackoverflow.com/questions/915426/why-cant-i-edit-the-values-in-my-datagridview-even-though-its-not-set-to-readon/915430#915430 Comment by Rytmis on Why can't I edit the values in my DataGridView, even though its not set to ReadOnly? Rytmis 2009-11-12T11:00:29Z 2009-11-12T11:00:29Z +1 I wish I had searched SO in the morning. This one took me hours of banging my head against the wall before I figured it out. http://stackoverflow.com/questions/1643399/how-to-dynamically-retrieve-the-page-url-within-flash-using-swfobject-javascrip/1643445#1643445 Comment by Rytmis on How to dynamically retrieve the page URL within Flash using swfobject / JavaScript Rytmis 2009-11-01T12:24:13Z 2009-11-01T12:24:13Z I suppose that depends on the browser. I tested document.URL in Firefox and it worked. :) http://stackoverflow.com/questions/1643399/how-to-dynamically-retrieve-the-page-url-within-flash-using-swfobject-javascrip/1643445#1643445 Comment by Rytmis on How to dynamically retrieve the page URL within Flash using swfobject / JavaScript Rytmis 2009-10-29T13:16:23Z 2009-10-29T13:16:23Z Don't put it in quotes. flashvars.pageURL = document.URL; http://stackoverflow.com/questions/1630321/are-all-final-class-immutable/1630334#1630334 Comment by Rytmis on Are all final class immutable? Rytmis 2009-10-27T12:01:02Z 2009-10-27T12:01:02Z there is the &quot;final&quot; keyword for fields and variables -- but then, it doesn't make the object immutable, just the reference. http://stackoverflow.com/questions/1626263/enum-flags-in-javascript/1626284#1626284 Comment by Rytmis on Enum flags in JavaScript Rytmis 2009-10-26T18:12:37Z 2009-10-26T18:12:37Z Shouldn't you use | and &amp; (bitwise OR and AND instead of boolean)? http://stackoverflow.com/questions/1590012/how-to-make-doctrine-use-a-mysql-timestamp-column-instead-of-datetime/1598327#1598327 Comment by Rytmis on How to make Doctrine use a MySQL TIMESTAMP column instead of DATETIME? Rytmis 2009-10-21T08:50:12Z 2009-10-21T08:50:12Z You're probably right. I'll take a look at the test cases, and try hitting the IRC channel. Thanks. :) http://stackoverflow.com/questions/1590012/how-to-make-doctrine-use-a-mysql-timestamp-column-instead-of-datetime Comment by Rytmis on How to make Doctrine use a MySQL TIMESTAMP column instead of DATETIME? Rytmis 2009-10-20T04:17:52Z 2009-10-20T04:17:52Z Because my app is not the only app accessing the database, so while the actAs Timestampable behaviour would make automatic time stamping work for my app, a TIMESTAMP column would make it work for all apps (MySQL updates TIMESTAMP columns automatically). http://stackoverflow.com/questions/1558849/same-method-that-takes-a-different-parameter-type/1558878#1558878 Comment by Rytmis on Same method that takes a different parameter type? Rytmis 2009-10-13T08:49:21Z 2009-10-13T08:49:21Z What do you mean you can't type 'T' in your project? Did you notice that I corrected my answer and amended the method signature to read BatchResultsList&lt;T&gt;? I forgot that when I first posted it. And yes, foreach(T result in objectList) is exactly the syntax for iterating the items. However, if you want to actually <i>do</i> something with them, you need to use a constraint to tell the compiler f.ex. that &quot;every T must be IResult&quot;, so you can use T as if it was an IResult. http://stackoverflow.com/questions/1543044/how-to-do-dynamic-allocation-of-task-to-threads-in-java/1543068#1543068 Comment by Rytmis on How to do Dynamic allocation of task to Threads in java? Rytmis 2009-10-09T10:45:02Z 2009-10-09T10:45:02Z Beaten to the punch by The Skeet... by four seconds. Curse you, Jon! :) http://stackoverflow.com/questions/1062714/can-i-prevent-the-clr-from-optimizing-away-debugging-information/1062776#1062776 Comment by Rytmis on Can I prevent the CLR from optimizing away debugging information? Rytmis 2009-10-08T06:04:39Z 2009-10-08T06:04:39Z I haven't run into this any more, so I'm assuming I botched something in the rebuild after changing these settings. :) http://stackoverflow.com/questions/1453448/performance-issue-with-apache-php-and-symfony/1453695#1453695 Comment by Rytmis on Performance issue with Apache, PHP and Symfony~ Rytmis 2009-09-21T11:19:28Z 2009-09-21T11:19:28Z Google suggests that oprofile is a Linux system profiler. If the problem is in the PHP application, your time is better spent using a PHP profiler, such as XDebug (which I linked to in my answer). http://stackoverflow.com/questions/1437640/using-mono-to-recognize-executable-files-in-linux/1437729#1437729 Comment by Rytmis on Using Mono to recognize executable files in Linux? Rytmis 2009-09-17T13:42:09Z 2009-09-17T13:42:09Z Haha, I just realized I parsed the original question entirely wrong! I read that as which file is (executable using mono) rather than which file is executable (using mono). Sorry!