User Gulzar - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T18:04:44Z http://stackoverflow.com/feeds/user/4337 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234419#234419 1185 Answer by Gulzar for What is your best programmer joke? Gulzar 2008-10-24T17:07:26Z 2009-12-03T01:39:35Z <p>A man flying in a hot air balloon suddenly realizes he’s lost. He reduces height and spots a man down below. He lowers the balloon further and shouts to get directions, "Excuse me, can you tell me where I am?" </p> <p>The man below says: "Yes. You're in a hot air balloon, hovering 30 feet above this field."</p> <p>"You must work in Information Technology," says the balloonist.</p> <p>"I do" replies the man. "How did you know?"</p> <p>"Well," says the balloonist, "everything you have told me is technically correct, but It's of no use to anyone."</p> <p>The man below replies, "You must work in management."</p> <p>"I do," replies the balloonist, "But how'd you know?"</p> <p>"Well", says the man, "you don’t know where you are, or where you’re going, you expect me to be able to help. You’re in the same position you were before we met, but now it’s my fault." </p> http://stackoverflow.com/questions/187983/how-do-i-hide-a-process-in-task-manager-in-c 6 How do I hide a process in Task Manager in C#? Gulzar 2008-10-09T16:10:11Z 2009-11-20T19:38:02Z <p>I have a requirement to hide a process in Task Manager. It is for Intranet scenario. So, everything is legitimate. :) </p> <p>Please feel free to share any code you have (preferably in C#) or any other techniques or any issues in going with this route.</p> <p><strong>Update1</strong>: Most of the users have admin privileges in order to run some legacy apps. So, one of the suggestion was to hide it in task manager. If there are other approaches to prevent users from killing the process, that would be great.</p> <p><strong>Update2</strong>: Removing the reference to rootkit. Somehow made this post look negative.</p> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/124289#124289 17 Answer by Gulzar for Hidden .NET Base Class Library Classes? Gulzar 2008-09-23T22:21:59Z 2009-09-29T15:03:11Z <p>This is cool. <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.visualstyles.visualstyleinformation.aspx" rel="nofollow">VisualStyleInformation Class</a> provides a lot of information about the current visual style of the operating system.</p> <p><a href="http://weblogs.asp.net/miked/archive/2005/07/07/418452.aspx" rel="nofollow">System.Diagnostics.Debugger.Break()</a> is used by virtually everyone but is very convenient for debugging .NET services.</p> <p><a href="http://blogs.x2line.com/al/archive/2007/06/08/3148.aspx" rel="nofollow">NetworkChange.NetworkAvailabilityChanged Event</a> makes it easy to monitor network availability.</p> http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61094#61094 110 Answer by Gulzar for Hidden Features of JavaScript? Gulzar 2008-09-14T03:18:53Z 2009-09-22T20:29:14Z <p>Functions are first class citizens in JavaScript:</p> <pre><code>var passFunAndApply = function (fn,x,y,z) { return fn(x,y,z); }; var sum = function(x,y,z) { return x+y+z; }; alert( passFunAndApply(sum,3,4,5) ); // 12 </code></pre> <p><a href="http://www.ibm.com/developerworks/library/wa-javascript.html" rel="nofollow">Functional programming techniques can be used to write elegant javascript</a>.</p> <p>Particularly, functions can be passed as parameters, e.g. <a href="http://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Objects/Array/filter" rel="nofollow">Array.filter()</a> accepts a callback:</p> <pre><code>[1, 2, -1].filter(function(element, index, array) { return element &gt; 0 }); // -&gt; [1,2] </code></pre> <p>You can also declare a "private" function that only exists within the scope of a specific function:</p> <pre><code>function PrintName() { var privateFunction = function() { return "Steve"; }; return privateFunction(); } </code></pre> http://stackoverflow.com/questions/58640/great-programming-quotes/58780#58780 311 Answer by Gulzar for Great programming quotes Gulzar 2008-09-12T12:01:32Z 2009-09-14T19:04:17Z <blockquote> <p>It works on my machine. </p> </blockquote> <p>Anonymous programmer</p> http://stackoverflow.com/questions/58362/best-laptop-keeping-visual-studio-in-mind 26 Best Laptop keeping Visual Studio in mind Gulzar 2008-09-12T05:30:07Z 2009-09-09T23:02:07Z <p>I loved this post by <a href="http://weblogs.asp.net/scottgu/archive/2007/11/01/tip-trick-hard-drive-speed-and-visual-studio-performance.aspx" rel="nofollow">ScottGu</a> which made me think a bit about Hard drive speeds and how it is linked to Visual Studio performance. Since it is a bit older post, I would like to hear from you (serious programmers) if you bought any laptop recently with the same ideas. </p> <p>Is it worth using Solid State drives? Should I go for 64-bit?</p> <p>I am a heavy user of Visual Studio and my old Latitude started giving me a hard time. If you have any recommendation, it will help me a lot.</p> <p><strong>PS: Since it is more of a hardware related question and if it is not appropriate here, feel free to leave a comment. I will gladly delete the post.</strong></p> <p>I just want to hear first hand experience if you have any.</p> http://stackoverflow.com/questions/83405/xml-parser-for-javascript 6 XML Parser for Javascript Gulzar 2008-09-17T13:47:42Z 2009-09-09T10:52:09Z <p>I am looking for a good JavaScript library for parsing XML data. It should be much easier to use than the built-in <a href="http://www.w3schools.com/Xml/xml_parser.asp" rel="nofollow">XML DOM parsers</a> bundled with the browsers.</p> <p>I got spoiled a bit working with JSON and looking forward to something on similar lines for XML.</p> http://stackoverflow.com/questions/709941/how-to-dock-firebug-in-browser-window/1337387#1337387 0 Answer by Gulzar for How to dock Firebug in browser window? Gulzar 2009-08-26T20:47:30Z 2009-08-26T20:47:30Z <p>I had the same problem. Resolved by following this:</p> <p>Right click firebug icon in status bar. Select "On for all web pages"</p> http://stackoverflow.com/questions/750606/what-technologies-are-you-using-even-though-they-are-embarassingly-out-of-date/751752#751752 1 Answer by Gulzar for What technologies are you using even though they are embarassingly out of date? Gulzar 2009-04-15T13:43:51Z 2009-08-26T14:13:28Z <p>Office 2000 and Visual Basic 6.0.</p> http://stackoverflow.com/questions/284247/best-approach-for-fixing-css-issues-to-work-with-ie-7 4 Best approach for fixing CSS issues to work with IE 7 Gulzar 2008-11-12T15:13:15Z 2009-07-24T12:00:09Z <p>Recently, I started maintaining a web application which unfortunately works only with IE 6. Most of the issues are related to CSS.</p> <p>Is there any tool which can help me standardize the CSS classes to work with <strong>both</strong> <strong>IE 6 and IE 7</strong>? I understand I have to go through standards but I need something to start with quickly.</p> <p>Firebug can help me to some extend in identifying the CSS classes related to the UI elements (if the page renders on firefox). But, I was looking for something more like an advisor tool. If you have some experience to share, please feel free.</p> http://stackoverflow.com/questions/1132859/how-to-build-iphone-apps-using-net-on-windows 4 How to build iphone apps using .Net on windows? Gulzar 2009-07-15T16:53:41Z 2009-07-15T17:43:41Z <p>Are there any tools (emulators, IDE) which can help you develop iphone apps using .Net on windows and then publish to iTunes?</p> http://stackoverflow.com/questions/59793/good-tips-for-a-technical-presentation 19 Good tips for a Technical presentation Gulzar 2008-09-12T19:20:12Z 2009-06-23T02:25:02Z <p>I am planning to give a Technical presentation for a product we are building. Intended audience is Technical developers. So, most of the time, I will be debugging trough the code in Visual Studio, performance analysis, some architecture review etc.</p> <p>I have read couple of <a href="http://www.hanselman.com/blog/11TopTipsForASuccessfulTechnicalPresentation.aspx" rel="nofollow">blogs</a> on font sizes to use, templates to use on Visual Studio, <a href="http://weblogs.asp.net/jgalloway/archive/2006/12/05/tips-for-a-technical-presentation.aspx" rel="nofollow">presentation tools</a>, <a href="http://focs.wordpress.com/2007/09/12/9-tips-how-to-give-a-technical-presentation/" rel="nofollow">among other</a> very <a href="http://blogs.msdn.com/kaevans/archive/2005/03/12/394527.aspx" rel="nofollow">useful tips</a>.</p> <p>What I am looking specifically for is how to keep the session interesting without making it a dry code walkthrough? How to avoid making people fall asleep? Would be great to hear some stories..</p> <p><strong>Update1</strong>: Nice youtube clip on zoomit. <a href="http://www.youtube.com/watch?v=4jMLAF-9ACk" rel="nofollow">Glue Audience To Your Presentation With Zoomit.</a></p> <p><strong>Update2</strong>: New post from Scott Hanselman after his <a href="http://channel9.msdn.com/pdc2008/TL49/" rel="nofollow">PDC talk</a> - <a href="http://www.hanselman.com/blog/TipsForPreparingForATechnicalPresentation.aspx" rel="nofollow">Tips for Preparing for a Technical Presentation</a> </p> http://stackoverflow.com/questions/942053/why-is-there-no-treet-class-in-net/942095#942095 0 Answer by Gulzar for Why is there no Tree<T> class in .NET? Gulzar 2009-06-02T21:53:54Z 2009-06-02T21:59:22Z <p>This series of articles was helpful for me when I had to write my own especially part 3 and 4.</p> <p><a href="http://msdn.microsoft.com/en-us/library/aa287104%28VS.71%29.aspx" rel="nofollow">An Extensive Examination of Data Structures</a></p> http://stackoverflow.com/questions/939733/difference-between-iis-6-0-vs-iis-7-0/939772#939772 0 Answer by Gulzar for Difference between IIS 6.0 vs IIS 7.0 Gulzar 2009-06-02T14:05:35Z 2009-06-02T14:17:46Z <p>The biggest benefit is the Integrated Pipeline. </p> <p><a href="http://learn.iis.net/page.aspx/244/how-to-take-advantage-of-the-iis7-integrated-pipeline/" rel="nofollow">How to Take Advantage of the IIS 7.0 Integrated Pipeline</a></p> <blockquote> <p>IIS 6.0 and previous versions allowed the development of .NET application components via the ASP.NET platform. ASP.NET integrated with IIS via an ISAPI extension, and exposed its own application and request processing model. This effectively exposed two separate server pipelines, one for native ISAPI filters and extension components, and another for managed application components. ASP.NET components would execute entirely inside the ASP.NET ISAPI extension bubble and only for requests mapped to ASP.NET in the IIS script map configuration. </p> <p>IIS 7.0 integrates the ASP.NET runtime with the core web server, providing a unified request processing pipeline that is exposed to both native and managed components known as modules.</p> <p><strong>The many benefits of integration include</strong>: </p> <p>Allowing services provided by both native and managed modules to apply to all requests, regardless of handler. For example, managed Forms Authentication can be used for all content, including ASP pages, CGIs, and static files. </p> <p>Empowering ASP.NET components to provide functionality that was previously unavailable to them due to their placement in the server pipeline. For example, a managed module providing request rewriting functionality can rewrite the request prior to any server processing, including authentication. </p> <p>A single place to implement, configure, monitor and support server features such as single module and handler mapping configuration, single custom errors configuration, single url authorization configuration.</p> </blockquote> http://stackoverflow.com/questions/733875/is-there-any-place-to-host-your-code-online/935941#935941 2 Answer by Gulzar for Is there any place to host your code online? Gulzar 2009-06-01T17:57:51Z 2009-06-01T17:57:51Z <p><a href="http://projectlocker.com/" rel="nofollow">projectlocker</a> is also a good alternative for free Subversion, Git hosting..</p> http://stackoverflow.com/questions/910421/how-can-i-save-global-application-variables-in-wpf/910442#910442 1 Answer by Gulzar for How can I save global application variables in WPF? Gulzar 2009-05-26T12:33:25Z 2009-05-26T12:33:25Z <p>You can expose a public static variable in App.xaml.cs file and then access it anywhere using App class..</p> http://stackoverflow.com/questions/891217/how-expensive-are-exceptions-in-c/891239#891239 2 Answer by Gulzar for How expensive are exceptions in C#? Gulzar 2009-05-21T03:07:12Z 2009-05-21T03:07:12Z <p><a href="http://blogs.msdn.com/ricom/archive/2006/09/25/771142.aspx" rel="nofollow">The True Cost of .NET Exceptions -- Solution</a></p> http://stackoverflow.com/questions/884568/differences-between-net-3-0-3-5/884589#884589 3 Answer by Gulzar for Differences between .NET 3.0 & 3.5? Gulzar 2009-05-19T19:26:23Z 2009-05-19T19:26:23Z <p>Big one is <a href="http://msdn.microsoft.com/en-us/netframework/aa904594.aspx" rel="nofollow">LINQ</a></p> http://stackoverflow.com/questions/868774/what-buzzwords-should-we-be-wary-of/869415#869415 2 Answer by Gulzar for What Buzzwords Should We Be Wary Of Gulzar 2009-05-15T15:39:47Z 2009-05-15T15:39:47Z <p>In one place I used to work - <strong>Smart Client Applications</strong>. </p> <p>The term was (ab)used to such an extend that nobody really knew what it stood for.</p> http://stackoverflow.com/questions/471726/good-way-to-send-a-large-file-over-a-network-in-c/865337#865337 0 Answer by Gulzar for Good way to send a large file over a network in C#? Gulzar 2009-05-14T19:49:45Z 2009-05-14T19:49:45Z <p>This is a great approach if you want to show file transfer progress. </p> <p><a href="http://www.codeproject.com/KB/XML/MTOMWebServices.aspx" rel="nofollow">Sending Files in Chunks with MTOM Web Services and .NET 2.0</a></p> http://stackoverflow.com/questions/864200/is-iisreset-always-neccessary-when-storing-my-web-config-appsettings-in-a-separat/864272#864272 1 Answer by Gulzar for Is IIsreset always neccessary when storing my Web.Config appsettings in a separate file? Gulzar 2009-05-14T16:11:41Z 2009-05-14T16:11:41Z <p>You can write a <a href="http://www.codeproject.com/KB/files/C%5F%5FFileWatcher.aspx" rel="nofollow">filewatcher</a> service to monitor your custom config file. Issue iisrest command when the changed event gets executed inside the service.</p> http://stackoverflow.com/questions/863950/how-can-i-attach-to-and-debug-a-running-sql-server-stored-procedure/864065#864065 1 Answer by Gulzar for How can I attach to and debug a running SQL Server stored procedure? Gulzar 2009-05-14T15:33:44Z 2009-05-14T15:51:15Z <p><strong>Update</strong>: I am not sure if there is a way to attach to a running stored proc. You can use profiler to get a real time trace of the statements getting executed (SP:StmtStarting). Also check out <a href="http://www.apexsql.com/sql%5Ftools%5Fdebug.asp" rel="nofollow">Apex SQL Debug</a> which seems to have more capabilities and is available as an Add-in to Management Studio.</p> <p>If you have Visual Studio, it is easy to debug:</p> <p><a href="http://www.sqlteam.com/article/debugging-stored-procedures-in-visual-studio-2005" rel="nofollow">Debugging Stored Procedures in Visual Studio 2005</a></p> <p>More answers here: <a href="http://stackoverflow.com/questions/615747/whats-your-favored-method-for-debugging-ms-sql-stored-procedures">What’s your favored method for debugging MS SQL stored procedures?</a></p> http://stackoverflow.com/questions/837141/c-simple-open-source-application/837162#837162 3 Answer by Gulzar for C# simple open source application Gulzar 2009-05-07T21:38:04Z 2009-05-07T21:38:04Z <p>If you dont mind wpf, try <a href="http://www.hanselman.com/babysmash/" rel="nofollow">BabySmash</a></p> http://stackoverflow.com/questions/830166/getting-parameters-for-web-service-programmatically/830232#830232 3 Answer by Gulzar for Getting parameters for web service programmatically? Gulzar 2009-05-06T15:38:25Z 2009-05-06T15:38:25Z <p>You can use the <a href="http://msdn.microsoft.com/en-us/library/system.web.services.description.servicedescription.aspx" rel="nofollow">ServiceDescription</a> Class, which gives you an object model representing your wsdl file. </p> <p>If you want to try a useful wrapper, chick this <a href="http://mikehadlow.blogspot.com/2006/06/simple-wsdl-object.html" rel="nofollow">post</a>.</p> http://stackoverflow.com/questions/825531/best-programming-related-books-that-are-technology-agnostic/825578#825578 4 Answer by Gulzar for Best programming related books that are technology agnostic Gulzar 2009-05-05T15:55:36Z 2009-05-05T15:55:36Z <p>1) Refactoring: Improving the Design of Existing Code by Martin Fowler, Kent Beck..</p> <p>2) The Mythical Man-Month: Essays on Software Engineering</p> <p>Also see this list : <a href="http://www.amazon.com/Essential-Language-Agnostic-Computer-Programming/lm/RM2PTDDSWPCO4" rel="nofollow">Essential Language Agnostic Computer Programming Books</a></p> http://stackoverflow.com/questions/822145/follow-the-code-to-india-has-anyone-done-it/822204#822204 2 Answer by Gulzar for Follow the code - to India ? Has anyone done it Gulzar 2009-05-04T21:41:06Z 2009-05-04T21:55:22Z <p>They are most likely to take a local hire because they might think that you are too expensive. :)</p> <p>If you are that keen, try to get work in a company which has an outsourcing arm in India or an Indian company based in Ireland. That should give you a chance to go to India for a shorter duration and based on your experience, you can decide whether you want to commit for a longer term.</p> <p>Reminds me of this one:</p> <p><a href="http://www.fourhourworkweek.com/blog/2008/06/07/060708-trading-places-with-indian-outsourcers/" rel="nofollow">What happens when a successful US-based computer programmer, who lost his lucrative job to outsourcing, travels to India to try to get it back?</a> </p> http://stackoverflow.com/questions/819797/iis-6-0-debugging-methods/819849#819849 3 Answer by Gulzar for IIS 6.0 Debugging methods Gulzar 2009-05-04T12:20:11Z 2009-05-04T12:20:11Z <p>Use adplus in hang mode to gather memory dump</p> <pre><code>adplus -hang -pn w3wp.exe -quiet </code></pre> <p>More details here: <a href="http://blogs.msdn.com/tess/archive/2008/02/22/net-debugging-demos-lab-4-high-cpu-hang.aspx" rel="nofollow">.NET Debugging Demos Lab 4: High CPU hang</a></p> http://stackoverflow.com/questions/232100/image-slider-with-silverlight/232112#232112 2 Answer by Gulzar for Image Slider with Silverlight Gulzar 2008-10-24T00:40:13Z 2009-05-03T21:34:16Z <p>Check this out. <a href="http://www.silverlightshow.net/items/Image-slider-control-in-Silverlight-1.1.aspx" rel="nofollow">Image slider control in Silverlight 2</a></p> <p>Slide.Show 2 - Another cool sample from <a href="http://www.vertigo.com/slideshow.aspx" rel="nofollow">Vertigo</a>. Source available at <a href="http://www.codeplex.com/SlideShow2" rel="nofollow">codeplex</a>.</p> http://stackoverflow.com/questions/817986/is-anybody-experiencing-slowness-when-using-visual-studio-2008/818005#818005 2 Answer by Gulzar for Is anybody experiencing slowness when using Visual Studio 2008? Gulzar 2009-05-03T21:08:58Z 2009-05-03T21:08:58Z <p>Try loading Visual Studio in safe mode to load the default environment with <a href="http://msdn.microsoft.com/en-us/library/xee0c8y7%28VS.80%29.aspx" rel="nofollow">/safemode</a> switch.</p> <p>You might also want to try some of the answers here:</p> <p><a href="http://social.msdn.microsoft.com/forums/en-US/vssetup/thread/bc778e26-9156-4924-a9ca-a57ef8ff6bcc/" rel="nofollow">Visual Studio 2008 PAINFULLY SLOW!!</a></p> http://stackoverflow.com/questions/815740/running-a-net-application-from-a-file-share-without-code-signing/816054#816054 2 Answer by Gulzar for Running a .NET application from a file share without code signing Gulzar 2009-05-03T01:22:59Z 2009-05-03T01:22:59Z <p><a href="http://blogs.msdn.com/shawnfa/archive/2004/12/30/344554.aspx" rel="nofollow">Using CasPol to Fully Trust a Share</a></p> <p>more answers here:</p> <p><a href="http://stackoverflow.com/questions/148879/why-does-my-net-application-crash-when-run-from-a-network-drive">Why does my .NET application crash when run from a network drive?</a></p> http://stackoverflow.com/questions/1132859/how-to-build-iphone-apps-using-net-on-windows Comment by Gulzar on How to build iphone apps using .Net on windows? Gulzar 2009-07-15T18:13:48Z 2009-07-15T18:13:48Z it is similar but I am looking specifically for .Net tools http://stackoverflow.com/questions/65116/whats-your-favorite-harmless-computer-practical-joke/65213#65213 Comment by Gulzar on What's Your Favorite Harmless Computer Practical Joke? Gulzar 2009-06-04T19:37:57Z 2009-06-04T19:37:57Z +1 for a gold badge :) http://stackoverflow.com/questions/891217/how-expensive-are-exceptions-in-c/891230#891230 Comment by Gulzar on How expensive are exceptions in C#? Gulzar 2009-05-21T03:10:50Z 2009-05-21T03:10:50Z updated one: <a href="http://yoda.arachsys.com/csharp/exceptions2.html" rel="nofollow">yoda.arachsys.com/csharp/exceptions2.html</a> http://stackoverflow.com/questions/869599/how-defensive-should-my-code-be Comment by Gulzar on How "defensive" should my code be? Gulzar 2009-05-15T16:21:30Z 2009-05-15T16:21:30Z interesting. just read this one <a href="http://thedailywtf.com/Articles/Defensive-Programming-and-a-Whole-Lot-More.aspx" rel="nofollow">thedailywtf.com/Articles/&hellip;</a> http://stackoverflow.com/questions/825807/what-to-look-at-after-a-dos-attack Comment by Gulzar on what to look at after a DoS attack? Gulzar 2009-05-05T16:45:05Z 2009-05-05T16:45:05Z <a href="http://serverfault.com/" rel="nofollow">serverfault.com</a> http://stackoverflow.com/questions/817986/is-anybody-experiencing-slowness-when-using-visual-studio-2008 Comment by Gulzar on Is anybody experiencing slowness when using Visual Studio 2008? Gulzar 2009-05-03T21:03:27Z 2009-05-03T21:03:27Z Do you you have any addins installed? http://stackoverflow.com/questions/814914/what-happened-to-my-questions-in-stackoverflow Comment by Gulzar on what happened to my questions in stackoverflow? Gulzar 2009-05-02T14:15:02Z 2009-05-02T14:15:02Z it might have got deleted. maybe you should contact the SO team? http://stackoverflow.com/questions/812849/problem-importing-web-service Comment by Gulzar on Problem Importing Web Service Gulzar 2009-05-01T21:12:40Z 2009-05-01T21:12:40Z once it is added, you can just import the namespace in the proxy. http://stackoverflow.com/questions/812849/problem-importing-web-service Comment by Gulzar on Problem Importing Web Service Gulzar 2009-05-01T21:04:53Z 2009-05-01T21:04:53Z actually, you need to add the manually generated proxy class as an existing item to the &quot;client web application&quot;. http://stackoverflow.com/questions/812849/problem-importing-web-service Comment by Gulzar on Problem Importing Web Service Gulzar 2009-05-01T21:04:27Z 2009-05-01T21:04:27Z actually, you need to add the manual proxy as an existing item to the &quot;client web application&quot;. http://stackoverflow.com/questions/812849/problem-importing-web-service Comment by Gulzar on Problem Importing Web Service Gulzar 2009-05-01T20:33:11Z 2009-05-01T20:33:11Z updated my post http://stackoverflow.com/questions/812849/problem-importing-web-service Comment by Gulzar on Problem Importing Web Service Gulzar 2009-05-01T19:29:45Z 2009-05-01T19:29:45Z What is the error you got? http://stackoverflow.com/questions/812308/how-do-you-check-out-code/812317#812317 Comment by Gulzar on How do you "check out" code? Gulzar 2009-05-01T17:35:15Z 2009-05-01T17:35:15Z yeah it was unintentional. :)...but again.. http://stackoverflow.com/questions/808992/singular-or-plural-database-table-names/809006#809006 Comment by Gulzar on Singular or plural database table names ? Gulzar 2009-04-30T21:23:48Z 2009-04-30T21:23:48Z added IMHO :)..sheesh so many downvotes and upvotes for this.. http://stackoverflow.com/questions/808992/singular-or-plural-database-table-names/809006#809006 Comment by Gulzar on Singular or plural database table names ? Gulzar 2009-04-30T21:22:44Z 2009-04-30T21:22:44Z @Azder - Thats true. It is upto the others to accept or not.