User Ray Vega - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T14:45:05Zhttp://stackoverflow.com/feeds/user/4872http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1656567/image-index-of-treeview-node-changes-upon-selection/1793468#17934681Answer by Ray Vega for Image index of TreeView node changes upon selection.Ray Vega2009-11-24T22:43:58Z2009-11-24T22:43:58Z<p>'SelectedImageIndex's intent is to allow displaying a different image upon selection than what is set by the 'ImageIndex' for a particular node. To keep these two consistent it is necessary to set them to the same value. This can be done at design time or programmatically depending on your needs.</p>
<p>For example, if the images never change then it is as simple as setting them concurrently when a new node is added to the TreeView: </p>
<pre><code>int myCurrentImageIndex = 0;
TreeNode node = myTreeView.Nodes.Add("new node!");
node.ImageIndex = node.SelectedImageIndex = myCurrentImageIndex;
</code></pre>
<p>However, if you do change the ImageIndex value for any reason after its initial creation (such as a response to some kind of user action), then you must also change the SelectedImageIndex as well. Otherwise, they will become inconsistent.</p>
<pre><code>int myNewImageIndex = 1;
node.ImageIndex = node.SelectedImageIndex = myNewImageIndex;
</code></pre>
<p>(Note it is not enough to set them to be the same in the event handler of the 'AfterSelect' event. It must be done anywhere in your code where ImageIndex changes.)</p>
http://stackoverflow.com/questions/254831/asp-net-free-ajax-file-upload-control/1787910#17879100Answer by Ray Vega for ASP.Net free Ajax file upload controlRay Vega2009-11-24T05:02:23Z2009-11-24T05:02:23Z<p>Another free one is the <a href="http://www.asp.net/ajax/ajaxcontroltoolkit/samples/AsyncFileUpload/AsyncFileUpload.aspx" rel="nofollow">AsyncFileUpload control</a> that is part of the <a href="http://www.asp.net/ajax/ajaxcontroltoolkit/samples/Default.aspx" rel="nofollow">ASP.NET Ajax Control Toolkit</a>.</p>
http://stackoverflow.com/questions/183853/in-python-what-is-the-difference-between-and-when-used-for-division13 In Python, what is the difference between '/' and '//' when used for division?Ray Vega2008-10-08T17:16:35Z2009-11-09T23:55:18Z
<p>Is there a benefit to using one over the other? They both seem to return the same results.</p>
<pre><code>>>> 6/3
2
>>> 6//3
2
</code></pre>
http://stackoverflow.com/questions/1644/what-good-technology-podcasts-are-out-there/1699389#16993890Answer by Ray Vega for What good technology podcasts are out there?Ray Vega2009-11-09T06:30:32Z2009-11-09T06:30:32Z<p><a href="http://37signals.com/podcast" rel="nofollow">37signals now has a podcast</a> with Jason Fried and <a href="http://en.wikipedia.org/wiki/David%5FHeinemeier%5FHansson" rel="nofollow">David Heinemeier Hansson</a> (creator of Ruby on Rails)</p>
http://stackoverflow.com/questions/42294/how-do-you-get-the-footer-to-stay-at-the-bottom-of-a-web-page/1691832#16918320Answer by Ray Vega for How do you get the footer to stay at the bottom of a Web page?Ray Vega2009-11-07T03:04:18Z2009-11-07T03:04:18Z<p>I found this simple, short tutorial, <a href="http://fortysevenmedia.com/blog/archives/making%5Fyour%5Ffooter%5Fstay%5Fput%5Fwith%5Fcss/" rel="nofollow">Making Your Footer Stay Put With CSS</a>, to work for me when I faced a similar problem with long vertical content overlapping my web pages' footer.</p>
<p>In addition, for my situation, I had to find and remove any unnecessarily large, fixed values defined for height style belonging to other elements in my pages.</p>
http://stackoverflow.com/questions/155246/how-do-you-truncate-all-tables-in-a-database-using-tsql5How do you truncate all tables in a database using TSQL?Ray Vega2008-09-30T21:49:17Z2009-10-29T11:02:58Z
<p>I have a test environment for a database that I want to reload with new data at the start of a testing cycle. I am not interested in rebuilding the entire database- just simply "re-setting" the data. </p>
<p>What is the best way to remove all the data from all the tables using TSQL? Are there system stored procedures, views, etc. that can be used? I do not want to manually create and maintain truncate table statements for each table- I would prefer it to be dynamic.</p>
http://stackoverflow.com/questions/189490/where-can-i-find-my-emacs-file-for-emacs-running-on-windows12Where can I find my .emacs file for Emacs running on Windows?Ray Vega2008-10-09T22:46:39Z2009-10-27T00:31:55Z
<p>I tried looking for the .emacs file for my Windows install for Emacs but could not find it. Does it have the same filename under Windows as in Unix? Do I have to create it myself? If so, under what specific directory does it go?</p>
http://stackoverflow.com/questions/249188/implementing-an-editable-dropdownlist-in-asp-net/1592106#15921061Answer by Ray Vega for Implementing an editable DropDownList in ASP.NETRay Vega2009-10-20T02:06:39Z2009-10-26T19:57:47Z<h2>One Control on a Page</h2>
<p>You can follow <a href="http://www.codeproject.com/KB/aspnet/EditableDropdown%5Faspx.aspx" rel="nofollow">this simple example for an Editable DropDownlist on Code Project</a> that uses standard ASP.NET TextBox and DropDownList controls combined with some JavaScript.</p>
<p>However, the code did not work for me until I added a reference to get the ClientID values for the TextBox and DropDownList:</p>
<pre><code><script language="javascript" type="text/javascript">
function DisplayText()
{
var textboxId = '<% = txtDisplay.ClientID %>';
var comboBoxId = '<% = ddSelect.ClientID %>';
document.getElementById(textboxId).value = document.getElementById(comboBoxId).value;
document.getElementById(textboxId).focus();
}
</script>
<asp:TextBox style="width:120px;position:absolute" ID="txtDisplay" runat="server"></asp:TextBox>
<asp:DropDownList ID="ddSelect" style="width:140px" runat="server">
<asp:ListItem Value="test1" >test1</asp:ListItem>
<asp:ListItem Value="test2">test2</asp:ListItem>
</asp:DropDownList>
</code></pre>
<p>Finally, in the code behind just like in the original example, I added the following to page load:</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
ddSelect.Attributes.Add("onChange", "DisplayText();");
}
</code></pre>
<p><br/></p>
<h2>Multiple Controls on a Page</h2>
<p>I placed all of the above code in its own ASCX User Control to make it reusable across my project. However, the code as presented above only works if you require just one editable DropDownList on a given page. </p>
<p>If you need to support multiple custom DropDownList controls on a single page, it is necessary to set the JavaScript function name to be unique to avoid conflicts. Do this by once again using the ClientID:</p>
<p><em>in the ASCX file:</em></p>
<pre><code>function DisplayText_<% = ClientID %>(){...}
</code></pre>
<p><em>in the code behind:</em></p>
<pre><code>/// ...
ddSelect.Attributes.Add("onChange", "DisplayText_" + ClientID + "();");
///..
</code></pre>
<p>This is one way to avoid using 3rd party controls.</p>
http://stackoverflow.com/questions/134626/which-is-more-preferable-to-use-in-python-lambda-functions-or-nested-functions10Which is more preferable to use in Python: lambda functions or nested functions ('def') ?Ray Vega2008-09-25T17:15:03Z2009-10-20T09:39:56Z
<p>I mostly use lambda functions but sometimes use nested functions that seem to provide the same behavior. </p>
<p>Here are some trivial examples where they functionally do the same thing if either were found within another function:</p>
<p><strong>Lambda function</strong></p>
<pre><code>>>> a = lambda x : 1 + x
>>> a(5)
6
</code></pre>
<p><strong>Nested function</strong></p>
<pre><code>>>> def b(x): return 1 + x
>>> b(5)
6
</code></pre>
<p>Is there advantages to using one over the other? (Performance? Readability? Limitations? Consistency? etc.) Does it even matter? If doesn't then does that violate the Pythonic principle: <a href="http://en.wikipedia.org/wiki/Python_(programming_language)#Philosophy" rel="nofollow">“There should be one—and preferably only one—obvious way to do it”</a>.</p>
http://stackoverflow.com/questions/55449/can-you-ignore-a-file-in-perforce9Can you "ignore" a file in Perforce?Ray Vega2008-09-10T22:45:31Z2009-10-16T16:02:54Z
<p>I sometimes use the feature 'Reconcile Offline Work...' found in Perforce's P4V IDE to sync up any files that I have been working on while disconnected from the P4 depot. It launches another window that performs a 'Folder Diff'.</p>
<p>I have files I never want to check in to source control (like ones found in bin folder such as DLLs, code generated output, etc.) Is there a way to filter those files/folders out from appearing as "new" that might be added. They tend to clutter up the list of files that I am actually interesting in. Does P4 have the equivalent of Subversion's 'ignore file' feature? </p>
http://stackoverflow.com/questions/724143/how-do-i-create-a-delegate-for-a-net-property/1575320#15753201Answer by Ray Vega for How do I create a delegate for a .NET property?Ray Vega2009-10-15T21:54:11Z2009-10-15T22:16:49Z<p>Here is a C#/.NET 2.0 version of <a href="http://stackoverflow.com/questions/724143/how-do-i-create-a-delegate-for-a-net-property/724427#724427">Marc Gravell's response</a>:</p>
<pre><code>using System;
using System.Reflection;
class Program
{
private delegate void SetValue<T>(T value);
private delegate T GetValue<T>();
private class Foo
{
private string _bar;
public string Bar
{
get { return _bar; }
set { _bar = value; }
}
}
static void Main()
{
Foo foo = new Foo();
Type type = typeof (Foo);
PropertyInfo property = type.GetProperty("Bar");
// setter
MethodInfo methodInfo = property.GetSetMethod();
SetValue<string> setValue =
(SetValue<string>) Delegate.CreateDelegate(typeof (SetValue<string>), foo, methodInfo);
setValue("abc");
// getter
methodInfo = property.GetGetMethod();
GetValue<string> getValue =
(GetValue<string>) Delegate.CreateDelegate(typeof (GetValue<string>), foo, methodInfo);
string myValue = getValue();
// output results
Console.WriteLine(myValue);
}
}
</code></pre>
<p>Again, '<strong>Delegate.CreateDelegate</strong>' is what is fundamental to this example.</p>
http://stackoverflow.com/questions/49092/online-interactive-consoles/1549885#15498851Answer by Ray Vega for Online Interactive ConsolesRay Vega2009-10-11T04:51:53Z2009-10-11T04:51:53Z<p>Google has an <a href="http://shell.appspot.com/" rel="nofollow">online interactive shell for Python</a>.</p>
http://stackoverflow.com/questions/470957/how-do-you-report-a-spammer-on-so15How do you report a spammer on SO? [closed]Ray Vega2009-01-22T21:48:52Z2009-10-10T23:39:18Z
<p>How do I report a user that <a href="http://en.wikipedia.org/wiki/Spam_(electronic)" rel="nofollow">spams</a> on Stack Overflow?</p>
<p><hr /></p>
<p><a href="http://stackoverflow.com/questions/18557/how-does-stackoverflow-work-the-unofficial-faq">Return to FAQ Index</a></p>
http://stackoverflow.com/questions/53513/python-what-is-the-best-way-to-check-if-a-list-is-empty14Python: What is the best way to check if a list is empty?Ray Vega2008-09-10T06:20:11Z2009-09-30T03:32:40Z
<p>For example, if passed the following:</p>
<pre><code>a = []
</code></pre>
<p>How do I check to see if <strong><code>a</code></strong> is empty?</p>
http://stackoverflow.com/questions/1359469/innertext-works-in-ie-but-not-in-firefox3'innerText' works in IE, but not in FirefoxRay Vega2009-08-31T21:17:44Z2009-09-25T21:13:28Z
<p>I have some JavaScript code that works in IE containing the following:</p>
<pre><code>myElement.innerText = "foo";
</code></pre>
<p>However, it seems that the 'innerText' property does not work in Firefox. Is there some Firefox equivalent? Or is there a more generic, cross browser property that can be used?</p>
http://stackoverflow.com/questions/1443485/c-whats-the-major-problem-solved-by-partial-classes/1443561#14435610Answer by Ray Vega for C# - what's the major problem solved by "partial" classes?Ray Vega2009-09-18T09:55:32Z2009-09-18T09:55:32Z<p>If you have some kind of absurdly large class that for some reason are unable or not allowed to logically break apart into smaller classes then you can at least physically break them into multiple files in order to work with it more effectively. Essentially, you can view small chunks at a time avoiding scrolling up and down. </p>
<p>This might apply to legacy code that perhaps due to some arcane policy are not allowed to mess with the existing API because of numerous and entrenched dependencies.</p>
<p>Not necessarily the best use of partial classes, but certainly gives you an alternate option to organize code you might not be able to otherwise modify.</p>
http://stackoverflow.com/questions/60034/how-can-you-find-and-replace-text-in-a-file-using-the-windows-command-line-enviro7How can you find and replace text in a file using the Windows command-line environment?Ray Vega2008-09-12T21:48:26Z2009-09-15T18:22:55Z
<p>I am writing a batch file script using Windows command-line environment and want to change each occurrence of some text in a file (ex. "FOO") with another (ex. "BAR"). What is the simplest way to do that? Any built in functions?</p>
http://stackoverflow.com/questions/61953/how-do-you-bind-an-enum-to-a-dropdownlist-control-in-asp-net6How do you bind an Enum to a DropDownList control in ASP.NET?Ray Vega2008-09-15T07:03:32Z2009-09-01T16:11:18Z
<p>Let's say I have the following simple enum:</p>
<pre><code>enum Response
{
Yes = 1,
No = 2,
Maybe = 3
}
</code></pre>
<p>How can I bind this enum to a DropDownList control so that the descriptions are displayed in the list as well as retrieve the associated numeric value (1,2,3) once an option has been selected?</p>
http://stackoverflow.com/questions/794255/how-do-you-use-the-immediate-window-in-visual-studio/1361136#13611361Answer by Ray Vega for How do you use the immediate window in Visual Studio?Ray Vega2009-09-01T07:57:09Z2009-09-01T07:57:09Z<p>One nice feature of the Immediate Window in Visual Studio is its ability to evaluate the return value of a method particularly if it is called by your client code but it is <em>not</em> part of a variable assignment. In Debug mode, as mentioned, you can interact with variables and execute expressions in memory which plays an important role in being able to do this.</p>
<p>For example, if you had a static method that returns the sum of two numbers such as:</p>
<pre><code>private static int GetSum(int a, int b)
{
return a + b;
}
</code></pre>
<p>Then in the Immediate Window you can type the following:</p>
<pre><code>? GetSum(2, 4)
6
</code></pre>
<p>As you can seen, this works really well for static methods. However, if the method is non-static then you need to interact with a reference to the object the method belongs to.</p>
<p>For example, let’s say this is what your class looks like: </p>
<pre><code>private class Foo
{
public string GetMessage()
{
return "hello";
}
}
</code></pre>
<p>If the object already exists in memory and it’s in scope, then you can call it in the Immediate Window as long as it has been instantiated <em>before</em> your current breakpoint (or, at least, before wherever the code is paused in debug mode):</p>
<pre><code>? foo.GetMessage(); // object ‘foo’ already exists
"hello"
</code></pre>
<p>In addition, if you want to interact and test the method directly without relying on an existing instance in memory, then you can instantiate your <em>own</em> instance in the Immediate Window:</p>
<pre><code>? Foo foo = new Foo(); // new instance of ‘Foo’
{temp.Program.Foo}
? foo.GetMessage()
"hello"
</code></pre>
<p>You can take it a step further and temporarily assign the method's results to variables if you want to do further evaluations, calculations, etc.:</p>
<pre><code>? string msg = foo.GetMessage();
"hello"
? msg + " there!"
"hello there!"
</code></pre>
<p>Furthermore, if you don’t even want to declare a variable name for a new object and just want to run one of its methods/functions then do this: </p>
<pre><code>? new Foo().GetMessage()
"hello"
</code></pre>
<p>A very common way to see the value of a method is to select the method name of a class and do a ‘Add Watch’ so that you can see its current value in the Watch window. However, once again, the object needs to be instantiated and in scope for a valid value to be displayed. This is much less powerful and more restrictive than using the Immediate Window.</p>
<p>Along with inspecting methods, you can do simple math equations:</p>
<pre><code>? 5 * 6
30
</code></pre>
<p>or compare values:</p>
<pre><code>? 5==6
false
? 6==6
true
</code></pre>
<p>The question mark ('?') is unnecessary if you are in directly in the Immediate Window but it is included here for clarity (to distinguish between the typed in expressions versus the results.) However, if you are in the Command Window and need to do some quick stuff in the Immediate Window then precede your statements with '?' and off you go.</p>
<p><a href="http://stackoverflow.com/questions/288317/visual-studio-where-is-intellisense-in-the-immediate-window">Intellisense works in the Immediate Window</a>, but it sometimes can be a bit inconsistent. In my experience, it seems to be only available in Debug mode, but not in design, non-debug mode.</p>
<p>Unfortunately, another drawback of the Immediate Window is that it does not support loops.</p>
http://stackoverflow.com/questions/52492/what-is-the-best-way-to-avoid-getting-emacs-pinky6What is the best way to avoid getting "Emacs Pinky"?Ray Vega2008-09-09T18:08:44Z2009-08-29T16:59:34Z
<p>I just started using GNU Emacs as my text editor and I am concerned about getting afflicted with "<a href="http://en.wikipedia.org/wiki/GNU_Emacs#Emacs_Pinky" rel="nofollow">Emacs Pinky</a>" by having to constantly press the control key with my pinky finger as is required when using Emacs. How can I avoid potentially getting this type of repetitive strain injury?</p>
http://stackoverflow.com/questions/179287/what-is-the-best-way-to-change-text-contained-in-an-xml-file-using-python1What is the best way to change text contained in an XML file using Python?Ray Vega2008-10-07T16:23:52Z2009-08-28T17:42:09Z
<p>Let's say I have an existing trivial XML file named 'MyData.xml' that contains the following:</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<myElement>foo</myElement>
</code></pre>
<p>I want to change the text value of 'foo' to 'bar' resulting in the following:</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<myElement>bar</myElement>
</code></pre>
<p>Once I am done, I want to save the changes. </p>
<p>What is the easiest and simplest way to accomplish all this?</p>
http://stackoverflow.com/questions/175116/are-there-shortcut-keys-for-resharpers-unit-test-runner17Are there shortcut keys for ReSharper's Unit Test Runner?Ray Vega2008-10-06T16:46:07Z2009-08-26T18:26:59Z
<p>For obvious productivity reasons, I make an effort of learning and using as many of the keyboard shortcuts for the various Re# commands. </p>
<p>However, it seems that the unit test runner does not have any associated shortcut keys. I want to be able to select certain tests and be able to run or debug them without resorting to grabbing the mouse each time. Is using the mouse my only option?</p>
http://stackoverflow.com/questions/32633/how-can-i-set-breakpoints-in-an-external-js-script-in-firebug/1330776#13307762Answer by Ray Vega for How can I set breakpoints in an external JS script in FirebugRay Vega2009-08-25T20:28:36Z2009-08-25T20:28:36Z<p>To view and access external JavaScript files (*.js) from within Firebug:</p>
<ol>
<li>Click on the 'Script' tab.</li>
<li>Click on the 'all' drop down in the
upper left hand corner above the
script code content window.</li>
<li>Select 'Show Static Scripts'.</li>
<li>Click on the dropdown button just to
the right of what now says 'static'
(By default, it should show the name
of your current web page). You
should now see a list of files
associated with the current web page
including any external JS files.</li>
<li>Select the JavaScript file you are
interested in and it's code will
display in the content window. From
there, you should be able to set
breakpoints as normal.</li>
</ol>
http://stackoverflow.com/questions/651404/firebug-breakpoint-doesnt-hit/1330623#13306231Answer by Ray Vega for Firebug - Breakpoint doesn't hitRay Vega2009-08-25T20:03:45Z2009-08-25T20:03:45Z<p>Does the 'Console' tab on Firebug show errors for any of your other JavaScript? I found that if JavaScript errors exist for code prior to a debug breakpoint then it will never reach that line of code until the preceding broken one(s) are fixed.</p>
http://stackoverflow.com/questions/54754/how-can-you-do-paging-with-nhibernate12How can you do paging with NHibernate?Ray Vega2008-09-10T17:16:53Z2009-08-25T15:34:18Z
<p>For example, I want to populate a gridview control in an ASP.NET web page with only the data necessary for the # of rows displayed. How can NHibernate support this?</p>
http://stackoverflow.com/questions/235254/how-can-i-run-cygwin-bash-shell-from-within-emacs6How can I run Cygwin Bash Shell from within Emacs?Ray Vega2008-10-24T21:03:31Z2009-08-22T07:58:41Z
<p>I am running GNU Emacs on Windows so entering:</p>
<pre><code>M-x shell
</code></pre>
<p>launches the Windows command-line DOS shell. However, I would like to instead be able to run the Cygwin Bash Shell (or any other non-Windows shell) from within Emacs. How can this be easily done?</p>
http://stackoverflow.com/questions/67103/what-is-the-best-way-to-improve-performance-of-nhibernate17What is the best way to improve performance of NHibernate?Ray Vega2008-09-15T21:22:52Z2009-08-12T21:51:16Z
<p>I have an application that uses NHibernate as its ORM and sometimes it experiences performance issues due to how the data is being accessed by it. What kind of things can be done to improve the performance of NHibernate? (Please limit to one recommendation per answer)</p>
http://stackoverflow.com/questions/278430/what-are-the-best-ways-to-understand-an-unfamiliar-database8 What are the best ways to understand an unfamiliar database?Ray Vega2008-11-10T16:48:39Z2009-07-24T13:43:16Z
<p>What kind of approaches and techniques can you employ to become familiar with an existing database if you are tasked with supporting and/or modifying it? How can you easily and effectively ramp up your knowledge of a database you have never seen before?</p>
http://stackoverflow.com/questions/117129/what-are-best-practices-to-implement-security-when-using-nhibernate7What are best practices to implement security when using NHibernate?Ray Vega2008-09-22T19:52:52Z2009-07-02T20:43:51Z
<p>Traditionalist argue that stored procedures provide better security than if you use a Object Relational Mapping (ORM) framework such as NHibernate. </p>
<p>To counter that argument what are some approaches that can be used with NHibernate to ensure that proper security is in place (for example, preventing sql injection, etc.)?</p>
<p>(<em>Please provide only one approach per answer</em>)</p>
http://stackoverflow.com/questions/88399/how-do-i-duplicate-a-whole-line-in-emacs13How do I duplicate a whole line in Emacs?Ray Vega2008-09-17T22:36:33Z2009-06-30T08:07:08Z
<p>I saw <a href="http://stackoverflow.com/questions/73319/duplicate-a-whole-line-in-vim#73357">this same question for VIM</a> and it has been something that I myself wanted to know how to do for Emacs. In ReSharper I use CTRL-D for this action. What is the least number of commands to perform this in Emacs?</p>
http://stackoverflow.com/questions/1058485/in-visual-studio-how-do-you-make-a-specific-window-open-during-a-build/1059370#1059370Comment by Ray Vega on In Visual Studio, how do you make a specific window open during a build?Ray Vega2009-10-23T16:46:58Z2009-10-23T16:46:58ZHow do you find the Guid for that window or any window for that matter? I'd like to try this with other windows.http://stackoverflow.com/questions/466565/switch-stmt-in-c-and-a-constant-value-is-expectedComment by Ray Vega on switch stmt in C# and "a constant value is expected"Ray Vega2009-10-16T06:49:08Z2009-10-16T06:49:08Zsee question: <a href="http://stackoverflow.com/questions/44905/c-switch-statement-limitations-why" rel="nofollow" title="c switch statement limitations why">stackoverflow.com/questions/44905/…</a>http://stackoverflow.com/questions/190402/how-can-i-get-emacs-style-key-bindings-in-visual-studio/190409#190409Comment by Ray Vega on How can I get Emacs style key bindings in Visual Studio?Ray Vega2009-09-11T23:13:57Z2009-09-11T23:13:57ZAlso, it is not available in Express editions.http://stackoverflow.com/questions/94057/using-resharper-unit-test-runner-for-mstest-via-gallio/648805#648805Comment by Ray Vega on Using Resharper Unit Test Runner for MSTest via GallioRay Vega2009-09-10T22:39:50Z2009-09-10T22:39:50ZThat plugin now supports ReSharper 4.5: <a href="http://www.sneal.net/blog/2009/09/10/ReSharper45MsTestPlugin.aspx" rel="nofollow">sneal.net/blog/2009/…</a>http://stackoverflow.com/questions/1359469/innertext-works-in-ie-but-not-in-firefox/1359599#1359599Comment by Ray Vega on 'innerText' works in IE, but not in FirefoxRay Vega2009-08-31T22:43:27Z2009-08-31T22:43:27ZThis works except in the case if the text value is initially set to an empty string ("") then it fails in Firefox. It seems that the code also needs to check for that condition along with whether the 'textContent' property is supported or not.http://stackoverflow.com/questions/1139780/whats-the-best-and-most-efficient-book-to-learn-javascriptComment by Ray Vega on What's the best and most efficient book to learn JavaScript?Ray Vega2009-08-26T20:34:45Z2009-08-26T20:34:45Zsee duplicate: <a href="http://stackoverflow.com/questions/74884/good-javascript-books" rel="nofollow" title="good javascript books">stackoverflow.com/questions/74884/…</a>http://stackoverflow.com/questions/579920/can-firebug-set-breakpoints-in-external-javascript-filesComment by Ray Vega on Can Firebug set breakpoints in external JavaScript files?Ray Vega2009-08-25T20:41:26Z2009-08-25T20:41:26Zsee duplicate: <a href="http://stackoverflow.com/questions/32633/how-can-i-set-breakpoints-in-an-external-js-script-in-firebug" rel="nofollow" title="how can i set breakpoints in an external js script in firebug">stackoverflow.com/questions/32633/…</a>http://stackoverflow.com/questions/288317/visual-studio-where-is-intellisense-in-the-immediate-window/288361#288361Comment by Ray Vega on Visual Studio: Where is intellisense in the immediate window?Ray Vega2009-08-18T16:23:59Z2009-08-18T16:23:59ZIn general, I found that Intellisense works in Debug mode, but not in a "non-debug" mode. (A little known fact is that the Immediate window is still usable and functions even when not in debug mode.) But, I agree with Joel it is inconsistent.http://stackoverflow.com/questions/8607/any-good-way-to-use-emacs-for-c-development/64161#64161Comment by Ray Vega on Any good way to use Emacs for C# development?Ray Vega2009-08-03T16:16:17Z2009-08-03T16:16:17ZThat link for "C# Mode for emacs" is not useful. It's missing content.http://stackoverflow.com/questions/329921/whats-the-best-way-to-get-started-with-nhibernateComment by Ray Vega on What's the best way to get started with NHibernate?Ray Vega2009-03-25T20:38:37Z2009-03-25T20:38:37Zsee duplicate question: <a href="http://stackoverflow.com/questions/35727/101-tutorial-for-setting-up-nhibernate" rel="nofollow" title="101 tutorial for setting up nhibernate">stackoverflow.com/questions/35727/…</a>http://stackoverflow.com/questions/475152/how-can-i-learn-androidComment by Ray Vega on How can I learn Android?Ray Vega2009-03-24T22:06:50Z2009-03-24T22:06:50Zsee this related question: <a href="http://stackoverflow.com/questions/475152/how-can-i-learn-android" rel="nofollow" title="how can i learn android">stackoverflow.com/questions/475152/…</a>
http://stackoverflow.com/questions/656362/what-technologies-is-stack-overflow-usingComment by Ray Vega on What technologies is Stack Overflow using?Ray Vega2009-03-17T23:36:40Z2009-03-17T23:36:40Zhere is the original question that inspired the blog post: <a href="http://stackoverflow.com/questions/67131/is-stackoverflow-com-written-in-ruby-on-rails" rel="nofollow" title="is stackoverflow com written in ruby on rails">stackoverflow.com/questions/67131/…</a>http://stackoverflow.com/questions/623763/what-are-some-recommended-high-quality-non-basic-python-booksComment by Ray Vega on What are some recommended, high quality, non-basic python books?Ray Vega2009-03-09T21:04:51Z2009-03-09T21:04:51Zsee question: <a href="http://stackoverflow.com/questions/175001/is-there-a-definitive-book-on-python" rel="nofollow" title="is there a definitive book on python">stackoverflow.com/questions/175001/…</a>http://stackoverflow.com/questions/532305/is-it-possible-to-unit-test-sql-ms-sql-server-2005Comment by Ray Vega on Is it possible to Unit Test SQL (MS SQL Server 2005)?Ray Vega2009-03-06T17:57:45Z2009-03-06T17:57:45ZSee question: <a href="http://stackoverflow.com/questions/53527/how-can-you-unit-test-a-database-in-sql-server" rel="nofollow" title="how can you unit test a database in sql server">stackoverflow.com/questions/53527/…</a>http://stackoverflow.com/questions/202940/unit-tests-framework-for-databasesComment by Ray Vega on Unit tests framework for databasesRay Vega2009-03-06T17:57:11Z2009-03-06T17:57:11ZSee question: <a href="http://stackoverflow.com/questions/53527/how-can-you-unit-test-a-database-in-sql-server" rel="nofollow" title="how can you unit test a database in sql server">stackoverflow.com/questions/53527/…</a>