User y0mbo - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T06:21:38Zhttp://stackoverflow.com/feeds/user/417http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1546618/resharper-doesnt-see-my-machine-specification-tests1ReSharper doesn't see my Machine.Specification testsy0mbo2009-10-10T00:01:43Z2009-11-23T12:53:41Z
<p>I'm having a problem getting ReSharper to see the Machine.Specification "tests" I've written.</p>
<p>The specs run in the ConsoleRunner from mSpec. When I try to "Run Unit Tests" in ReSharper, I get a message: "No tests found in file." The specs don't show the test markers.</p>
<p>I created a folder in the ReSharper /bin/ folder and put the proper .dlls there. The mSpec plug in appears in ReSharper.</p>
<p>What might I be missing?</p>
<p>Also, I'm using xUnit.NET if that makes a difference.</p>
http://stackoverflow.com/questions/1734767/can-this-relationship-be-described-in-ruby-on-rails5Can this relationship be described in Ruby on Rails?y0mbo2009-11-14T16:38:30Z2009-11-17T21:37:42Z
<p>Is this a relationship that can be described in Ruby on Rails' ActiveRecord model relationships?</p>
<pre><code> Customer Address
=================== =========
Billing_Address_Id >------}
}---|- AddressId
Shipping_Address_Id >------}
</code></pre>
<p>So that I could have data that looks like this:</p>
<p>Address:</p>
<pre><code> Id | Addr | City | State | Zip |
================================================
1 | 123 Main | New York | NY | 99999 |
2 | 200 2nd Street | New York | NY | 99999 |
3 | 300 3rd Street | Albany | NY | 99998 |
4 | PO Box 4 | Albany | NY | 99998 |
</code></pre>
<p>Customer:</p>
<pre><code> Id | Name | Billing_Address_Id | Shipping_Address_Id |
=======================================================
1 | Bob | 1 | 1 |
2 | Al | 2 | 1 |
3 | Joe | 3 | 4 |
</code></pre>
<p>I want to store addresses in their own table because the data may be shared across customers (shipping address especially). But there would only even be two addresses for any given customer. </p>
<p>I'd like to avoid a many-to-many relationship unless there is no other way.</p>
http://stackoverflow.com/questions/1726966/how-to-get-started-on-learning-new-language/1727036#17270360Answer by y0mbo for how to get started on learning new languagey0mbo2009-11-13T03:53:49Z2009-11-13T03:53:49Z<p>I would recommend a code kata as Bill the Lizard did. This has been very successful for me recently. I've been ASP.NET/C# developer but had to learn Ruby on Rails for a recent project.</p>
<p>Because I was already doing a code kata to learn the keyboard shortcuts is Visual Studio, I had a project I could duplicate in a new language without having to make decisions about how I'd develop it. I already had the solution. At this point it was just about translating it into a new language.</p>
<p>I think that gave me a better jump on getting into Ruby because I could make associations with what I had already done in C# and close the knowledge gap between the two languages.</p>
http://stackoverflow.com/questions/1596052/replace-text-in-a-visual-studio-code-snippet-literal0Replace text in a Visual Studio Code Snippet Literaly0mbo2009-10-20T17:10:44Z2009-10-20T17:10:44Z
<p>Is it possible to replace text in a Visual Studio Snippet literal after the enter key is pressed and the snippet exits its edit mode?</p>
<p>For example, given a snippet like this:</p>
<pre><code> public void $name$
{
$end$
}
</code></pre>
<p>If I were to enter $name$ as:</p>
<pre><code> My function name
</code></pre>
<p>is it possible to have Visual Studio change it to:</p>
<pre><code> My_function_name
</code></pre>
<p>or</p>
<pre><code> MyFunctionName
</code></pre>
http://stackoverflow.com/questions/85941/aspnet-user-does-not-have-write-access-to-temporary-asp-net-files1ASPNET user does not have write access to Temporary ASP.NET Filesy0mbo2008-09-17T18:04:56Z2009-10-07T08:15:50Z
<p>When I run my Visual Studio 2008 ASP.NET project (start without Debugging) on my XP Professional box, I get the following error:</p>
<pre><code>System.Web.HttpException: The current identity (machinename\ASPNET) does not have write access to 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files'.
</code></pre>
<p>How do I resolve this?</p>
http://stackoverflow.com/questions/1494233/repository-of-standard-bdd-specs1Repository of "standard" BDD specsy0mbo2009-09-29T18:41:34Z2009-10-06T15:26:54Z
<p>Do you know of any resources or libraries of BDD specs?</p>
<p>For example, almost every web app has a login process. Some "standard" features might be handling of forgotten passwords, reset password, etc. </p>
<p>I'm thinking of something like a code snippet archive of BDD specs so we don't all have to write them from scratch. </p>
http://stackoverflow.com/questions/1494233/repository-of-standard-bdd-specs/1526336#15263360Answer by y0mbo for Repository of "standard" BDD specsy0mbo2009-10-06T15:26:54Z2009-10-06T15:26:54Z<p>Jean-Paul S. Boodhoo has created a BDD repository of sorts at <a href="http://github.com/developwithpassion/developwithpassion.bdd" rel="nofollow">http://github.com/developwithpassion/developwithpassion.bdd</a> which from the GitHub description is a "BDD Library (MbUnit Based)"</p>
http://stackoverflow.com/questions/176827/disable-the-postback-on-an-asplinkbutton4Disable the postback on an <ASP:LinkButton>y0mbo2008-10-07T00:41:48Z2009-10-05T19:58:02Z
<p>I have an ASP.NET linkbutton control on my form. I would like to use it for javascript on the client side and prevent it from posting back to the server. (I'd like to use the linkbutton control so I can skin it and disable it in some cases, so a straight up tag is not preferred).</p>
<p>How do I prevent it from posting back to the server?</p>
http://stackoverflow.com/questions/1494252/making-a-graphic-pie-chart-in-c/1494278#14942783Answer by y0mbo for Making A Graphic Pie Chart In C#y0mbo2009-09-29T18:51:14Z2009-09-29T18:51:14Z<p>This isn't a direct answer to you question, but why aren't you using the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=130f7986-bf49-4fe5-9ca8-910ae6ea442c&DisplayLang=en" rel="nofollow">Microsoft chart controls</a>? </p>
<p><a href="http://weblogs.asp.net/scottgu/archive/2008/11/24/new-asp-net-charting-control-lt-asp-chart-runat-quot-server-quot-gt.aspx" rel="nofollow">Scott Gu's post about it</a></p>
http://stackoverflow.com/questions/1070960/set-a-css-class-on-an-asp-net-radiobuttonlist-listitem0Set a CSS class on an ASP.NET RadioButtonList ListItemy0mbo2009-07-01T19:43:41Z2009-09-29T14:41:06Z
<p>Is there any way to set a CSS class on an input item in a radio button list? I'd like to reference these form values by class in jQuery.</p>
<p>Given an ASP.NET RadioButtonList with classes set on the ListItems:</p>
<pre><code> <asp:RadioButtonList ID="RadioButtonList" runat="server">
<asp:ListItem class="myClass" Text="Yes" Value="1" />
<asp:ListItem class="myClass" Text="No" Value="0" />
</asp:RadioButtonList>
</code></pre>
<p>Will render as:</p>
<pre><code> <span id="RadioButtonList" class="radioButtonListField myClass">
<span class="myClass">
<input id="RadioButtonList_0" type="radio" value="1"
name="RadioButtonList"/>
<label for="RadioButtonList_0">Yes</label>
</span>
<span class="myClass">
<input id="RadioButtonList_1" type="radio" value="0"
name="RadioButtonList"/>
<label for="RadioButtonList_1">No</label>
</span>
</span>
</code></pre>
<p>Unfortunately, the "myClass" class is added to the that contains the radio button item, not the itself. How could I get it to look like this instead:</p>
<pre><code> <span id="RadioButtonList" class="radioButtonListField myClass">
<span>
<input id="RadioButtonList_0" class="myClass" type="radio" value="1"
name="RadioButtonList"/>
<label for="RadioButtonList_0">Yes</label>
</span>
<span>
<input id="RadioButtonList_1" class="myClass" type="radio" value="0"
name="RadioButtonList"/>
<label for="RadioButtonList_1">No</label>
</span>
</span>
</code></pre>
<p>(This does not even get into the issue of adding the classes to dynamically bound RadioButtonLists.)</p>
http://stackoverflow.com/questions/2524/visual-studio-2008-debugger-already-attached-work-around3Visual Studio 2008 debugger already attached work-aroundy0mbo2008-08-05T16:18:18Z2009-08-07T11:05:55Z
<p>I get the following error pretty regularly when compiling in Visual Studio and running my web application:</p>
<p>"Unable to start debugging on the web server. The web server did not respond in a timely manner. This may be because another debugger is already attached to the web server."</p>
<p>Normally this is after having debug the application once already. From the command line I run "iisreset /restart" and it fixes the problem.</p>
<p>How do I prevent this from happening in the first place?</p>
http://stackoverflow.com/questions/953093/asp-net-click-event-doesnt-fire-on-second-postback2ASP.NET Click() event doesn't fire on second postbacky0mbo2009-06-04T21:05:17Z2009-06-04T21:23:32Z
<p>I have a ASP.NET web form. The first time I submit the form, the SubmitButton_Click event is raised. </p>
<p>The form is returned to the browser either with validation errors or with the option to submit the form again with new values.</p>
<p>When the form is sumbitted again, the SubmitButton_Click event never fires. Page_Load fires, but not the button.</p>
<p>Does anyone know why I would be seeing this behavior on the server side?</p>
<p>(I am using jQuery and the validation control client-side but I don't think it is causing an issue. Thought I would mention it anyway).</p>
<p><strong>Edit:</strong></p>
<pre><code><asp:Button ID="SubmitButton" OnClick="SubmitButton_Click"
runat="server" />
</code></pre>
<p>Event is set on the control, not in code.</p>
http://stackoverflow.com/questions/827486/how-are-the-automobile-databases-maintained/948297#9482973Answer by y0mbo for How are the automobile databases maintained?y0mbo2009-06-04T02:20:30Z2009-06-04T14:11:01Z<p><a href="https://www.mitchell.com/" rel="nofollow">Mitchell International</a> is considered to be the gold standard for collision repair databases. As their database contains information about all the parts on a vehicle, they also maintain a list of Year, Manufacturer, Make, Model and Style.</p>
<p>Here is the page about their <a href="https://www.mitchell.com/mitch/company/ourdatabase.asp" rel="nofollow">database</a>.</p>
<p>They make their data available for <a href="https://www.mitchell.com/mitch/products/product.asp?pf%5Fid=326&dept%5Fid=4" rel="nofollow">private label</a> use as a subscription service.</p>
<p>(I became aware of Mitchell when I worked in the Auto Glass industry and we used their "NAGS" database for auto glass numbering.)</p>
<p>Should you go with the DIY route, there are some design considerations you should make. The main table is going to be the Make table as sometimes a vehicle make is shifted between manufacturers (the Geo Metro and Dodge Neon in the US for example). One might assume it is a hierarchy but it is not. The table structure might look like this:</p>
<pre><code> Manufacturer
|
Year --- Make --- Model --- Style
</code></pre>
http://stackoverflow.com/questions/947748/do-you-tell-an-interviewee-why-he-failed-an-interview/947958#9479582Answer by y0mbo for Do you tell an interviewee why he failed an interview? y0mbo2009-06-04T00:12:28Z2009-06-04T00:12:28Z<p>Perhaps given the opportunity different questions should be asked:</p>
<p>"In what areas can I improve in for future interviews?"</p>
<p>or</p>
<p>"What technical skills do you think I should focus on to become a better developer?"</p>
<p>Ultimately, this is the sort of feedback I'd be looking for - specific ways to improve my chances at the next interview, even if I didn't get this one.</p>
http://stackoverflow.com/questions/893786/what-tools-are-available-for-adding-localization-to-an-asp-net-project4What tools are available for adding Localization to an ASP.NET project?y0mbo2009-05-21T16:24:18Z2009-05-22T15:51:20Z
<p>An ASP.NET project I am working on will be adding localization in the next version. As we pull text from our ASPX pages into resource files and other data into database tables, what tools might we want to evaluate to assist this process?</p>
<p>Are there any tools to assist translators to create the localization files?</p>
http://stackoverflow.com/questions/893786/what-tools-are-available-for-adding-localization-to-an-asp-net-project/893822#8938220Answer by y0mbo for What tools are available for adding Localization to an ASP.NET project?y0mbo2009-05-21T16:30:59Z2009-05-21T16:30:59Z<p>One tool I've found is <a href="http://www.screwturn.eu/Default.aspx?Page=ResxSync&NS=&AspxAutoDetectCookieSupport=1#F%5F-%5FDownload" rel="nofollow">RESX Synchronizer</a>.</p>
<p>This is a command-line tool that synchronizes all of the keys between two resource files. For example:</p>
<pre><code>resxsync homepage.resx homepage.fr-CA.resx
</code></pre>
<p>will copy all keys from the default .resx file to the French Canadian localization file.</p>
<p>Once that is done, it is only a matter of plugging in the French text. </p>
http://stackoverflow.com/questions/870398/whats-a-good-ui-design-for-administering-multi-lingual-data/877960#8779601Answer by y0mbo for What's a good UI design for administering multi-lingual data?y0mbo2009-05-18T14:12:41Z2009-05-18T14:12:41Z<p>To follow up with @mikehall's answer above, I would do something like this sketch:</p>
<p><img src="http://redbitbluebit.com/images/language.png" alt="Localization Data Entry" /></p>
<p>Of course, my translations are made up ;-)</p>
http://stackoverflow.com/questions/499405/change-selected-value-of-drop-down-list-with-jquery/770811#7708112Answer by y0mbo for Change selected value of drop down list with jQueryy0mbo2009-04-21T02:16:22Z2009-04-21T02:16:22Z<p>Just an FYI, you don't need to use CSS classes to accomplish this.</p>
<p>You can write the following line of code to get the correct control name on the client:</p>
<pre><code>$("#<%= statusDDL.ClientID %>").val("2");
</code></pre>
<p>ASP.NET will render the control ID correctly inside the jQuery.</p>
http://stackoverflow.com/questions/659444/where-do-subsonic-classes-go-in-an-asp-net-mvc-project1Where do Subsonic classes go in an ASP.NET MVC Project?y0mbo2009-03-18T18:01:56Z2009-03-19T01:00:06Z
<p>I've built ASP.NET webform projects in the past, and when generating Subsonic classes, the teams I have been on have put our Business Layer/DAL objects into a Project.Framework project.</p>
<p>Would that still be a recommended structure, or should the Subsonic classes go directly into the /Model folder within the MVC web project?</p>
http://stackoverflow.com/questions/295589/what-program-should-i-use-to-mock-up-guis/295806#2958061Answer by y0mbo for What program should I use to mock up GUIs?y0mbo2008-11-17T15:11:18Z2008-11-17T15:11:18Z<p>One thing I found very helpful in building prototypes in the past was to capture screen shots and paste them into a Word document. Then, when we would review them, I would show the Word document on the projector for the team to see. This kept a clear separation for them that these were just screen shots, and nothing had yet been developed. It avoided the "Powerpoint Compiler Effect" as they could clearly see we were looking at a Word document.</p>
http://stackoverflow.com/questions/268562/technology-venture/268845#2688450Answer by y0mbo for Technology Venturey0mbo2008-11-06T14:23:03Z2008-11-06T14:23:03Z<p>Guy Kawasaki's book <em>The Art of the Start</em> may have some good tips for you.</p>
<p>If it's a software product you're looking to sell, <em>Micro-ISV: From Vision to Reality</em> by Bob Walsh may help.</p>
<p>I also second Mat's and Warren's lists of links.</p>
http://stackoverflow.com/questions/115159/when-should-i-use-and-in-asp-net-controls11When should I use # and = in ASP.NET controls?y0mbo2008-09-22T14:30:57Z2008-10-30T17:53:17Z
<p>I have been using ASP.NET for years, but I can never remember when using the # and = are appropriate.</p>
<p>For example:</p>
<pre><code><%= Grid.ClientID %>
</code></pre>
<p>or</p>
<pre><code><%# Eval("FullName")%>
</code></pre>
<p>Can someone explain when each should be used so I can keep it straight in my mind? Is # only used in controls that support databinding?</p>
http://stackoverflow.com/questions/244645/am-i-the-only-one-who-doesnt-use-visual-studio-designer-for-webforms/244683#2446831Answer by y0mbo for Am I the only one who doesn't use Visual Studio designer for webforms?y0mbo2008-10-28T20:14:13Z2008-10-28T20:14:13Z<p>I just type in the code for controls, and skip the designer all together.</p>
<p>The only time I've used it in the last 3 years was to generate local resource files in Visual Studio 2005 - it could only be done through the designer view.</p>
http://stackoverflow.com/questions/223163/routing-around-stupid-it-departments/223171#2231712Answer by y0mbo for Routing around stupid IT departmentsy0mbo2008-10-21T19:32:58Z2008-10-27T21:59:09Z<p>Jeff Atwood swapped out components on his machine at his own expense until he had completely rebuilt it. From the comments in his blog: "To be clear, I pay for all my own PCs out of my own pocket. So I'm either "lucky" or "stupid" depending on how you calculate such things." on March 14, 2007 </p>
<p><a href="http://www.codinghorror.com/blog/archives/000816.html" rel="nofollow">http://www.codinghorror.com/blog/archives/000816.html</a></p>
http://stackoverflow.com/questions/219027/do-you-keep-a-programming-journal/219047#2190471Answer by y0mbo for Do you keep a programming journal?y0mbo2008-10-20T16:25:57Z2008-10-20T16:25:57Z<p>I have a business/programming journal (also a Moleskine) in which I can keep notes. </p>
<p>Primarily I use it to write down witty quotes, software and marketing ideas, and sometimes those "A-HA" moments where I discover something revolutionary and new.</p>
<p>I don't use it for software requests as I use a bug database for that purpose.</p>
http://stackoverflow.com/questions/10072/personalized-icon-next-to-the-url-address-in-the-browsers-address-bar/10144#101443Answer by y0mbo for Personalized icon next to the URL address in the browser's address bar?y0mbo2008-08-13T18:11:24Z2008-10-17T21:00:01Z<p>You need to create a favicon. The favicon uses a standard (in Windows, at least) .ico file. If you have a logo, you can convert it at sites like <a href="http://www.favicongenerator.com/" rel="nofollow" title="I/O management and disk scheduling"><a href="http://www.favicongenerator.com/" rel="nofollow">http://www.favicongenerator.com/</a></a></p>
<p>In the <code><head></code> of your html page, use the <code><link></code> tag to define the location of the favicon like this:</p>
<pre><code><link rel="shortcut icon" href="favicon.ico" />
</code></pre>
<p>You may need to refresh the page for the icon to display.</p>
http://stackoverflow.com/questions/190976/what-frustrates-you-the-most-at-your-current-workplace/191102#1911026Answer by y0mbo for What frustrates you the most at your current workplace?y0mbo2008-10-10T12:50:40Z2008-10-10T12:50:40Z<p>Having to go move the laundry into the dryer. I freelance and work from home :-)</p>
http://stackoverflow.com/questions/178863/change-theme-css-based-on-user/178891#178891-1Answer by y0mbo for Change Theme / CSS based on usery0mbo2008-10-07T15:06:07Z2008-10-07T15:06:07Z<p>I would avoid using the !important clause and instead just ensure their values appear in a <code><style></code> tag following the import of the regular style sheets.</p>
<p>Otherwise, I would do it the same way.</p>
http://stackoverflow.com/questions/178563/advice-on-starting-a-business-getting-clients/178592#1785921Answer by y0mbo for Advice on starting a business: getting clientsy0mbo2008-10-07T14:00:47Z2008-10-07T14:00:47Z<p>Do you have a non-compete with your current agency?</p>
<p>If not, you could see if some of the clients enjoyed working with you and contact them after you've been on your own for a while. I would not recommend contacting anyone right away... there should be a clean break of several months.</p>
<p>If you did sign a non-compete, I would recommend sub-contracting through other consulting companies to pass the time until you are able to contact those old clients again (after a year, etc.).</p>
<p>Do not burn the bridges with your current agency or do anything you agreed not to (e.g. violating a non-compete). It's bad for your business.</p>
http://stackoverflow.com/questions/178484/how-can-we-get-people-to-participate-in-team-building/178566#1785661Answer by y0mbo for How can we get people to participate in team building?y0mbo2008-10-07T13:56:57Z2008-10-07T13:56:57Z<p>Many times, folks don't want to go to off-site lunches because it means more time to make up later. Try having lunch brought in instead.</p>
http://stackoverflow.com/questions/861144/ruby-on-rails-hasone-question/861899#861899Comment by y0mbo on ruby on rails has_one questiony0mbo2009-12-09T19:46:26Z2009-12-09T19:46:26ZGreat, now I know the two wrong answers. Would be better to show the "correct" way to show it. Just sayin'.http://stackoverflow.com/questions/1596052/replace-text-in-a-visual-studio-code-snippet-literalComment by y0mbo on Replace text in a Visual Studio Code Snippet Literaly0mbo2009-12-01T21:11:43Z2009-12-01T21:11:43ZYou should answer this in an answer so it can be voted on and accepted.http://stackoverflow.com/questions/1734767/can-this-relationship-be-described-in-ruby-on-rails/1734811#1734811Comment by y0mbo on Can this relationship be described in Ruby on Rails?y0mbo2009-11-14T23:16:39Z2009-11-14T23:16:39ZThe table design will help. I was not aware of the .references "data type".http://stackoverflow.com/questions/1734767/can-this-relationship-be-described-in-ruby-on-rails/1734816#1734816Comment by y0mbo on Can this relationship be described in Ruby on Rails?y0mbo2009-11-14T23:13:00Z2009-11-14T23:13:00ZI agree with your design assessment. My example is a little simplified from what I'll actually be doing; the customers would actually be part of the same account in the same household. They may share the same address, or may want shipping to a different location.http://stackoverflow.com/questions/1734767/can-this-relationship-be-described-in-ruby-on-rails/1734857#1734857Comment by y0mbo on Can this relationship be described in Ruby on Rails?y0mbo2009-11-14T23:09:49Z2009-11-14T23:09:49ZI tried to simplify my example for my question. The customers in question would literally be part of the same household, so changes to one address should update for all.http://stackoverflow.com/questions/987154/many-to-many-relationship-with-same-table-ruby-on-rails/987347#987347Comment by y0mbo on Many-to-Many Relationship With Same Table (Ruby on Rails)y0mbo2009-11-14T16:25:18Z2009-11-14T16:25:18ZI believe the correct URL above should be:
<a href="http://github.com/rails/acts_as_nested_set" rel="nofollow">github.com/rails/acts_as_nested_set</a>http://stackoverflow.com/questions/1546618/resharper-doesnt-see-my-machine-specification-tests/1552120#1552120Comment by y0mbo on ReSharper doesn't see my Machine.Specification testsy0mbo2009-10-12T13:00:21Z2009-10-12T13:00:21ZThanks for the answer; and the help via Twitter.http://stackoverflow.com/questions/1070960/set-a-css-class-on-an-asp-net-radiobuttonlist-listitem/1070985#1070985Comment by y0mbo on Set a CSS class on an ASP.NET RadioButtonList ListItemy0mbo2009-07-02T12:20:55Z2009-07-02T12:20:55ZI was hoping there was a solution in ASP.NET other than writing a control adapter that I was missing, but this is the solution I ended up using.http://stackoverflow.com/questions/1014858/is-writing-specifications-for-hobby-projects-the-only-way-for-them-to-be-finished/1014894#1014894Comment by y0mbo on Is writing specifications for hobby projects the only way for them to be finished?y0mbo2009-06-26T14:31:47Z2009-06-26T14:31:47ZOne nice thing about BDD approaches to development is that you can clearly see which behaviors have been implemented and which have not. This can go a long way when picking things up again.http://stackoverflow.com/questions/953093/asp-net-click-event-doesnt-fire-on-second-postback/953120#953120Comment by y0mbo on ASP.NET Click() event doesn't fire on second postbacky0mbo2009-06-08T20:26:08Z2009-06-08T20:26:08ZI guess this is probably what is happening. The validation routine seems to submit the form before the __doPostBack() can be called.http://stackoverflow.com/questions/953093/asp-net-click-event-doesnt-fire-on-second-postback/953102#953102Comment by y0mbo on ASP.NET Click() event doesn't fire on second postbacky0mbo2009-06-04T21:25:11Z2009-06-04T21:25:11ZNo, not wired in code behind.http://stackoverflow.com/questions/953093/asp-net-click-event-doesnt-fire-on-second-postback/953120#953120Comment by y0mbo on ASP.NET Click() event doesn't fire on second postbacky0mbo2009-06-04T21:24:15Z2009-06-04T21:24:15ZThe form is still posting to the server as Page_Load fires. That's what seems strange to me.http://stackoverflow.com/questions/947695/what-tips-can-you-offer-for-programming-on-paper/947883#947883Comment by y0mbo on What tips can you offer for programming on paper?y0mbo2009-06-04T00:16:32Z2009-06-04T00:16:32ZThe logic and basic constructs are more important than having every semicolon.http://stackoverflow.com/questions/893625/what-pronoun-should-your-application-use-when-addressing-the-user/893631#893631Comment by y0mbo on What pronoun should your application use when addressing the user?y0mbo2009-05-21T17:53:04Z2009-05-21T17:53:04ZYou/Your is a very developer-centric way to say it. I'm at your site because it's about me, not the developer.http://stackoverflow.com/questions/28577/globalization-architecture/28603#28603Comment by y0mbo on Globalization architecturey0mbo2009-05-21T16:21:17Z2009-05-21T16:21:17ZGood idea to leave "Culture" in the table name in order to distinguish the contents of the table as localized data rather than something else.