User Gabriel Isenberg - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T22:55:48Zhttp://stackoverflow.com/feeds/user/1839http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux21What can I use to profile C++ code in Linux?Gabriel Isenberg2008-12-17T20:29:24Z2009-12-08T01:41:50Z
<p>I have a C++ application I'm in the process of optimizing. What tool can I use to pinpoint my slow code? :)</p>
http://stackoverflow.com/questions/1314627/asp-net-globalization-cultureauto-page-directive-with-neutral-culture-crash4ASP.NET Globalization: Culture="auto" page directive with neutral culture crash?Gabriel Isenberg2009-08-21T23:32:08Z2009-11-03T03:46:00Z
<p>Hi all,</p>
<p>I'm running into a case where an ASP.NET application using the built-in globalization facilities is crashing. </p>
<p>On an ASP.NET page with the Culture="auto" directive, a user with a neutral culture as their browser language (such as "zh-Hans") will produce the following exception:</p>
<blockquote>
<p>Culture 'zh-Hans' is a neutral culture. It cannot be used in
formatting and parsing and therefore
cannot be set as the thread's current
culture.</p>
<p>at System.Globalization.CultureInfo.CheckNeutral(CultureInfo
culture)
at System.Threading.Thread.set_CurrentCulture(CultureInfo
value)
at System.Web.UI.Page.set_Culture(String
value)
at ASP.somePage_aspx.__BuildControlTree(somePage_aspx __ctrl)
at ASP.somePage_aspx.FrameworkInitialize()</p>
</blockquote>
<p>Any ideas? Garbage fed into the Culture/UICulture parameters generally seem to be ignored, but this case is causing an unhandled exception.</p>
http://stackoverflow.com/questions/1556218/wcf-asmx-and-cookies1WCF -> ASMX and CookiesGabriel Isenberg2009-10-12T18:43:43Z2009-10-21T23:56:16Z
<p>Hi all,</p>
<p>I have a web application that communicates to a WCF service through a WCF client. At the point my code is invoked, authentication cookies have been issued and I have a dependency on an ASMX service that expects those authentication cookies.</p>
<p>I need to pass the cookies from the web application through the WCF client to the WCF service to the ASMX service.</p>
<p>Any ideas? It looks like my best bet may be setting allowCookies to false, parsing out the cookie headers, attempting to re-create them on the WCF service and then attaching them to the SOAP request. </p>
<p>Note: I looked at <a href="http://stackoverflow.com/questions/201153/wcf-client-consuming-multiple-asmx-service-that-uses-http-cookies">this article</a>, which seems close but not quite applicable to this question. In the linked scenario, an ASMX service is creating cookies, which must be persisted to a subsequent ASMX service by the same WCF client.</p>
http://stackoverflow.com/questions/1112666/drawing-a-textured-quad-using-xna1Drawing a textured quad using XNAGabriel Isenberg2009-07-11T01:26:12Z2009-10-12T00:00:02Z
<p>Hi all,</p>
<p>I'm attempting to render a textured quad using the example located <a href="http://msdn.microsoft.com/en-us/library/bb464051.aspx" rel="nofollow">here</a>. </p>
<p>I can successfully render the quad, but the texture information appears to be lost. The quad takes the color of the underlying texture, though.</p>
<p>I've checked the obvious problems ("Does the BasicEffect rendering the quad have the TextureEnabled property set to true?") and can't immediately see the problem.</p>
<p>Code below:</p>
<pre><code>public class Quad
{
public VertexPositionNormalTexture[] Vertices;
public Vector3 Origin;
public Vector3 Up;
public Vector3 Normal;
public Vector3 Left;
public Vector3 UpperLeft;
public Vector3 UpperRight;
public Vector3 LowerLeft;
public Vector3 LowerRight;
public int[] Indexes;
public Quad(Vector3 origin, Vector3 normal, Vector3 up,
float width, float height)
{
this.Vertices = new VertexPositionNormalTexture[4];
this.Indexes = new int[6];
this.Origin = origin;
this.Normal = normal;
this.Up = up;
// Calculate the quad corners
this.Left = Vector3.Cross(normal, this.Up);
Vector3 uppercenter = (this.Up * height / 2) + origin;
this.UpperLeft = uppercenter + (this.Left * width / 2);
this.UpperRight = uppercenter - (this.Left * width / 2);
this.LowerLeft = this.UpperLeft - (this.Up * height);
this.LowerRight = this.UpperRight - (this.Up * height);
this.FillVertices();
}
private void FillVertices()
{
Vector2 textureUpperLeft = new Vector2(0.0f, 0.0f);
Vector2 textureUpperRight = new Vector2(1.0f, 0.0f);
Vector2 textureLowerLeft = new Vector2(0.0f, 1.0f);
Vector2 textureLowerRight = new Vector2(1.0f, 1.0f);
for (int i = 0; i < this.Vertices.Length; i++)
{
this.Vertices[i].Normal = this.Normal;
}
this.Vertices[0].Position = this.LowerLeft;
this.Vertices[0].TextureCoordinate = textureLowerLeft;
this.Vertices[1].Position = this.UpperLeft;
this.Vertices[1].TextureCoordinate = textureUpperLeft;
this.Vertices[2].Position = this.LowerRight;
this.Vertices[2].TextureCoordinate = textureLowerRight;
this.Vertices[3].Position = this.UpperRight;
this.Vertices[3].TextureCoordinate = textureUpperRight;
this.Indexes[0] = 0;
this.Indexes[1] = 1;
this.Indexes[2] = 2;
this.Indexes[3] = 2;
this.Indexes[4] = 1;
this.Indexes[5] = 3;
}
}
</code></pre>
<p><hr /></p>
<pre><code>this.quadEffect = new BasicEffect(this.GraphicsDevice, null);
this.quadEffect.AmbientLightColor = new Vector3(0.8f, 0.8f, 0.8f);
this.quadEffect.LightingEnabled = true;
this.quadEffect.World = Matrix.Identity;
this.quadEffect.View = this.View;
this.quadEffect.Projection = this.Projection;
this.quadEffect.TextureEnabled = true;
this.quadEffect.Texture = someTexture;
this.quad = new Quad(Vector3.Zero, Vector3.UnitZ, Vector3.Up, 2, 2);
this.quadVertexDecl = new VertexDeclaration(this.GraphicsDevice, VertexPositionNormalTexture.VertexElements);
</code></pre>
<p><hr /></p>
<pre><code>public override void Draw(GameTime gameTime)
{
this.GraphicsDevice.Textures[0] = this.SpriteDictionary["B1S1I800"];
this.GraphicsDevice.VertexDeclaration = quadVertexDecl;
quadEffect.Begin();
foreach (EffectPass pass in quadEffect.CurrentTechnique.Passes)
{
pass.Begin();
GraphicsDevice.DrawUserIndexedPrimitives<VertexPositionNormalTexture>(
PrimitiveType.TriangleList,
beamQuad.Vertices, 0, 4,
beamQuad.Indexes, 0, 2);
pass.End();
}
quadEffect.End();
}
</code></pre>
http://stackoverflow.com/questions/749760/silverlight-toolkit-treeview-getting-the-parent-of-a-selected-item1Silverlight Toolkit Treeview: Getting the parent of a selected itemGabriel Isenberg2009-04-14T23:45:23Z2009-10-06T00:01:11Z
<p>Hi all,</p>
<p>I'm using the TreeView component from the Silverlight toolkit and I'm trying to get the parent of a selected node. The TreeView is bound to a series of objects, so directly working with a TreeViewItem appears to be out of the question. </p>
<pre><code><toolkit:TreeView SelectedItemChanged="DoStuff" DisplayMemberPath="Name" ItemsSource="{Binding MyCollection}">
<toolkit:TreeView.ItemTemplate>
<common:HierarchicalDataTemplate ItemsSource="{Binding MySubCollection}">
<StackPanel>
<TextBlock Text="{Binding Name}" />
</StackPanel>
</common:HierarchicalDataTemplate>
</toolkit:TreeView.ItemTemplate>
</toolkit:TreeView>
</code></pre>
<p>Is there a way to fetch the parent of an item selected in the DoStuff event?</p>
http://stackoverflow.com/questions/18601/best-practice-for-integrating-tdd-with-web-application-development19Best practice for integrating TDD with web application development?Gabriel Isenberg2008-08-20T19:07:51Z2009-09-26T17:23:21Z
<p>Hi all,</p>
<p>Unit testing and ASP.NET web applications are an ambiguous point in my group. More often than not, good testing practices fall through the cracks and web applications end up going live for several years with no tests. </p>
<p>The cause of this pain point generally revolves around the hassle of writing UI automation mid-development. </p>
<p>How do you or your organization integrate best TDD practices with web application development?</p>
http://stackoverflow.com/questions/703054/on-a-deployed-asp-net-web-site-project-can-i-update-a-resx-file-without-recompi2On a deployed ASP.NET web site project, can I update a .resx file without recompiling?Gabriel Isenberg2009-03-31T21:05:38Z2009-09-18T15:36:10Z
<p>I'm deploying an ASP.NET application to a locked down Production environment. Pushing assemblies (satellite resource assemblies included) into this environment has process associated with it, but copying non-assemblies to the environment does not.</p>
<p>On an ASP.NET web site project, can I update a .resx file without recompiling?</p>
http://stackoverflow.com/questions/376335/are-data-structures-an-appropriate-place-for-sharedptr3Are data structures an appropriate place for shared_ptr?Gabriel Isenberg2008-12-17T22:47:35Z2009-08-07T08:59:57Z
<p>I'm in the process of implementing a binary tree in C++. Traditionally, I'd have a pointer to left and a pointer to right, but manual memory management typically ends in tears. Which leads me to my question...</p>
<p>Are data structures an appropriate place to use shared_ptr?</p>
http://stackoverflow.com/questions/1138542/xna-on-iphone/1138572#11385724Answer by Gabriel Isenberg for XNA on iPhoneGabriel Isenberg2009-07-16T15:54:05Z2009-07-16T15:54:05Z<p>I don't believe there is a good answer to your question. XNA doesn't target the iPhone, so the chances of being able to effectively port an XNA game without modifying the C# source code isn't likely to happen.</p>
<p>Instead, I'd recommend that you take a look at the various frameworks that exist to help you craft cross-platform games. <a href="http://unity3d.com/unity/" rel="nofollow">Unity</a> often comes up in these discussions, but it isn't free.</p>
<p>If cross-platform isn't your goal, but free iPhone development is, then I'd recommend looking at <a href="http://code.google.com/p/cocos2d-iphone/" rel="nofollow">Cocos</a>.</p>
<p>Edit: The <a href="http://www.mono-project.com/MonoTouch" rel="nofollow">MonoTouch</a> project may be able to assist you in the future, but doesn't help you out right now. Still, it's something to keep an eye on.</p>
http://stackoverflow.com/questions/188321/how-can-i-network-with-other-developers-at-stack-overflow8How can I network with other developers at Stack Overflow? [closed]Gabriel Isenberg2008-10-09T17:32:27Z2009-07-15T01:10:25Z
<p><strong>BELONGS ON META</strong></p>
<p>So let's say I get an answer from someone who seems like a nice guy to have around and is open to contact after answering a question. How can I start networking with other developers at Stack Overflow? </p>
<p>Messaging functionality isn't present. Does Stack Overflow end at the Q&A?</p>
http://stackoverflow.com/questions/995823/asp-net-button-click-event-not-working-in-ie/1106783#11067830Answer by Gabriel Isenberg for ASP.NET button click event not working in IEGabriel Isenberg2009-07-09T22:31:59Z2009-07-09T22:31:59Z<p>I'd also check for malformed HTML or any additional script that might interfere or intercept the postback unreliably. </p>
http://stackoverflow.com/questions/1024094/evaluation-sheet-for-fresh-net-developer/1029199#10291994Answer by Gabriel Isenberg for Evaluation Sheet for Fresh .NET Developer ?Gabriel Isenberg2009-06-22T20:19:38Z2009-06-22T20:19:38Z<p>Measuring things like code quality can be difficult. It's subjective and can be a function of time. </p>
<p>I'd argue that ASP.NET-based applications make this problem worse, as not only is the core language changing dramatically every few years, but new technologies (WPF/Silverlight/XAML, WCF, ASP.NET MVC) that influence your application are coming out all the time. </p>
<p>If you look for best practices on one particular point, that might cause you to toss out a really ideal candidate. I'd worry less about "What do I look for in the code?" and more about "What do I look for in the candidate?"</p>
<p>Here's what I'd hope for:</p>
<ul>
<li><p><em>Are they interested in learning?</em> This is an incredibly important point. If you're providing them with feedback, are they listening? Are they proactively seeking better ways to do things? If the next big technology comes out, can I count on them to ramp up on the API on their own?</p></li>
<li><p><em>Do they have a passion for software development?</em> Are they excited about development? Is this their core competency, or are they more excited about a pay check? Are they doing something in their spare time to keep their skills sharp?</p></li>
<li><p><em>Do they work well without supervision?</em> Will they let themselves get blocked by minor details and miss deliverables, or will they proactively seek to get back on track? If they are given a task, can I count on them to get it done without micromanagement?</p></li>
</ul>
<p>If I were looking at the code, my priorities would be:</p>
<ul>
<li><p><em>Is the code they write functionally correct?</em> Does their output actually work and meet all business requirements? Does it do so in a stable way, or does it crash? </p></li>
<li><p><em>Is their code easy to read and maintain?</em> Does the application adapt to changing business requirements well, or are changes impossible without intimate knowledge of the code?</p></li>
<li><p><em>Are they making an effective use of readily-available data structures, or are they reinventing the wheel?</em> If they are reinventing the wheel, do they take my feedback to heart in future deliverables, do they reject my feedback with a well-reasoned argument, or do they continue along the same path?</p></li>
</ul>
http://stackoverflow.com/questions/784003/c-linq-code-refactoring/784024#7840240Answer by Gabriel Isenberg for C# Linq Code RefactoringGabriel Isenberg2009-04-23T23:49:45Z2009-04-23T23:49:45Z<pre><code>from question in db.Survey_Questions
let surveys = (from s in db.Surveys
where string.Equals(s.Type, type, StringComparison.InvariantCultureIgnoreCase) &&
s.Type_ID == typeID)
where surveys.Any() &&
surveys.Contains(s => s.ID == question.ID)
select new Mapper.Question
{
ID = question.Id,
Name = question.Name,
Text = question.Text,
Choices = ToBusinessObject(question.Question_Choices.ToList()),
Status = question.Status
}
</code></pre>
<p>Does that get you on the right track?</p>
http://stackoverflow.com/questions/736443/ironpython-and-c-script-access-to-c-objects3IronPython and C# - Script Access to C# Objects Gabriel Isenberg2009-04-10T01:17:56Z2009-04-17T10:38:46Z
<p>Hi all,</p>
<p>Consider the code below:</p>
<pre><code>ScriptRuntimeSetup setup = Python.CreateRuntimeSetup(null);
ScriptRuntime runtime = new ScriptRuntime(setup);
ScriptEngine engine = Python.GetEngine(runtime);
ScriptScope scope = engine.CreateScope();
scope.SetVariable("message", "Hello, world!");
string script = @"print message";
ScriptSource source = scope.Engine.CreateScriptSourceFromString(script, SourceCodeKind.Statements);
source.Execute();
</code></pre>
<p>This code yields the following exception: </p>
<blockquote>
<p>Microsoft.Scripting.Runtime.UnboundNameException
was unhandled Message="name
'message' is not defined"</p>
</blockquote>
<p>What am I missing?</p>
http://stackoverflow.com/questions/231951/whats-the-next-thing-on-your-list-to-learn/752616#7526160Answer by Gabriel Isenberg for What's the next thing on your list to learn?Gabriel Isenberg2009-04-15T16:42:46Z2009-04-15T16:42:46Z<p>In no particular order: </p>
<ul>
<li>Calculus</li>
<li>Linear Algebra</li>
<li>Python</li>
<li>IronPython / Dynamic Language Runtime</li>
<li>Objective-C</li>
<li>Cocoa Touch</li>
<li>XNA</li>
<li>JQuery</li>
<li>ASP.NET MVC</li>
<li>Silverlight</li>
<li>Emacs</li>
<li>Subversion</li>
</ul>
http://stackoverflow.com/questions/702896/when-do-you-put-a-programming-language-on-your-resume21When do you put a programming language on your resume?Gabriel Isenberg2009-03-31T20:27:51Z2009-04-14T05:10:27Z
<p>I have a handful of side projects that use various programming languages. My job doesn't really warrant the use of those languages in a professional capacity, but I can still get useful stuff done in a variety of languages. </p>
<p>I only really feel comfortable putting the language I'm strongest with on my resume, but I don't think that's enough to get attention. However, without working in other languages in a professional capacity, I don't really feel comfortable putting them on my resume. </p>
<p>So, at what point do you add another programming language to your resume? Where do you draw the line?</p>
<h3>Related:</h3>
<p><a href="http://stackoverflow.com/questions/19164/do-you-really-know-your-programming-languages">Do you really know your programming languages?</a></p>
http://stackoverflow.com/questions/715431/what-code-sample-should-i-bring-to-an-interview/744889#7448891Answer by Gabriel Isenberg for What code sample should I bring to an interview?Gabriel Isenberg2009-04-13T18:26:11Z2009-04-13T18:26:11Z<p>Make sure you don't bring code from your previous or current job. Bringing in code owned by your prior company can be grounds for immediately ending the interview. That code is confidential information from and it also shows that you may inadvertently leak confidential information in the future if hired.</p>
<p>This question is tricky because, in many cases, it's also looking to see if you are actively doing development work outside of your responsibilities at work. They want to find the the people that love what they do, and the guys who can only bring in confidential code aren't it.</p>
http://stackoverflow.com/questions/736781/instantiating-custom-net-types-in-ironpython0Instantiating custom .NET types in IronPythonGabriel Isenberg2009-04-10T05:18:05Z2009-04-10T05:28:19Z
<p>Assume the following code:</p>
<pre><code>public class Foo
{
public string Bar { get; set; }
}
</code></pre>
<p>How can I instantiate an instance of Foo in the following code?</p>
<pre><code>ScriptRuntimeSetup setup = Python.CreateRuntimeSetup(null);
ScriptRuntime runtime = new ScriptRuntime(setup);
ScriptEngine engine = Python.GetEngine(runtime);
ScriptScope scope = engine.CreateScope();
string script = @"x = ***???***";
ScriptSource source = engine.CreateScriptSourceFromString(script, SourceCodeKind.Statements);
source.Execute(scope);
</code></pre>
http://stackoverflow.com/questions/708047/the-value-of-unit-testing/708461#7084612Answer by Gabriel Isenberg for The Value of Unit TestingGabriel Isenberg2009-04-02T06:02:11Z2009-04-02T06:02:11Z<p>Don't sell management on a particular approach; that's just going to be difficult and isn't really going to buy you much. Whether or not your management chain appreciates unit tested code doesn't matter. </p>
<p>Sure, unit testing your code has a lot of benefits associated with it, but don't rely on management buy-off to write your tests. When people start seeing results, they'll flock towards The Right Thing. </p>
http://stackoverflow.com/questions/700205/what-is-your-best-friend-as-a-programmer/702855#7028551Answer by Gabriel Isenberg for What is your "best friend" as a programmer?Gabriel Isenberg2009-03-31T20:19:09Z2009-03-31T20:19:09Z<p><a href="http://www.linqpad.net/" rel="nofollow">LINQPad</a> :D</p>
http://stackoverflow.com/questions/687391/diagnosing-sqlconnection-leaks2Diagnosing SqlConnection leaks?Gabriel Isenberg2009-03-26T20:10:58Z2009-03-26T21:28:20Z
<p>Hi all,</p>
<p>I'm running into an issue with a web application that is exhausting all available connections in the connection pool. I seem to recall some good tools used to diagnose all active connections, but am drawing a blank. What are some good options for diagnosing this issue?</p>
http://stackoverflow.com/questions/415036/how-do-i-associate-metadata-with-a-deepzoom-subimage0How do I associate metadata with a DeepZoom SubImage?Gabriel Isenberg2009-01-06T00:26:28Z2009-03-20T07:29:01Z
<p>Hi all,</p>
<p>I'm trying to sort through a collection of DeepZoom sub-images based on arbitrary data associated with each image. The sub-images get loaded automagically through an XML file generated by DeepZoom Composer. I don't see a clear way to associate arbitrary data with a DeepZoom sub-image. </p>
<p>The solutions that seem most obvious to me are brittle and don't scale well. Ideally, I'd like to put the relevant data in the generated XML file, but I'd lose that information on the next set of generated images. </p>
<p>Is there a well-established way of accomplishing this goal?</p>
http://stackoverflow.com/questions/97733/using-postsharp-to-intercept-calls-to-silverlight-objects1Using PostSharp to intercept calls to Silverlight objects?Gabriel Isenberg2008-09-18T22:41:54Z2009-03-16T10:15:25Z
<p>Hi all,</p>
<p>I'm working with PostSharp to intercept method calls to objects I don't own, but my aspect code doesn't appear to be getting called. The documentation seems pretty lax in the Silverlight area, so I'd appreciate any help you guys can offer :)</p>
<p>I have an attribute that looks like:</p>
<pre><code>public class LogAttribute : OnMethodInvocationAspect
{
public override void OnInvocation(MethodInvocationEventArgs eventArgs)
{
// Logging code goes here...
}
}
</code></pre>
<p>And an entry in my AssemblyInfo that looks like:</p>
<pre><code>[assembly: Log(AttributeTargetAssemblies = "System.Windows", AttributeTargetTypes = "System.Windows.Controls.*")]
</code></pre>
<p>So, my question to you is... what am I missing? Method calls under matching attribute targets don't appear to function.</p>
http://stackoverflow.com/questions/627656/determining-if-a-parameter-uses-params-using-reflection-in-c2Determining if a parameter uses "params" using reflection in C#?Gabriel Isenberg2009-03-09T19:29:41Z2009-03-09T19:41:28Z
<p>Consider this method signature:</p>
<pre><code>public static void WriteLine(string input, params object[] myObjects)
{
// Do stuff.
}
</code></pre>
<p>How can I determine that the WriteLine method's "myObjects" pararameter uses the params keyword and can take variable arguments?</p>
http://stackoverflow.com/questions/188030/mathematics-and-game-programming/188049#1880495Answer by Gabriel Isenberg for Mathematics and Game ProgrammingGabriel Isenberg2008-10-09T16:24:31Z2009-03-03T21:20:45Z<p>I'm currently going through "<a href="http://rads.stackoverflow.com/amzn/click/0596000065" rel="nofollow">Physics for Game Developers</a>" by David M. Bourg. So far, I'd recommend it. </p>
<p>It provides the math-y concepts behind physics that can easily be applied to the 2D realm to spice up your games a bit.</p>
http://stackoverflow.com/questions/234503/what-are-you-using-to-unit-test-your-c-code2What are you using to unit test your C++ code?Gabriel Isenberg2008-10-24T17:32:08Z2009-02-12T22:13:34Z
<p>I'm looking into some possible options for unit testing C++ classes. </p>
<p>So, short and to the point, what are you using?</p>
http://stackoverflow.com/questions/192479/whats-the-coolest-hack-youve-seen-or-done/192482#19248211Answer by Gabriel Isenberg for What's the coolest hack you've seen or done?Gabriel Isenberg2008-10-10T18:04:53Z2009-02-12T21:27:39Z<p><a href="http://en.wikipedia.org/wiki/Duffs_device" rel="nofollow">Duff's Device</a>. Does that count? :)</p>
http://stackoverflow.com/questions/415036/how-do-i-associate-metadata-with-a-deepzoom-subimage/476724#4767241Answer by Gabriel Isenberg for How do I associate metadata with a DeepZoom SubImage?Gabriel Isenberg2009-01-24T21:56:19Z2009-01-24T21:56:19Z<p>Metadata.xml has a Tag property that can be associated with each image. Hurray!</p>
http://stackoverflow.com/questions/179735/what-are-some-good-resources-on-2d-game-engine-design7What are some good resources on 2D game engine design?Gabriel Isenberg2008-10-07T18:25:03Z2009-01-04T15:42:25Z
<p>Hi all,</p>
<p>I'm messing around with 2D game development using C++ and DirectX in my spare time. I'm finding that the enterprisey problem domain modeling approach doesn't help as much as I'd like ;)</p>
<p>I'm more or less looking for a "best practices" equivalent to basic game engine design. How entities should interact with each other, how animations and sounds should be represented in an ideal world, and so on. </p>
<p>Anyone have good resources they can recommend? </p>
http://stackoverflow.com/questions/383876/javascript-ria-vs-net-gui/383882#3838820Answer by Gabriel Isenberg for Javascript RIA vs .NET GUIGabriel Isenberg2008-12-20T23:36:27Z2008-12-20T23:36:27Z<p>I'd say it depends on the UI features being replicated. Hard to gauge the unknown :)</p>
http://stackoverflow.com/questions/1556218/wcf-asmx-and-cookiesComment by Gabriel Isenberg on WCF -> ASMX and CookiesGabriel Isenberg2009-10-13T16:36:07Z2009-10-13T16:36:07ZCookies are issued by another web application. The WCF service does not use the cookies, but needs to pass them through to the ASMX service. http://stackoverflow.com/questions/749760/silverlight-toolkit-treeview-getting-the-parent-of-a-selected-item/752221#752221Comment by Gabriel Isenberg on Silverlight Toolkit Treeview: Getting the parent of a selected itemGabriel Isenberg2009-04-15T16:37:12Z2009-04-15T16:37:12ZThat's the sensible thing to do, but doesn't answer the question. :)http://stackoverflow.com/questions/112941/create-program-installer-in-visual-studio-2005/113133#113133Comment by Gabriel Isenberg on Create program installer in Visual Studio 2005?Gabriel Isenberg2008-12-20T23:12:36Z2008-12-20T23:12:36Z+1. WiX is awesome and way easier to work with than the setup projects.http://stackoverflow.com/questions/381642/is-there-any-good-framework-or-library-for-c-snips-of-design-patterns/381655#381655Comment by Gabriel Isenberg on Is there any good framework or library for c# snips of design-patterns?Gabriel Isenberg2008-12-20T04:07:03Z2008-12-20T04:07:03ZI don't see how this is relevant to the question. He's talking about bundling a bunch of C# snippets for redistribution, not a magical master library.http://stackoverflow.com/questions/251460/can-i-run-visual-studio-2008-x86-on-windows-vista-x64/251492#251492Comment by Gabriel Isenberg on Can I run Visual Studio 2008 x86 on Windows Vista x64?Gabriel Isenberg2008-10-30T19:57:55Z2008-10-30T19:57:55ZGood point. Registry operations get a bit more complicated, too.http://stackoverflow.com/questions/251460/can-i-run-visual-studio-2008-x86-on-windows-vista-x64/251492#251492Comment by Gabriel Isenberg on Can I run Visual Studio 2008 x86 on Windows Vista x64?Gabriel Isenberg2008-10-30T19:45:39Z2008-10-30T19:45:39Z+1. Keep in mind that compiling your apps with "Any CPU" and x86 dependencies you don't own will introduce pain.http://stackoverflow.com/questions/234503/what-are-you-using-to-unit-test-your-c-code/234576#234576Comment by Gabriel Isenberg on What are you using to unit test your C++ code?Gabriel Isenberg2008-10-24T18:00:29Z2008-10-24T18:00:29ZSearching for the topic and digging through the unit testing category yielded no matches. Related questions doesn't show any matches, either.
Apologies for the dupe, but finding information isn't as easy as it should be.http://stackoverflow.com/questions/224867/what-programming-language-do-you-wish-would-quietly-retire/224887#224887Comment by Gabriel Isenberg on What programming language do you wish would quietly retire?Gabriel Isenberg2008-10-22T21:05:59Z2008-10-22T21:05:59Z+1. The "tweak CSS by one pixel and refresh in N browsers" process is painful.http://stackoverflow.com/questions/220165/resources-for-learning-gnumake/220242#220242Comment by Gabriel Isenberg on Resources for learning GNUMake?Gabriel Isenberg2008-10-20T23:11:07Z2008-10-20T23:11:07ZAnything tutorial-like to accompany this? I understand the general concepts of GNUMake, but the makefile syntax is a bit arcane.http://stackoverflow.com/questions/220165/resources-for-learning-gnumake/220177#220177Comment by Gabriel Isenberg on Resources for learning GNUMake?Gabriel Isenberg2008-10-20T22:37:21Z2008-10-20T22:37:21ZI had heard that a family tree for makefiles would look pretty incestuous. :Dhttp://stackoverflow.com/questions/68862/how-to-remain-employable-in-the-face-of-constant-technological-change/68875#68875Comment by Gabriel Isenberg on How to remain employable in the face of constant technological changeGabriel Isenberg2008-10-20T22:25:16Z2008-10-20T22:25:16ZI'd argue that software development is more about learning and less about specializing. The ability to rapidly ramp up on new language features, APIs and technologies trumps being really good at COBOL.http://stackoverflow.com/questions/205568/have-trivial-properties-ever-saved-your-bacon/205577#205577Comment by Gabriel Isenberg on Have trivial properties ever saved your bacon?Gabriel Isenberg2008-10-15T17:56:41Z2008-10-15T17:56:41ZYou can do an automatic property with a private set, which gets you part of the way there.http://stackoverflow.com/questions/159855/performing-wix-v3-customactions-with-no-console-output/173793#173793Comment by Gabriel Isenberg on Performing WiX v3 CustomActions with no console output?Gabriel Isenberg2008-10-09T16:51:58Z2008-10-09T16:51:58ZThat's not the issue. The custom action runs, but the installation logs show "Unable to find Command Line data", followed by "Unable to find Command Line", followed by an error.http://stackoverflow.com/questions/128705/do-you-ever-code-just-for-fun/128899#128899Comment by Gabriel Isenberg on Do you ever code just for fun?Gabriel Isenberg2008-10-09T16:03:07Z2008-10-09T16:03:07ZI think there's a difference between loving your work and loving software development.
The developers I admire most have a tremendous passion for software development and more or less <i>can't</i> stop coding, whether they are at work or not. http://stackoverflow.com/questions/176537/well-designed-net-sample-application/176547#176547Comment by Gabriel Isenberg on well designed .Net sample applicationGabriel Isenberg2008-10-06T23:21:58Z2008-10-06T23:21:58ZHaphazardly building an app in unfamiliar tech territory isn't really a good way to see what best practices are.