User Oded - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T18:48:59Zhttp://stackoverflow.com/feeds/user/1583http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810640/css-wtf-form-button-not-horizontally-aligned-screwed-up-in-ff-but-ok-in-chrome/1810653#18106530Answer by Oded for CSS WTF : form button not horizontally aligned (screwed up in FF but OK in Chrome)Oded2009-11-27T21:15:04Z2009-11-27T21:15:04Z<p>Make sure the button has no padding/margin:</p>
<pre><code>style="height:40px;margin:0;padding:0"
</code></pre>
<p>Each browser does its own thing regarding padding and margin.</p>
<p>Find out more about <a href="http://developer.yahoo.com/yui/reset/" rel="nofollow">reset CSS</a> and why/how to use them.</p>
http://stackoverflow.com/questions/1810548/how-can-we-prevent-special-tag-inserted-into-textbox-in-asp-net/1810567#18105672Answer by Oded for how can we prevent special tag inserted into textbox ? in asp.netOded2009-11-27T20:41:00Z2009-11-27T21:09:39Z<p>There is a good reason for this behavior - to avoid <a href="http://en.wikipedia.org/wiki/Cross-site%5Fscripting" rel="nofollow">cross site scripting</a> attacks.</p>
<p>It <em>can</em> be disabled by adding this to your web.config:</p>
<pre><code><configuration>
<system.web>
<pages validateRequest="false" />
</system.web>
</configuration>
</code></pre>
<p>Read through <a href="http://www.asp.net/learn/whitepapers/request-validation/" rel="nofollow">this article</a> to find out why disabling request validation is a bad idea.</p>
<p>As CodeMonkey noted, you can also do this on a single page basis in the @page directive:</p>
<pre><code><%@ Page validateRequest="false" %>
</code></pre>
<p>Which would be a better approach, by not exposing <strong>all</strong> of your pages to xss.</p>
http://stackoverflow.com/questions/1764744/using-an-external-tool-for-c-builds-in-visual-studio/1810631#18106310Answer by Oded for Using an external tool for C# builds in Visual StudioOded2009-11-27T21:05:58Z2009-11-27T21:05:58Z<p>Edit your project file and update the CscToolPath keys to point to the directory containing your tool and add CscToolExe keys that holds the name of the directory:</p>
<pre><code><PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|.NET 3.5' ">
.
.
.
<CscToolPath>path\to\custom\tool\directory</CscToolPath>
<CscToolExe>path\to\custom\tool\directory</CscToolExe>
.
.
.
</PropertyGroup>
</code></pre>
<p>I have not tested this, and the CscToolExe key may cause problems, in which case I would simply rename the external tool executable to "csc.exe".</p>
http://stackoverflow.com/questions/1808251/two-decisons-just-one-button/1810551#18105511Answer by Oded for two decisons just one buttonOded2009-11-27T20:34:40Z2009-11-27T20:34:40Z<p>The problem is with this line of code:</p>
<pre><code>btnSearch.Attributes.Add("OnClick", "window.open('http://www.google.com/search?q=" + Regex.Replace(TextB.Text, " ", "+") + "','_blank');");
</code></pre>
<p>You are adding a client side OnClick, that will open the search in a new window (the _blank target).</p>
<p>If you do a:</p>
<pre><code>Response.Redirect("http://www.google.com/search?q=" + TextB.Text);
</code></pre>
<p>Things will work as you expect.</p>
http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill281What is the single most effective thing you did to improve your programming skills?Oded2008-09-16T20:07:25Z2009-11-23T16:59:21Z
<p>Looking back at my career and life as a programmer, there were plenty of different ways I improved my programming skills - reading code, writing code, reading books, listening to podcasts, watching screencasts and more.</p>
<p>My question is: What is the most effective thing you have done that improved your programming skills? What would you recommend to others that want to improve?</p>
<p>I do expect varied answers here and no single "one size fits all" answer - I would like to know what worked for different people.</p>
<p><b>Edit:</b> Wow - what great answers! Keep 'em coming people!!!</p>
http://stackoverflow.com/questions/52764/xaml-to-svg4XAML to SVG?Oded2008-09-09T19:59:10Z2009-11-05T16:42:09Z
<p>How would you go about converting XAML to SVG and vice versa?</p>
<p>My initial approach it to use xslt to map the different elements and attributes, but I don't know enough about both syntaxes to even guess about the plausibility of such an approach.</p>
http://stackoverflow.com/questions/43434/how-to-improve-problem-solving-skills12How to improve problem solving skills?Oded2008-09-04T09:55:39Z2009-10-26T08:02:19Z
<p>I am always looking for ways to improve my programming skills, and one of the most important of those is problems solving. </p>
<p>This <a href="http://beta.stackoverflow.com/questions/13289/can-you-share-your-secrets-or-best-practices-for-problem-solving" rel="nofollow">question</a> addresses some techniques people use for problem solving, but not as much how they aquires the skill and improve on it.</p>
<p>One answer <a href="http://beta.stackoverflow.com/questions/13289/can-you-share-your-secrets-or-best-practices-for-problem-solving#13380" rel="nofollow">Links</a> to several books on the subject, which for me is one of the steps in getting there.</p>
<p>What other books and techniques can you recommend for improving problem solving skills?</p>
http://stackoverflow.com/questions/1584640/md5-code-kata-and-bdd0MD5 code kata and BDDOded2009-10-18T11:23:55Z2009-10-20T03:09:12Z
<p>I was thinking to implement MD5 as a code kata and wanted to use BDD to drive the design (I am a BDD newb).</p>
<p>However, the only test I can think of starting with is to pass in an empty string, and the simplest thing that will work is embedding the hash in my program and returning that.</p>
<p>The logical extension of this is that I end up embedding the hash in my solution for every test and switching on the input to decide what to return. Which of course will not result in a working MD5 program.</p>
<p>One of my difficulties is that there should only be one public function:</p>
<pre><code>public static string MD5(input byte[])
</code></pre>
<p>And I don't see how to test the internals.</p>
<p>Is my approach completely flawed or is MD5 unsuitable for BDD?</p>
http://stackoverflow.com/questions/42648/best-way-to-get-identity-of-inserted-row20Best way to get identity of inserted row?Oded2008-09-03T21:32:02Z2009-10-09T20:35:00Z
<p>What is the best way to get identity of inserted row?</p>
<p>I know about @@IDENTITY and IDENT_CURRENT and SCOPE_IDENTITY but don't understand the pros and cons attached to each.</p>
<p>Can someone please explain the differences and when I should be using each?</p>
http://stackoverflow.com/questions/923319/what-is-an-objectmother0What is an ObjectMother?Oded2009-05-28T21:35:24Z2009-10-02T13:09:21Z
<p>What is an ObjectMother and what are common usage scenarios for this pattern?</p>
http://stackoverflow.com/questions/1508443/whats-the-main-problem-of-windows-porting-banshee/1508498#15084980Answer by Oded for What's the main problem of Windows-porting Banshee?Oded2009-10-02T09:13:48Z2009-10-02T09:13:48Z<p>Not sure where you are getting your information from.</p>
<p>Banshee is a C# 3.0 app and according to <a href="http://banshee-project.org/download/development/" rel="nofollow">this page</a>, "XP, Vista, Server 2003, etc should all work.".</p>
http://stackoverflow.com/questions/1508462/asp-net-web-admin-tool-custom-database/1508484#15084841Answer by Oded for asp.net web admin tool custom databaseOded2009-10-02T09:10:53Z2009-10-02T09:10:53Z<p>At a guess, are any of the fields you have added defined as Not NULL and have no defaults?</p>
<p>If so, make sure you populate them in the code that addes a user.</p>
http://stackoverflow.com/questions/279190/how-can-i-get-a-collection-of-all-the-colors-in-system-drawing-color3How can I get a collection of all the colors in System.Drawing.Color?Oded2008-11-10T21:10:06Z2009-09-29T11:31:27Z
<p>How can I extract the list of colors in the System.Drawing.Color struct into a collection or array?</p>
<p>Is there a more efficient way of getting a collection of colors than using this struct as a base?</p>
http://stackoverflow.com/questions/42466/msdn-subscriptions-on-the-cheap16MSDN subscriptions on the cheap?Oded2008-09-03T20:11:32Z2009-08-28T07:28:23Z
<p>As a long time MS developer, I find MSDN to be an invaluable resource.</p>
<p>However, when tinkering at home I am not able to play with the best latest technologies and the different offerings coming from Redmond as I cannot justify paying such a hefty price for what is essentially a pastime.</p>
<p>The Express editions are great, but fall flat when trying to use the more advanced feature I am used to from the versions I use at work. I cannot get the latest betas and play with the new offerings, not legally, anyways.</p>
<p>Apart from getting an MVP, how would one go about getting an MSDN subscription for an acceptable price for a non professional environment?</p>
<p><strong>Edit:</strong> Yeah, I was aware of the Empower program, but was thought it was geared towards getting <em>commercial</em> software to market. If this is not the case, it appears like the way for me to go. Thanks!</p>
http://stackoverflow.com/questions/48224/how-to-use-webclient-in-a-secure-site5How to use webclient in a secure site?Oded2008-09-07T07:40:20Z2009-08-15T01:28:07Z
<p>I need to automate a process involving a website that is using a login form. I need to capture some data in the pages following the login page.</p>
<p>I know how to screen-scrape normal pages, but not those behind a secure site.</p>
<ol>
<li>Can this be done with the .NET WebClient class? </li>
<li>How would I automatically login?</li>
<li>How would I keep logged in for the other pages?</li>
</ol>
http://stackoverflow.com/questions/1241138/how-to-remove-duplicate-entries-from-visual-studio-web-project0How to remove duplicate entries from visual studio web project?Oded2009-08-06T20:14:16Z2009-08-07T07:08:41Z
<p>I am working in a large team with multiple branches and merges happening on a regular basis.</p>
<p>One thing that happens on regular basis is that web project files end up with duplicate entries for static content (.js, favicon.ico etc...).</p>
<p>I have two methods to removing the duplicates:</p>
<ol>
<li>Delete the item in the Project Explorer (which removes all entries as well as the on disk file), then get the file again from source control and add it back.</li>
<li>Unload the project file, look for the duplicates, remove them (hoping they are located near one another) then reloading the project.</li>
</ol>
<p>Both are tedious and I am not satisfied with them - do you have a better/faster/quicker method?</p>
http://stackoverflow.com/questions/1241138/how-to-remove-duplicate-entries-from-visual-studio-web-project/1243349#12433490Answer by Oded for How to remove duplicate entries from visual studio web project?Oded2009-08-07T07:08:41Z2009-08-07T07:08:41Z<p>The easiest way is to simply right click on the duplicate and "Exclude from Project". When refresing the project, the duplicate will be gone.</p>
http://stackoverflow.com/questions/1206788/puzzling-javascript-array-behavior/1224295#12242952Answer by Oded for Puzzling javascript array behaviorOded2009-08-03T19:54:29Z2009-08-03T19:54:29Z<p>In the first instance, you are declaring selectedItems as an array and then assigning to it.</p>
<p>In the second instance, you are assigning to it directly from the split method. </p>
<p>I can only assume that VS takes the array declaration as a hint to display the length property.</p>
http://stackoverflow.com/questions/1224198/what-causes-the-error-collection-was-modified-after-the-enumerator-was-instantia/1224213#12242135Answer by Oded for What causes the error "Collection was modified after the enumerator was instantiated"?Oded2009-08-03T19:35:46Z2009-08-03T19:47:54Z<p>You cannot change a collection while iterating over it (i.e. in a foreach).</p>
<p>So, adding or removing items from a collection while within the foreach block will cause this error.</p>
<p>As an error in web.config it might be that you are adding a duplicate key that is defined elsewhere, or that you are trying to change the config dynamically in your code.</p>
http://stackoverflow.com/questions/1219214/asp-net-authorization-what-does-the-and-mean/1219225#12192251Answer by Oded for ASp.NET Authorization what does the * and ? mean?Oded2009-08-02T16:33:11Z2009-08-02T16:33:11Z<p>The * is a wildcard meaning "everyone", ? means anonymous users.</p>
http://stackoverflow.com/questions/1217149/net-and-plugin-architectures/1217211#12172111Answer by Oded for .Net and plugin architecturesOded2009-08-01T18:46:28Z2009-08-01T18:46:28Z<p>If you are looking for plug-ins libraries in .NET, there are a couple of options I am aware of:</p>
<ul>
<li>From Microsoft there is <a href="http://mef.codeplex.com/" rel="nofollow">MEF</a></li>
<li>From Novell (Mono) there is <a href="http://www.mono-project.com/Mono.Addins" rel="nofollow">Mono.Addins</a></li>
</ul>
<p>Both are open source, so you can see how they went about creating a plug-in environment.</p>
http://stackoverflow.com/questions/1196341/why-cant-this-reference-be-resolved/1196584#11965842Answer by Oded for Why can't this reference be resolved?Oded2009-07-28T20:38:36Z2009-07-28T20:38:36Z<p>Is there a version of the assembly in the GAC or possibly on the $Path variable?</p>
http://stackoverflow.com/questions/1195618/alternative-design-pattern-to-observer-for-net/1195637#11956375Answer by Oded for Alternative design pattern to Observer for .NetOded2009-07-28T17:47:56Z2009-07-28T17:47:56Z<p>Can't you implement it via events/delegates? This is the standard way to implement the Observer pattern in C# and other .Net languages.</p>
http://stackoverflow.com/questions/1115698/how-to-compile-a-c-file-without-visual-studio/1115749#11157490Answer by Oded for How to compile a C file without visual studioOded2009-07-12T10:31:34Z2009-07-12T10:31:34Z<p>Lots of options out there. As mentioned by driis, there are lots of free c compilers available to download.</p>
<p>If you just want to compile code on a machine that has visual studio on it, microsoft offers several tools that allow command line use and project management:</p>
<ul>
<li>Invoke the ide from the command line. You can use <a href="http://msdn.microsoft.com/en-us/library/xee0c8y7.aspx" rel="nofollow">devenv.exe</a>.</li>
<li>Use <a href="http://msdn.microsoft.com/en-us/library/ms235639%28VS.90%29.aspx" rel="nofollow">cl.exe</a> directly (this is the c/c++ compiler and linker.</li>
<li>Microsoft offer a make tool (similar to the unix one) called <a href="http://msdn.microsoft.com/en-us/library/dd9y37ha.aspx" rel="nofollow">NMake</a>. Use this with makefiles for project management, in conjunction with cl.exe.</li>
</ul>
<p>Microsoft have reference documents for <a href="http://msdn.microsoft.com/en-us/library/f35ctcxw.aspx" rel="nofollow">command line building</a>.</p>
<p>Another options is <a href="http://monodevelop.com/" rel="nofollow">MonoDevelop</a> - an open source ide that understand visual studio project files.</p>
http://stackoverflow.com/questions/1114549/conversion-failed-when-converting-datetime-from-character-string/1114566#11145661Answer by Oded for Conversion failed when converting datetime from character stringOded2009-07-11T20:30:16Z2009-07-11T20:48:04Z<p>11/7/2009 is ambiguous - is that 11th of July or 7th of November?</p>
<p>SQL has no way to tell - and it depends on the defaults it has been setup with. It would be better to pass in the date in an unambiguous format:</p>
<pre><code>SELECT key FROM ubis WHERE MemberID = '144'
AND To >='11 July 2009 9:11:23 pm'
AND From <= '11 July 2009 9:11:23 pm'
</code></pre>
<p>Alternatively, use the correct conversion with the correct <a href="http://sql.dzone.com/news/custom-date-formatting-sql-ser" rel="nofollow">format code</a>, or a <a href="http://www.sql-server-helper.com/tips/date-formats.aspx" rel="nofollow">custom one</a>, as suggested by Zyphrax:</p>
<pre><code>SELECT key FROM ubis WHERE MemberID = '144'
AND To >= CONVERT(datetime, '11/7/2009 9:11:23 pm', 105)
AND From <= CONVERT(datetime, '11/7/2009 9:11:23 pm', 105)
</code></pre>
http://stackoverflow.com/questions/1097331/enumerate-with-return-type-other-than-string/1097355#10973550Answer by Oded for Enumerate with return type other than string?Oded2009-07-08T10:55:13Z2009-07-08T10:55:13Z<p>When confronted with this kind of problem I used structs with consts as public members:</p>
<pre><code>public struct FileExtensions
{
public const string ProcessingExtension = ".lck";
public const string ProcessedExtension = ".xml";
public const string FailedExtension = ".failed";
public const string CsvExtension = ".csv";
}
</code></pre>
http://stackoverflow.com/questions/1085934/how-to-connect-ms-access-database-from-a-network-in-vb-net-2005/1085970#10859701Answer by Oded for How to connect MS Access database from a network in vb.net 2005Oded2009-07-06T08:24:58Z2009-07-06T08:24:58Z<p>Apart from the fact that Access really shouldn't be used as a shared DB, you should be able to use direct file access. UNC paths should be enough:</p>
<pre><code>\\ServerName\path to .mdb
</code></pre>
http://stackoverflow.com/questions/1084543/blog-engines-for-asp-net-maybe-mvc-web-sites/1084558#10845582Answer by Oded for Blog engines for ASP.Net (maybe MVC) web sitesOded2009-07-05T18:15:07Z2009-07-05T18:21:50Z<p><a href="http://hanselman.com/blog" rel="nofollow">Scott Hanselman</a> created <a href="http://www.dasblog.info/" rel="nofollow">DasBlog</a> - it was created with hosting in mind, so works under medium trust and doesn't use a DB.</p>
<p>It is an WebForms app, not MVC, however. He runs his blog with it.</p>
http://stackoverflow.com/questions/1067662/net-java-which-one-is-better/1067671#10676710Answer by Oded for .Net & Java which one is better?Oded2009-07-01T07:07:07Z2009-07-01T07:07:07Z<p>Ha!</p>
<p>Though I suspect this question to be flame bait, here is my take:</p>
<p>Depends on so many things... what platforms are you supporting, what kind of software you are using.</p>
<p>You may as well ask which one is better - a Ford Mustang or a Volkswagen Beetle.</p>
http://stackoverflow.com/questions/997812/putting-date-in-front-of-xml-file-name/997840#9978400Answer by Oded for Putting date in front of xml file nameOded2009-06-15T19:12:26Z2009-06-15T19:12:26Z<p>Try something like this:</p>
<pre><code>string filePath = string.Format("G:\\project\\{0}tester.xml", Date.Now.ToString("DDMM"));
TextWriter WriteFileStream = new StreamWriter(filePath);
</code></pre>
http://stackoverflow.com/questions/1812159/in-asp-net-is-there-a-function-to-validate-an-email-address/1812162#1812162Comment by Oded on In asp.net is there a function to validate an email address?Oded2009-11-28T10:15:25Z2009-11-28T10:15:25ZOuch. Exception handling as flow control :(http://stackoverflow.com/questions/1810548/how-can-we-prevent-special-tag-inserted-into-textbox-in-asp-net/1810567#1810567Comment by Oded on how can we prevent special tag inserted into textbox ? in asp.netOded2009-11-27T21:11:23Z2009-11-27T21:11:23Z@CodeMonkey - added your refrain. Reduce the attack surface by only disabling a single page.http://stackoverflow.com/questions/1808251/two-decisons-just-one-button/1809457#1809457Comment by Oded on two decisons just one buttonOded2009-11-27T18:29:27Z2009-11-27T18:29:27Za value attribute value="a" for one button, value="b" for the other.http://stackoverflow.com/questions/1580023/installing-a-self-developed-windows-serviceComment by Oded on Installing a self-developed Windows ServiceOded2009-10-16T19:53:42Z2009-10-16T19:53:42ZDoes the user you are trying to install the service with have permissions to write to the Security event log?http://stackoverflow.com/questions/1498395/custom-event-logs-configuring-which-one-to-log-to/1501571#1501571Comment by Oded on Custom event logs - configuring which one to log to?Oded2009-10-01T05:23:29Z2009-10-01T05:23:29ZIf it were up to me, I would be using one of these as well, but I am not allowed.http://stackoverflow.com/questions/1224198/what-causes-the-error-collection-was-modified-after-the-enumerator-was-instantia/1224213#1224213Comment by Oded on What causes the error "Collection was modified after the enumerator was instantiated"?Oded2009-08-04T12:55:40Z2009-08-04T12:55:40ZAre you writing anything into the config file?http://stackoverflow.com/questions/48224/how-to-use-webclient-in-a-secure-site/1211312#1211312Comment by Oded on How to use webclient in a secure site?Oded2009-07-31T11:15:07Z2009-07-31T11:15:07ZPerhaps you should ask this as a new question, instead of an answer to an existinq question.http://stackoverflow.com/questions/1196341/why-cant-this-reference-be-resolved/1196584#1196584Comment by Oded on Why can't this reference be resolved?Oded2009-07-28T21:04:28Z2009-07-28T21:04:28ZTake a look at the fusion (.NET binder) logs. This may give you an idea.http://stackoverflow.com/questions/1130682/open-source-net-wikiComment by Oded on open source .Net wiki?Oded2009-07-15T10:48:51Z2009-07-15T10:48:51ZNot a programming questionhttp://stackoverflow.com/questions/1116159/block-invalid-elements-xsd/1116214#1116214Comment by Oded on block invalid elements XSD?Oded2009-07-12T15:32:37Z2009-07-12T15:32:37ZVisual studio will automatically validate XML when it knows about the schema. Chances are that NHibernate installs its schema into VS.
You can see what schemas are being validated against when in an XML file by going to XML -> Schemas (if memory serves).http://stackoverflow.com/questions/1114549/conversion-failed-when-converting-datetime-from-character-string/1114566#1114566Comment by Oded on Conversion failed when converting datetime from character stringOded2009-07-11T21:14:08Z2009-07-11T21:14:08ZIf your SQL server is setup for US dates, it will interpret the date as 7th of October.http://stackoverflow.com/questions/1097331/enumerate-with-return-type-other-than-string/1097355#1097355Comment by Oded on Enumerate with return type other than string?Oded2009-07-08T12:11:49Z2009-07-08T12:11:49ZBecause of the Value type semantics structs and enums share.http://stackoverflow.com/questions/1089196/selectsinglenode-returning-null-for-known-good-xml-node-path-using-xpath/1089210#1089210Comment by Oded on SelectSingleNode returning null for known good xml node path using XPathOded2009-07-06T21:06:05Z2009-07-06T21:06:05ZYou can add namespaces when creating the xmldoc.http://stackoverflow.com/questions/1089196/selectsinglenode-returning-null-for-known-good-xml-node-path-using-xpathComment by Oded on SelectSingleNode returning null for known good xml node path using XPathOded2009-07-06T21:04:27Z2009-07-06T21:04:27ZFirst thing to check is if the XML document has been loaded correctly. I can see an empty xmlns attribute at the end of the root node - is that right?http://stackoverflow.com/questions/1034061/c-string-splitComment by Oded on C# string splitOded2009-06-23T17:49:40Z2009-06-23T17:49:40ZNot enough detail - if you supply further examples of strings and what you need to extract, a good general solution can be devised.