Rytmis

4,897
Reputation
351 views

Registered User

Name Rytmis
Member for 1 year
Seen yesterday
Website
Location Espoo, Finland
Age 28
I've been working as a software dev since 2001. Lately I've focused on .NET work, but I've also had the opportunity to work with Java, PHP, Delphi, PL/SQL and probably a lot of things I've already forgotten.
Nov
27
comment ODP ADO.NET driver returns decimal with extra zero in string representation
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. :-)
Nov
27
asked ODP ADO.NET driver returns decimal with extra zero in string representation
Nov
26
answered Attribute “runat” is not a valid attribute. Did you mean “content” or “target”? How to solve this asp.net validation error
Nov
24
revised Function pointer as an argument
Fixed the function call in main()
Nov
18
accepted SlikSVN + Windows 2008 Server
Nov
17
revised SlikSVN + Windows 2008 Server
Added another attempt at explaining the issue.
Nov
16
answered SlikSVN + Windows 2008 Server
Nov
12
comment Why can’t I edit the values in my DataGridView, even though its not set to ReadOnly?
+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.
Nov
1
comment How to dynamically retrieve the page URL within Flash using swfobject / JavaScript
I suppose that depends on the browser. I tested document.URL in Firefox and it worked. :)
Oct
29
answered Using yield return to return objects that inherit form a base type
Oct
29
revised How to dynamically retrieve the page URL within Flash using swfobject / JavaScript
Added example.
Oct
29
comment How to dynamically retrieve the page URL within Flash using swfobject / JavaScript
Don't put it in quotes. flashvars.pageURL = document.URL;
Oct
29
answered How to dynamically retrieve the page URL within Flash using swfobject / JavaScript
Oct
29
revised How to dynamically retrieve the page URL within Flash using swfobject / JavaScript
Fixed typo from formatting
Oct
27
comment Are all final class immutable?
there is the "final" keyword for fields and variables -- but then, it doesn't make the object immutable, just the reference.
Oct
26
comment Enum flags in JavaScript
Shouldn't you use | and & (bitwise OR and AND instead of boolean)?
Oct
26
answered Is This Normal Development Procedure?
Oct
26
accepted Why don’t analysis tools apply refactorings?
Oct
21
comment How to make Doctrine use a MySQL TIMESTAMP column instead of DATETIME?
You're probably right. I'll take a look at the test cases, and try hitting the IRC channel. Thanks. :)
Oct
20
answered Why are Asynchronous processes not called Synchronous?
Oct
20
comment How to make Doctrine use a MySQL TIMESTAMP column instead of DATETIME?
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).
Oct
19
asked How to make Doctrine use a MySQL TIMESTAMP column instead of DATETIME?
Oct
19
revised Why does <button> make “GET” in Firefox/Chrome, but “POST” in Opera?
Added backticks around html tags
Oct
16
answered Is it possible to change files during checkout from SVN?
Oct
13
answered Restricting the use of back button without JavaScript
Oct
13
accepted Same method that takes a different parameter type?
Oct
13
revised Same method that takes a different parameter type?
Added interface to example
Oct
13
comment Same method that takes a different parameter type?
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<T>? 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 do something with them, you need to use a constraint to tell the compiler f.ex. that "every T must be IResult", so you can use T as if it was an IResult.
Oct
13
revised Same method that takes a different parameter type?
Added note about type inference
Oct
13
answered Same method that takes a different parameter type?
Oct
9
awarded  Nice Answer
Oct
9
accepted SVN ignore on repo export
Oct
9
answered why do we prefer ? to ?? operator in c#?
Oct
9
answered SVN ignore on repo export
Oct
9
comment How to do Dynamic allocation of task to Threads in java?
Beaten to the punch by The Skeet... by four seconds. Curse you, Jon! :)
Oct
9
answered How to do Dynamic allocation of task to Threads in java?
Oct
9
answered Why don’t analysis tools apply refactorings?
Oct
9
revised Casting: (NewType) vs. Object as NewType
Added more details
Oct
8
answered Implement math functions in custom C# type?
Oct
8
revised How to remove the border line for the header in the expander control in silverlight 3?
Fixed typo in title
Oct
8
answered Can any one suggest me how to resolve this problem: Error Code : 1064 in MY SQL 5.5 ver
Oct
8
revised Can any one suggest me how to resolve this problem: Error Code : 1064 in MY SQL 5.5 ver
Added tag, reformatted code
Oct
8
comment Can I prevent the CLR from optimizing away debugging information?
I haven't run into this any more, so I'm assuming I botched something in the rebuild after changing these settings. :)
Oct
8
accepted DataGridView column editor empties string properties of a custom column
Oct
6
answered DataGridView column editor empties string properties of a custom column
Oct
5
revised DataGridView column editor empties string properties of a custom column
added 105 characters in body
Oct
5
asked DataGridView column editor empties string properties of a custom column
Sep
21
comment Performance issue with Apache, PHP and Symfony~
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).
Sep
21
answered How to avoid a stack overflow?
Sep
21
answered Performance issue with Apache, PHP and Symfony~