User Greg - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T01:14:53Z http://stackoverflow.com/feeds/user/12971 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1792048/in-c-3-0-is-it-possible-to-add-implicit-operators-to-the-string-class/1792066#1792066 0 Answer by Greg for In c# 3.0, is it possible to add implicit operators to the string class? Greg 2009-11-24T18:43:01Z 2009-11-24T18:43:01Z <p>What you are trying to do in your example (defining an implicit operation from string to int) is not allowed.</p> <p>Since an operation (implicit OR explicit) can only be defined in the class definition of the target or destination class, you cannot define your own operations between framework types.</p> http://stackoverflow.com/questions/1787134/if-i-search-for-my-companies-domain-on-google-it-returns-a-different-domain-it/1787228#1787228 0 Answer by Greg for If I search for my companies domain on google, it returns a different domain. It might be our fault. help Greg 2009-11-24T01:23:28Z 2009-11-24T01:34:56Z <p>Anytime the Googlebot follows a link to one of your websites, it get redirected to the US version (assuming Google is operating out of the US). Therefore the US version gets all the PageRank credit for those incoming links, and the UK version gets none.</p> <p>To solve: check the UserAgent and don't perform a redirect for know robots like Google.</p> <p>Also, your redirect probably shouldn't be a 301 (permanent). A 302 (temporary) redirect would be more appropriate.</p> http://stackoverflow.com/questions/1372885/paypal-recurring-payments/1773297#1773297 0 Answer by Greg for Paypal recurring payments Greg 2009-11-20T21:18:19Z 2009-11-20T21:18:19Z <p>How about using <strong>Billing Agreement</strong> (<em>Pay List</em> in your PayPal profile) like what iTunes and woot.com uses. I don't know too much about it from a merchant perspective but as a customer I know that once I authorize Apple/Woot, they can charge my PayPal account without me personally interacting with PayPal. And I can cancel the agreement at any time.</p> http://stackoverflow.com/questions/1771786/question-mark-in-javascript/1771824#1771824 5 Answer by Greg for Question mark in JavaScript Greg 2009-11-20T16:58:30Z 2009-11-20T17:14:32Z <p>It is called the <a href="http://en.wikipedia.org/wiki/Ternary%5Foperation" rel="nofollow">Ternary Operator</a>.</p> <p>It has the form of: <code>condition</code> ? <code>value-if-true</code> : <code>value-if-false</code><br> Think of the <code>?</code> as "then" and <code>:</code> as "else".</p> <p>Your code is equivalent to</p> <pre><code>if (max != 0) hsb.s = 255 * delta / max; else hsb.s = 0; </code></pre> http://stackoverflow.com/questions/1676577/c-console-app-deployment/1676615#1676615 1 Answer by Greg for C# console app deployment Greg 2009-11-04T21:03:45Z 2009-11-05T15:20:22Z <p>It would be mostly the same process as the Java program. To deploy, compile the program and copy the exe from the bin folder (along with any dependencies) to the network share.</p> <p>To run the program users would open the command prompt, navigate to shared folder, and type "programName.exe inputParameter1 inputParameter2"</p> http://stackoverflow.com/questions/1663022/whats-exactly-plinq/1663027#1663027 2 Answer by Greg for What's exactly PLinq? Greg 2009-11-02T19:03:13Z 2009-11-02T19:03:13Z <p><a href="http://en.wikipedia.org/wiki/Parallel%5FExtensions" rel="nofollow">Parallel Extensions</a></p> http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/1662892#1662892 0 Answer by Greg for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow) Greg 2009-11-02T18:36:56Z 2009-11-02T18:44:14Z <p>A pattern for parsing that avoids <code>out</code> parameters:</p> <pre><code>public static bool TryParseInt32(this string input, Action&lt;int&gt; action) { int result; if (Int32.TryParse(input, out result)) { action(result); return true; } return false; } </code></pre> <p>Usage:</p> <pre><code>if (!textBox.Text.TryParseInt32(number =&gt; label.Text = SomeMathFunction(number))) label.Text = "Please enter a valid integer"; </code></pre> <p><em>This can be put this in the codeplex project, if so desired</em></p> http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/1662833#1662833 0 Answer by Greg for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow) Greg 2009-11-02T18:20:57Z 2009-11-02T18:43:38Z <p>FindControl with built-in casting:</p> <pre><code>public static T FindControl&lt;T&gt;(this Control control, string id) where T : Control { return (T)control.FindControl(id); } </code></pre> <p>It's nothing amazing, but I feel it makes for cleaner code. </p> <pre><code>// With extension method container.FindControl&lt;TextBox&gt;("myTextBox").SelectedValue = "Hello world!"; // Without extension method ((TextBox)container.FindControl("myTextBox")).SelectedValue = "Hello world!"; </code></pre> <p><em>This can be put this in the codeplex project, if so desired</em></p> http://stackoverflow.com/questions/279534/proper-way-to-implement-ixmlserializable 17 Proper way to implement IXmlSerializable? Greg 2008-11-10T23:19:09Z 2009-10-27T09:36:57Z <p>Once a programmer decides to implement IXmlSerializable, what are the rules and best practices for implementing it? I've heard that GetSchema() should return null and ReadXml should move to the next element before returning. Are these true? And what about WriteXml: should it write a root element for the object or is it assumed that the root is already written? How should child objects be treated and written.</p> <p>Here's a sample of what I have now. I'll update it as I get good responses.</p> <pre><code>public class Calendar: IEnumerable&lt;Gvent&gt;, IXmlSerializable { public XmlSchema GetSchema() { return null; } public void ReadXml(XmlReader reader) { if (reader.MoveToContent() == XmlNodeType.Element &amp;&amp; reader.LocalName == "Calendar") { _Name = reader["Name"]; _Enabled = Boolean.Parse(reader["Enabled"]); _Color = Color.FromArgb(Int32.Parse(reader["Color"])); if (reader.ReadToDescendant("Event")) { while (reader.MoveToContent() == XmlNodeType.Element &amp;&amp; reader.LocalName == "Event") { var evt = new Event(); evt.ReadXml(reader); _Events.Add(evt); } } reader.Read(); } } public void WriteXml(XmlWriter writer) { writer.WriteAttributeString("Name", _Name); writer.WriteAttributeString("Enabled", _Enabled.ToString()); writer.WriteAttributeString("Color", _Color.ToArgb().ToString()); foreach (var evt in _Events) { writer.WriteStartElement("Event"); evt.WriteXml(writer); writer.WriteEndElement(); } } } public class Event : IXmlSerializable { public XmlSchema GetSchema() { return null; } public void ReadXml(XmlReader reader) { if (reader.MoveToContent() == XmlNodeType.Element &amp;&amp; reader.LocalName == "Event") { _Title = reader["Title"]; _Start = DateTime.FromBinary(Int64.Parse(reader["Start"])); _Stop = DateTime.FromBinary(Int64.Parse(reader["Stop"])); reader.Read(); } } public void WriteXml(XmlWriter writer) { writer.WriteAttributeString("Title", _Title); writer.WriteAttributeString("Start", _Start.ToBinary().ToString()); writer.WriteAttributeString("Stop", _Stop.ToBinary().ToString()); } } </code></pre> http://stackoverflow.com/questions/1335426/is-there-a-built-in-c-net-system-api-for-hsv-to-rgb/1626232#1626232 1 Answer by Greg for Is there a built-in C#/.NET System API for HSV to RGB? Greg 2009-10-26T17:44:56Z 2009-10-26T17:44:56Z <p>There isn't a built-in method for doing this, but the calculations aren't terribly complex.<br /> Also note that Color's GetHue(), GetSaturation() and GetBrightness() return HSL values, not HSV.</p> <p>The following C# code converts between RGB and HSV using the algorithms described on <a href="http://en.wikipedia.org/wiki/HSL%5Fand%5FHSV" rel="nofollow">Wikipedia</a>.<br /> I already posted this answer <a href="http://stackoverflow.com/questions/359612/how-to-change-rgb-color-to-hsv/1626175#1626175">here</a>, but I'll copy the code here for quick reference.</p> <pre><code>public static void ColorToHSV(Color color, out double hue, out double saturation, out double value) { int max = Math.Max(color.R, Math.Max(color.G, color.B)); int min = Math.Min(color.R, Math.Min(color.G, color.B)); hue = color.GetHue(); saturation = (max == 0) ? 0 : 1d - (1d * min / max); value = max / 255d; } public static Color ColorFromHSV(double hue, double saturation, double value) { int hi = Convert.ToInt32(Math.Floor(hue / 60)) % 6; double f = hue / 60 - Math.Floor(hue / 60); value = value * 255; int v = Convert.ToInt32(value); int p = Convert.ToInt32(value * (1 - saturation)); int q = Convert.ToInt32(value * (1 - f * saturation)); int t = Convert.ToInt32(value * (1 - (1 - f) * saturation)); if (hi == 0) return Color.FromArgb(255, v, t, p); else if (hi == 1) return Color.FromArgb(255, q, v, p); else if (hi == 2) return Color.FromArgb(255, p, v, t); else if (hi == 3) return Color.FromArgb(255, p, q, v); else if (hi == 4) return Color.FromArgb(255, t, p, v); else return Color.FromArgb(255, v, p, q); } </code></pre> http://stackoverflow.com/questions/359612/how-to-change-rgb-color-to-hsv/1626175#1626175 0 Answer by Greg for How to change RGB color to HSV? Greg 2009-10-26T17:34:29Z 2009-10-26T17:34:29Z <p>Note that Color.GetSaturation() and Color.GetBrightness() return HSL values, not HSV.<br /> The following code demonstrates the difference.</p> <pre><code>Color original = Color.FromArgb(50, 120, 200); // original = {Name=ff3278c8, ARGB=(255, 50, 120, 200)} double hue; double saturation; double value; ColorToHSV(original, out hue, out saturation, out value); // hue = 212.0 // saturation = 0.78431372549019607 // value = 0.75 Color copy = ColorFromHSV(hue, saturation, value); // copy = {Name=ff3278c8, ARGB=(255, 50, 120, 200)} // Compare that to the HSL values that the .NET framework provides: original.GetHue(); // 212.0 original.GetSaturation(); // 0.6 original.GetBrightness(); // 0.490196079 </code></pre> <p>The following C# code is what you want. It converts between RGB and HSV using the algorithms described on <a href="http://en.wikipedia.org/wiki/HSL%5Fand%5FHSV" rel="nofollow">Wikipedia</a>. </p> <pre><code>public static void ColorToHSV(Color color, out double hue, out double saturation, out double value) { int max = Math.Max(color.R, Math.Max(color.G, color.B)); int min = Math.Min(color.R, Math.Min(color.G, color.B)); hue = color.GetHue(); saturation = (max == 0) ? 0 : 1d - (1d * min / max); value = max / 255d; } public static Color ColorFromHSV(double hue, double saturation, double value) { int hi = Convert.ToInt32(Math.Floor(hue / 60)) % 6; double f = hue / 60 - Math.Floor(hue / 60); value = value * 255; int v = Convert.ToInt32(value); int p = Convert.ToInt32(value * (1 - saturation)); int q = Convert.ToInt32(value * (1 - f * saturation)); int t = Convert.ToInt32(value * (1 - (1 - f) * saturation)); if (hi == 0) return Color.FromArgb(255, v, t, p); else if (hi == 1) return Color.FromArgb(255, q, v, p); else if (hi == 2) return Color.FromArgb(255, p, v, t); else if (hi == 3) return Color.FromArgb(255, p, q, v); else if (hi == 4) return Color.FromArgb(255, t, p, v); else return Color.FromArgb(255, v, p, q); } </code></pre> http://stackoverflow.com/questions/1558478/linq-to-twitter-library-comparisons 0 LINQ to Twitter library comparisons Greg 2009-10-13T06:25:38Z 2009-10-22T00:27:59Z <p>What LINQ providers exist for Twitter and <em>how do they compare</em>? Are there any that let you query tweets, following, and followers in addition to publishing tweets? What about relational support? e.g.</p> <pre><code>from user in my-followers where user.name.contains("drew") and user.followers.count &gt; 10 from tweet in user.tweets where tweet.message.length &lt; 100 select tweet.message </code></pre> <p><strong>Edit:</strong> Yes, I can easily find Twitter APIs using Google. What's interesting is a comparison of the available libraries in terms of their LINQ capabilities, object-orientedness, and feature support.</p> http://stackoverflow.com/questions/55984/what-is-the-difference-between-const-and-readonly/1557937#1557937 0 Answer by Greg for What is the difference between const and readonly? Greg 2009-10-13T02:26:55Z 2009-10-13T02:26:55Z <p>Yet another gotcha: readonly values can be changed by "devious" code via reflection.</p> <pre><code>var fi = this.GetType().BaseType.GetField("_someField", BindingFlags.Instance | BindingFlags.NonPublic); fi.SetValue(this, 1); </code></pre> <p><a href="http://stackoverflow.com/questions/1401458/can-i-change-a-private-readonly-inherited-field-in-c-using-reflection/1401499#1401499">Can I change a private readonly inherited field in C# using reflection?</a></p> http://stackoverflow.com/questions/1466245/group-date-as-month/1466257#1466257 0 Answer by Greg for Group date as month Greg 2009-09-23T14:15:05Z 2009-09-23T14:15:05Z <pre><code>GROUP BY YEAR(i.push_date), MONTH(i.push_date) </code></pre> http://stackoverflow.com/questions/821780/how-can-i-serialize-an-object-that-has-an-interface-as-a-property/821872#821872 0 Answer by Greg for How can I serialize an object that has an interface as a property? Greg 2009-05-04T20:24:40Z 2009-05-04T20:24:40Z <p>Implement ISerializable on your objects to control the serialization.</p> <pre><code>[Serializable] public class ClassB : IB, ISerializable { public IA InterfaceA { get; set; } public void SetIA(IA value) { this.InterfaceA = value as ClassA; } private MyStringData(SerializationInfo si, StreamingContext ctx) { Type interfaceAType = System.Type.GetType(si.GetString("InterfaceAType")); this.InterfaceA = si.GetValue("InterfaceA", interfaceAType); } void GetObjectData(SerializationInfo info, StreamingContext ctx) { info.AddValue("InterfaceAType", this.InterfaceA.GetType().FullName); info.AddValue("InterfaceA", this.InterfaceA); } } </code></pre> http://stackoverflow.com/questions/699983/what-causes-windows-firewall-to-block-an-application/700014#700014 1 Answer by Greg for What causes Windows Firewall to block an application? Greg 2009-03-31T04:42:43Z 2009-04-09T19:11:35Z <p>Windows Firewall will only be triggered if your program is listening on a port - effectively acting as a server. System.Diagnostics.Process.Start will not trigger Windows Firewall.</p> <p>Instead, WindowsFormsApplicationBase is likely causing the firewall warning, because WindowsFormsApplicationBase uses remoting to sense other instances of itself. Using reflector, I found this code in WindowsFormsApplicationBase.Run():</p> <pre><code>TcpChannel channel = this.RegisterChannel(secureChannel); RemoteCommunicator communicator = new RemoteCommunicator(this, this.m_MessageRecievedSemaphore); string uRI = applicationInstanceID + ".rem"; new SecurityPermission(SecurityPermissionFlag.RemotingConfiguration).Assert(); RemotingServices.Marshal(communicator, uRI); CodeAccessPermission.RevertAssert(); string uRL = channel.GetUrlsForUri(uRI)[0]; this.WriteUrlToMemoryMappedFile(uRL); this.m_FirstInstanceSemaphore.Set(); this.DoApplicationModel(); </code></pre> <p>As long as you use WindowsFormsApplicationBase for its SingleInstance feature, I don't know of any way around this.</p> http://stackoverflow.com/questions/735282/why-does-squeak-use-colors-to-identify-mouse-buttons/735383#735383 1 Answer by Greg for Why does Squeak use Colors to identify Mouse Buttons? Greg 2009-04-09T18:26:16Z 2009-04-09T18:26:16Z <p>The labels left and right are avoided because left-handed people will have the buttons reversed. What does it mean when a lefty mouse has its right button clicked? Should the program perform its right-click action or its left-click action. If we simply swap the mappings, then right and left become rather meaningless to the programmer.</p> <p>I assume the designers of Squeak wanted to avoid this thorny issue, so actions are labeled with colors which are agnostic to right/left.</p> http://stackoverflow.com/questions/735187/how-do-i-add-linebreaks-to-a-property-in-an-asp-net-control-declaration/735300#735300 1 Answer by Greg for How do I add linebreaks to a property in an ASP.NET control declaration? Greg 2009-04-09T18:05:35Z 2009-04-09T18:14:46Z <p>HTML escaping is required. Replace your > with &amp;gt;</p> <p>Likewise, &lt; becomes &amp;lt;</p> http://stackoverflow.com/questions/715471/alternative-to-radio-inputs/715542#715542 0 Answer by Greg for Alternative to radio inputs Greg 2009-04-03T20:12:43Z 2009-04-03T20:12:43Z <p>How about radio buttons next to the images. Then use JavaScript to hide the radio buttons and change the (hidden) selected radio when an image is clicked. Combine that with some sort of hightlighting effect on the selected image, and you have an attractive interface that degrades nicely. JQuery or a similar JavaScript library would be useful in achieving this.</p> http://stackoverflow.com/questions/657435/c-code-to-copy-all-the-tables-from-one-mdb-file-to-another-mdb-file/675731#675731 0 Answer by Greg for C# code to copy all the tables from one mdb file to another mdb file Greg 2009-03-24T00:29:16Z 2009-03-24T00:29:16Z <p>See this example of bulk copying: <a href="http://www.codeproject.com/KB/cs/CopyDBSchemaUsingSMO.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/CopyDBSchemaUsingSMO.aspx</a></p> http://stackoverflow.com/questions/674704/how-is-an-openid-client-supposed-look-up-the-openid-delegate/675657#675657 1 Answer by Greg for How is an OpenID Client supposed look up the OpenID delegate? Greg 2009-03-23T23:46:30Z 2009-03-23T23:46:30Z <p>I think it is assumed that an HTML page should have a HEAD tag. Most do, even if it's not strictly required by some standards.</p> <p>However, the OpenID standard seems to <a href="http://openid.net/specs/openid-authentication-1%5F1.html#anchor4" rel="nofollow">require</a> its tags to be placed in the HEAD tag. Do other sites detect your OpenID when it's not in HEAD?</p> http://stackoverflow.com/questions/652673/enum-boxing-and-equality 1 Enum Boxing and Equality Greg 2009-03-17T00:48:22Z 2009-03-17T02:02:17Z <p>Why does this return False</p> <pre><code> public enum Directions { Up, Down, Left, Right } static void Main(string[] args) { bool matches = IsOneOf(Directions.Right, Directions.Left, Directions.Right); Console.WriteLine(matches); Console.Read(); } public static bool IsOneOf(Enum self, params Enum[] values) { foreach (var value in values) if (self == value) return true; return false; } </code></pre> <p>while this returns True?</p> <pre><code> public static bool IsOneOf(Enum self, params Enum[] values) { foreach (var value in values) if (self.Equals(value)) return true; return false; } </code></pre> http://stackoverflow.com/questions/490570/what-are-the-advantages-and-disadvantages-of-the-properties-pattern 4 What are the advantages and disadvantages of the Properties Pattern? Greg 2009-01-29T05:22:28Z 2009-01-29T06:12:08Z <p>Steve Yegge describes the <strong>Properties Pattern</strong> in a <a href="http://steve-yegge.blogspot.com/2008/10/universal-design-pattern.html#Property" rel="nofollow">blog post</a> of his.</p> <p>For someone using a static language like C# or Java, what are the advantages and disadvantages of this approach? In what kind of projects would you want to use the Properties Pattern, and when would you want to avoid it?</p> http://stackoverflow.com/questions/304543/does-sqlite-support-scopeidentity 1 Does SQLite support SCOPE_IDENTITY? Greg 2008-11-20T07:19:57Z 2009-01-03T19:44:08Z <p>I'm trying to perform a simple INSERT and return the identity (auto-incrementing primary key). I've tried</p> <pre><code>cmd.CommandText = "INSERT INTO Prototype ( ParentID ) VALUES ( NULL ); SELECT SCOPE_IDENTITY();"; </code></pre> <p>and I receive the following error</p> <pre>EnvironmentError: SQLite error no such function: SCOPE_IDENTITY</pre> <p>Does SQLite support SCOPE_IDENTITY?<br /> If so, how do I use it?<br /> If not, what are my (preferably "thread-safe") alternatives?</p> http://stackoverflow.com/questions/308112/net-copy-third-party-libraries-to-bin-release/308177#308177 3 Answer by Greg for .NET Copy Third Party Libraries to Bin\Release Greg 2008-11-21T08:24:21Z 2008-11-21T08:24:21Z <p>I assume you have set the "Copy Local" property on the reference to True.</p> <p>To automatically copy files after a build, modify the "Post-build event command line" found in the project properties. Insert the appropriate command to copy your files.</p> http://stackoverflow.com/questions/279425/ascii-value-for-nothing/279457#279457 4 Answer by Greg for ASCII Value for Nothing Greg 2008-11-10T22:45:40Z 2008-11-10T22:45:40Z <p>ASCII 0 is null. Other than that, there are no "nothing" characters in traditional ASCII. If appropriate, you could use a control character like SOH (start of heading), STX (start of text), or ETX (end of text). Their ASCII values are 1, 2, and 3 respectively.</p> <p>For the full list of ASCII codes that I used for this explaination, see <a href="http://www.jimprice.com/jim-asc.shtml" rel="nofollow">this site</a></p> http://stackoverflow.com/questions/277226/find-mobile-browsers/277282#277282 0 Answer by Greg for find mobile browsers Greg 2008-11-10T07:27:03Z 2008-11-10T07:27:03Z <p>See this <a href="http://stackoverflow.com/questions/142273/standard-way-to-detect-mobile-browsers-in-a-web-application-based-on-the-http-r" rel="nofollow" title="Standard way to detect mobile browsers...">existing question</a>.</p> <p>You will have better luck doing this server side, as many mobile browsers don't even support JavaScript. Basically you want to check the user agent and compare to a list of known mobile browsers.</p> http://stackoverflow.com/questions/275251/whats-the-program-youve-really-wanted-to-write-but-never-found-the-time/275730#275730 0 Answer by Greg for What's the program you've really wanted to write but never found the time? Greg 2008-11-09T08:03:59Z 2008-11-09T08:03:59Z <p>A multiplayer Stargate RTS. Someday...</p> http://stackoverflow.com/questions/275704/lambdas-in-boo/275713#275713 8 Answer by Greg for Lambdas in Boo? Greg 2008-11-09T07:37:35Z 2008-11-09T08:02:44Z <p>Boo does support lambda expression syntax:</p> <pre><code>foo = {x|x+2} seven = foo(5) def TakeLambda(expr as callable(int) as int): return expr(10) twelve = TakeLambda(foo) </code></pre> <p>In this example, <code>foo</code> is a function that accepts a number x and returns x + 2. So calling <code>foo(5)</code> returns the number 7. <code>TakeLambda</code> is a function that accepts <code>foo</code> and evaluates it at 10.</p> http://stackoverflow.com/questions/1779035/what-is-the-best-way-to-thread-work-in-c Comment by Greg on What is the best way to thread work in c#? Greg 2009-11-25T15:08:39Z 2009-11-25T15:08:39Z What is the best way to thread work in c#? Carefully http://stackoverflow.com/questions/1792101/generic-method-with-actiont-parameter/1792189#1792189 Comment by Greg on Generic method with Action<T> parameter Greg 2009-11-24T19:06:30Z 2009-11-24T19:06:30Z +1 for explaining why instead of just rewriting the code. http://stackoverflow.com/questions/1792048/in-c-3-0-is-it-possible-to-add-implicit-operators-to-the-string-class/1792066#1792066 Comment by Greg on In c# 3.0, is it possible to add implicit operators to the string class? Greg 2009-11-24T18:52:15Z 2009-11-24T18:52:15Z Even if it was allowed, an implicit conversion from string to int would be something out of a nightmare. Implicit conversions are typically only done when converting to types don't involve any loss of information (ex: int -&gt; long). http://stackoverflow.com/questions/1792048/in-c-3-0-is-it-possible-to-add-implicit-operators-to-the-string-class Comment by Greg on In c# 3.0, is it possible to add implicit operators to the string class? Greg 2009-11-24T18:41:33Z 2009-11-24T18:41:33Z There is no C# 3.5, I think you mean C# 3 under .NET 3.5 http://stackoverflow.com/questions/1791386/quitting-fasthosts-and-need-a-managed-email-provider Comment by Greg on Quitting Fasthosts and Need a Managed Email Provider Greg 2009-11-24T16:55:30Z 2009-11-24T16:55:30Z Not programming related. http://stackoverflow.com/questions/1773323/c-threads-and-delegates Comment by Greg on C# Threads and Delegates Greg 2009-11-20T21:26:09Z 2009-11-20T21:26:09Z Homework? If so, add the homework tag. http://stackoverflow.com/questions/1771216/is-there-really-a-performance-hit-when-catching-exceptions/1771544#1771544 Comment by Greg on Is there really a performance hit when catching exceptions Greg 2009-11-20T20:19:22Z 2009-11-20T20:19:22Z I've found that having the debugger attached to my C# programs can vastly change the results of benchmarking. I assume C programs can be subject to the same effect, so I hope you ran your benchmark with the debugger off. http://stackoverflow.com/questions/1772132/how-to-increase-and-more-importantly-project-my-credibility-as-a-good-developer Comment by Greg on How to increase and more importantly project my credibility as a good developer? Greg 2009-11-20T17:56:58Z 2009-11-20T17:56:58Z Correct spelling helps. http://stackoverflow.com/questions/1771786/question-mark-in-javascript/1771824#1771824 Comment by Greg on Question mark in JavaScript Greg 2009-11-20T17:16:10Z 2009-11-20T17:16:10Z Ok, ok... now I'm using an ambiguous pronoun, happy? :) http://stackoverflow.com/questions/1771786/question-mark-in-javascript Comment by Greg on Question mark in JavaScript Greg 2009-11-20T17:13:30Z 2009-11-20T17:13:30Z This is one of those questions that is really hard to find the answer to using a search engine. http://stackoverflow.com/questions/471031/are-there-any-alternatives-to-recaptcha-net-for-stopping-spam/471266#471266 Comment by Greg on Are there any alternatives to recaptcha.net, for stopping spam? Greg 2009-11-18T20:05:53Z 2009-11-18T20:05:53Z Mollom is cool in that only spammy-looking submissions will be prompted with a CAPTCHA. http://stackoverflow.com/questions/1756868/splitting-a-string-in-c/1756902#1756902 Comment by Greg on Splitting a string in C# Greg 2009-11-18T16:07:25Z 2009-11-18T16:07:25Z Just say NO to using RegEx for parsing HTML. <a href="http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454" rel="nofollow" title="regex match open tags except xhtml self contained tags">stackoverflow.com/questions/1732348/&hellip;</a> http://stackoverflow.com/questions/1750972/upgrading-from-drupal-6-to-drupal-7-best-programmers-practices Comment by Greg on Upgrading from Drupal 6 to Drupal 7: best programmer's practices? Greg 2009-11-17T19:04:21Z 2009-11-17T19:04:21Z I like the question, as it is something I will have to face myself. However, I wouldn't yet get too eager to update. Not only is Drupal 7 still in development, but it may be a long time until many of the modules you or I use are ported to Drupal 7. Also, there may be new (and currently unknown to us) features or modules that we can take advantage of and actually decrease our custom code. My personal plan is install a test version of D7 when it is released but wait until the Drupal landscape settles before porting my existing sites. http://stackoverflow.com/questions/1676577/c-console-app-deployment/1676615#1676615 Comment by Greg on C# console app deployment Greg 2009-11-05T15:21:41Z 2009-11-05T15:21:41Z If you are simply placing the program on a network share, I wouldn't mess with publishing or ClickOnce. Just compile the program and copy the contents of the bin folder to the share. http://stackoverflow.com/questions/1676577/c-console-app-deployment/1676615#1676615 Comment by Greg on C# console app deployment Greg 2009-11-04T21:11:09Z 2009-11-04T21:11:09Z @bakasan - True, you could also run &quot;programName inputParameter1 inputParameter2&quot; from the command line.