User csmba - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T02:40:40Z http://stackoverflow.com/feeds/user/350 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/4911/asp-net-authentication-user-name-vs-user-id 0 ASP.NET authentication: user name Vs User ID csmba 2008-08-07T16:19:40Z 2009-11-09T06:06:56Z <p>So in my simple learning website, I use the built in ASP.NET authentication system. </p> <p>I am adding now a user table to save stuff like his zip, DOB etc'. My question is:</p> <ol> <li>In the new table, should the key be the user name (the string) or the user ID which is that GUID looking number they use in the asp_ tables. </li> <li>If the best practice is to use that ugly guid, anyone knows how to get it? it seems to not be accessible as easily as the name (System.Web.HttpContext.Current.User.Identity.Name)</li> <li>If you suggest I use neither (not the guid nor the userName fields provided by ASP.NET authentication) then how do I do it with ASP.NET authentication? One option I like is to use the email address of the user as login, but how to I make ASP.NET authentication system use an email address instead of a user name? (or there is nothing to do there, it is just me deciding I "know" userName is actually an email address?</li> </ol> <p>Please note:</p> <ul> <li>I am not asking on how to get a GUID in .NET, I am just refering to the userID column in the asp_ tables as guid.</li> <li>The user name is unique in ASP.NET authentication</li> </ul> http://stackoverflow.com/questions/1662780/asp-net-performance-counting-sql-requests 1 ASP.NET performance: counting SQL requests csmba 2009-11-02T18:09:29Z 2009-11-02T18:40:08Z <p>We had huge performance problem when deploying our ASP.NET app at a customer, which had the DB sitting on a remote location.</p> <p>We found that it was due to the fact that pages made ridiculous amount of individual SQL queries to the DB. It was never a problem we noticed because usually, the web and DB are on the same local network (low latency). But on this (suddenly) low latency configuration, it was very very slow.</p> <p>(Notice that each sql request by itself was fast, it is the number and serial nature of the sequence that is the problem).</p> <p>I asked the engineering team to be able to report and maintain a "wall of shame" (or stats) telling us for each page the number of SQL requests so we can use it as a reference. They claim it is expensive..</p> <p>anyone can tell me how to be able to maintain or get such report cheaply and easily?</p> <p><hr /></p> <ul> <li>We are using SQL Server 2005</li> <li>We have a mix of our own DB access layer and subsonic</li> <li>I know and use the profiler, but that is a bit manual. Asking here if there is a tip on how to automate or maybe I am just crazy?</li> </ul> http://stackoverflow.com/questions/1683/asp-net-built-in-user-profile-vs-old-stile-user-class-tables 2 ASP.NET built in user profile, Vs old stile user class/tables csmba 2008-08-04T23:06:23Z 2009-10-29T23:42:37Z <p>I am looking for the spiritual guidance of what is the best practice around the use of Profile feature in ASP.NET.</p> <p>How do you decide what should be kept in the built in user Profile, or if you should just go and create your own DB Table and add a column for that? For example, a user has a zip code, should I save the zip code in my own table, or should I add it to the web.config xml profile and then access it via the user profile ASP.NEt mechanize? </p> <p>The pros/cons I can think of are that since I don't know the profile so well, (it is a bit of a <em>Matrix</em> right now) I probably can do whatever I want if I go the table route (like, SQL to get all the users in the same zip code as the current user), I don't know ifI can do the same if I use the ASP.NET profile.</p> http://stackoverflow.com/questions/1428684/ssrs-removing-javascript-from-a-report-link-when-exported-to-pdf 1 SSRS: removing javaScript from a report link when exported to PDF csmba 2009-09-15T17:52:13Z 2009-10-22T21:00:02Z <p>I have a report (SSRS) that has links on the individual actions. The javaScript is there so that when used inside my web applciation, the new drill down report opens in a new popup window.</p> <p>ALAS, when exporting the report to PDF the links (drill down) no longer work because PDF doesn't handle the javaScript... </p> <ol> <li>How do I make the exported version to PDF not have (clean) the javaScrip?</li> <li><p>Or, how do I tell SSRS to turn off the link completely when exporting?</p> <p>="javascript:void(window.open('" &amp; Parameters!WebServer.Value &amp; "/pages/reports/somePage.aspx?params=" &amp; Parameters!dfb_DataSet_GN4.Value) &amp; "','Blue','location=no,resizable=yes,menubar=no,toolbar=no,scrollbars=yes,status=no,height=704,width=985'))"</p></li> </ol> http://stackoverflow.com/questions/2525/best-net-obfuscation-tools-strategy 33 Best .NET obfuscation tools/strategy csmba 2008-08-05T16:20:37Z 2009-10-09T09:42:26Z <p>My product is both ASP.NET, Windows forms app and Windows service. 95% of code is .NET (VB if you must know).</p> <p>For IP reasons, I need to obfuscate the code. I am using an old dotfuscator (over 5 years old) and thinking it is time to move to a new gen. Anyone can recommend from their personal experience (please don't just give me a list of vendors, I already have that) what works best for them? </p> <p>Taking into account real life issues like:</p> <ul> <li>Dealing with the old problem of serialization/de-serialization: Currently, I simply tell the tool <strong>not</strong> to obfuscate any class data members. The pain of not being able to load data that was previously serialized with an old version is just to big</li> <li>Integrating the tool into the build process?</li> <li>Working with ASP.NET which is a story since depending on the settings, you don't always have the same dll names (and you have lots of them, one per page), and not all tools handle this well.</li> </ul> http://stackoverflow.com/questions/21159/best-framework-for-implementing-igoogle-or-pageflakes-asp-net 6 Best framework for implementing iGoogle or pageflakes (ASP.NET) csmba 2008-08-21T20:54:40Z 2009-10-05T20:38:33Z <p>For my Enterprise software solution (so open source is not so good) I want to implement a flexible dashboard which is component base. So I can keep changing it by adding new components, withouth having to wait for the next version.</p> <p>my gold standard is <a href="http://www.pageflakes.com/" rel="nofollow">pageflakes</a></p> <p>any suggestions?</p> http://stackoverflow.com/questions/37579/queue-alternatives-to-msmq-on-windows/37606#37606 6 Answer by csmba for Queue alternatives to MSMQ on Windows? csmba 2008-09-01T08:15:33Z 2009-09-29T20:23:17Z <p>May not be "best practice" advice here... but based on real life needs and expirience: we have distributed system, 60 boxes running each 10 clients all do task X, and they need to take the next task from a "Q". The Q is being feed from one other "client"...</p> <p>We had used inter process communication, we MSMQ, we tried service broker... It just doesn't work in the long term because you are giving away the control of your application to Microsoft. It works great as long as your needs are satisfied. it becomes hell when you need something not supported.</p> <p>The best solution for us was: Use a SQL Database table as the "Q". Don't reinvent the wheel there, since you will make mistakes (locks). There is info out there on how to do it, it is very easy and we handled over 200K messages per 24H (with 60x10 = 600 concurrent reads and writes to the Q). That is in addition to the same SQL server handling the rest of the application stuff...</p> <p>Some reasons why MSMQ doesn't work:</p> <ol> <li><p>When you need to change the logic of the Q to not FIFO, but something like "the oldest RED message" or "the oldest BLUE message" you can;t do it. (I know what people will say, you can do it by having a RED Q and a BLUE Q.. .But what if the number/types of Ques is dynamic based on the way the application is administrated and changes daily?)</p></li> <li><p>It adds a point of failure and deployment nightmare (the Q is a point of failure and you need to deal with setting the right permissions on all boxes to read/write messages etc' in Enterprise software you pay in blood for these type of things). SQL server... all clients are writing/reading already from the DB, it is just one more table..</p></li> </ol> http://stackoverflow.com/questions/895423/case-sensitive-vs-insensitive-syntax -2 Case sensitive Vs insensitive syntax csmba 2009-05-21T22:00:08Z 2009-06-22T05:08:15Z <p>Can anyone make really a good case ( :-) ) for being case sensitive? </p> <p>C#: case sensitive VB.NET: <strong>not</strong> case sensitive C++: case sensitive ...</p> <p>Worse part: XML which is used inside a language like VB.NET <strong>is</strong> case sensitive.</p> <p>I was making the case that it is ridiculous and can only cause harm after we found a bug in our system due to the fact that XML had both <strong>V</strong>alue and <strong>v</strong>alue nodes... </p> <p>I am asked over and over in comments </p> <blockquote> <p>"Perhaps you can come up with a single argument for why case insensitive is the right choice in such a world?"</p> </blockquote> <p>Here is an example: I see it analogous to the issue of: URL's should be case sensitive? www.cnn.com &lt;> Www.cNN.com ? Of course they should be the same, ID theft heaven! because humans don't put that much attention to 2 strings that are the same but might have otherwise different casing. Programmers are humans. So getAge() and getage() are the same in most human's minds.</p> <p><hr /></p> <p>Please notice: I do not think we want the code to actually have a function defined as getAget() and then have code calling it getage(), VS (vb.net) will automatically correct getaget to getAge. So the code is clear and the programmer is aware of the correct capitalization. My point is: good IDE makes the issue non relevant, but it works better in a non case-sesnsetive language like vb.net then lets say c#. Reference: <a href="http://www.tonymarston.net/php-mysql/case-sensitive-software-is-evil.html" rel="nofollow">here</a></p> http://stackoverflow.com/questions/671847/net-choosing-between-structures-and-classes/671878#671878 0 Answer by csmba for .NET Choosing between Structures and Classes csmba 2009-03-23T00:19:22Z 2009-03-23T00:19:22Z <p>Very basic guideline, and not even .NET specific:</p> <p>Use CLASS for everything except when you need very small, very simple container. if you don't want properties nor functions, you should use a class.</p> <p>a good example in my opinion for a struct is when you need to make an array of items, but the items is a "pair" of int and string. something basic like that</p> http://stackoverflow.com/questions/617826/whats-a-c-regular-expression-thatll-validate-currency-float-or-integer/617840#617840 2 Answer by csmba for What's a c# regular expression that'll validate currency, float or integer csmba 2009-03-06T06:37:03Z 2009-03-06T06:37:03Z <p>^\$?(\d{1,3},?(\d{3},?)*\d{3}(.\d{1,3})?|\d{1,3}(.\d{2})?)$</p> http://stackoverflow.com/questions/10066/sql-database-documentation 1 SQL Database documentation? csmba 2008-08-13T16:51:28Z 2009-02-08T20:46:56Z <p>specifically, I use SQL Server 2005, but the solution might be brand independent.</p> <p><strong>Need</strong>: You have 40 database tables, in some, you may have a column which is a integer values 1-9 representing some enum. Sure it makes sense in code, but not if you need to SQL the DB in a report getting only rows of type "active" but you have no clue if active is 1,2 or 3...</p> <p><strong>my solution</strong>: I have a wiki page and I tell each developer that each table must be there, with the schema and for each column the possible values with explanation. I also generate the SQL server 2005 database diagram, but that is only marginally helpful since you have so many tables and so many lines connecting them.</p> <p>Is there a better way do document what a table is, what a column is and publishing it?</p> <p><hr /></p> <p><em>Note regarding answers:</em> Please don't answer this question thinking like an engineer! Answers like "if you have an extra table linked with a foreign key, then anyone can see the values" misses the point. A solution is good if:</p> <ol> <li>I can print it and send it to a partner</li> <li>I can write free text, documenting the datable/clm. Not everything in life is self documenting. I may want to say "this table is a report supporting table and is de-normalized data from XYZ tables.</li> </ol> http://stackoverflow.com/questions/525016/any-good-card-game-ai-strategies/525174#525174 0 Answer by csmba for Any good card game AI strategies? csmba 2009-02-08T04:58:44Z 2009-02-08T04:58:44Z <p>use common sense: let the computer play by the same rules a human would (logic), and change difficulty level by changing parameters such as quality of AI memory.</p> <p>I implemented a <a href="http://yellowfoxsoftware.googlepages.com/matchitmaster%3Amemorygame" rel="nofollow">memory game</a> which is maybe a simple case compared to what you are looking for, but it worked pretty well.</p> http://stackoverflow.com/questions/386795/select-top-1000-but-know-how-many-rows-are-there 2 select top 1000, but know how many rows are there? csmba 2008-12-22T17:22:37Z 2008-12-23T00:25:06Z <p>SQL Server 2005</p> <p>I have 10 million rows in DB, and run a select (with lots of "where" and joints.. pretty complex). The results are presented in grid (think goolge results) and because of that, the user cannot possibly use more then 1000 results. </p> <p>So I limit my SQL with a TOP 1000.</p> <p><strong>Problem</strong>: User still wants to know that there are 5432 results for his search.</p> <p>Can I get that info without paying the price (or in other words, with still getting the speed benefits the "top 1000" is giving me ?)</p> <p><strong>Assumptions</strong> - Assume that the TOP 1000 brings 1000 out of <strong>100K</strong> rows. So even the network price of moving 100K might be an issue.</p> <p><strong>Conclusions</strong> There is no free lunch! you can get the elegant way (accepted answer) but it still takes as long as the more expensive operation (i.e. counting all results). In real life, I will go with the 2 SQL approach, one to return top 1000 rows for display, and one that is ASYNC and updates some AJAX panel with the count(*) results that will take much much longer to computer</p> http://stackoverflow.com/questions/369016/ajax-form-editing-and-design 0 AJAX form editing and design csmba 2008-12-15T16:57:45Z 2008-12-20T22:58:34Z <p>I want to build into mt ASP.NET application the ability for users to fill up forms, but the forms are not something I can hard-code into my (Enterprise) software.</p> <p>So I need one screen that lets end users create the forms. Doing it the 2.0 way, I just love what PollDaddy did in their survey editor (great job guys!). How do I replicate that? (don't worry pollDaddy, my app has nothing to do with survey and I am not at all in your domain (-: )</p> <p>Since you need to login to the site to play with it, I made a 20 sec video of how it looks like. Please see below and tell me how to best replicate this (as simple as using JQuery tip? use an entire open source project? Buy something?)</p> <p>Requirements are:</p> <ul> <li>support multiple types of elements (like multiple choice, free text, comboBox)</li> <li>drag and drop</li> <li>editing of order</li> </ul> <p><em>click image for video or <a href="http://revver.com/video/1376799/affiliate/24133/pd-editor-example/" rel="nofollow">here</a></em></p> <p><a href="http://revver.com/video/1376799/affiliate/24133/pd-editor-example/" rel="nofollow"><img src="http://frame.revver.com/frame/120x90/1376799.jpg" /></a></p> http://stackoverflow.com/questions/165828/transactional-queueing-dequeueing/165876#165876 4 Answer by csmba for Transactional queueing/dequeueing csmba 2008-10-03T06:13:17Z 2008-12-05T06:11:02Z <p>our system has 60 computers, each running 12 tasks (threads) which need to "get next job". All in all, it comes to 50K "jobs" per day. do the math of how many transactions per minute and realize task time is variable, so it is possible to get multiple "pop" events at the exact same time.</p> <p>We had our first version using MSMQ. conclusion: <strong>stay away</strong>. While it did do just fine with the load and synchronization issues, it had 2 problems. one annoying and one deal breaker.</p> <p><em>Annoying:</em> as Enterprise software, MSMQ has security needs that just make it one more thing to set up and fight with the customers network admin.</p> <p><em>Deal breaker:</em> then came the time we wanted to take the next job, but not using a simple pop but something like "get next BLUE job" or "get next YELLOW job". can't do it!</p> <p>We went to plan B: Implemented our own Q with a single SQL 2005 table. <strong>could not be happier</strong></p> <p>I stressed test it with 200K messages per day, worked. We can make the "next" logic as complicated as we want.</p> <p>the catch: you need to be very careful with the SQL that takes the next item. Since you want it to be fast and NON locking. there are 2 very important SQL <strong>hints</strong> we used based on some research. The magic goes something like this:</p> <pre><code>SELECT TOP 1 @Id = callid FROM callqtbl WITH (READPAST, XLOCK) where 1=1 ORDER BY xx,yy </code></pre> http://stackoverflow.com/questions/309735/best-ui-for-search-filter-boolean-expression 1 Best UI for Search/Filter/Boolean expression csmba 2008-11-21T18:42:12Z 2008-11-21T20:13:56Z <p>There are some simple ones, some complex ones, but I cannot find the gold standard. Can anyone point me to "the best" way to let a user define a search criteria (or filter) to retrieve results?</p> <p>This is complicated since: * Need to support about 10 different types of elements * Support And, Or, Not * Parenthesis (a killer to 95% of the population)</p> <p>As an example I looked at MorningStar premium fund filter, it is ok but not web2.0 (ajax, JQuery.. in other words, not cool) and it handles parenthesis poorly.</p> http://stackoverflow.com/questions/12823/filter-by-zip-code-or-other-location-based-data-retrieval-strategies 2 Filter by zip code, or other location based data retrieval strategies csmba 2008-08-15T22:09:05Z 2008-11-18T22:42:52Z <p>My little site should be pooling list of items from a table using the active user's location as a filter. Think Craigslits, where you search for "dvd' but the results are not from all the DB, they are filtered by a location you select. My question has 2 levels:</p> <ol> <li>should I go a-la-craigslit, and ask users to use a city level location? My problem with this is that you need to generate what seems to me a hard coded, hand made list of locations. </li> <li>should I go a-la-zipCode. The idea of just asking the user to type his zipcode, and then pool all items that are in the same or in a certain distance from his zip code.</li> </ol> <p>I seem to prefer the zip code way as it seems more elegant solution, but how on earth do one goes about creating a DB of all zip codes and implement the function that given zip code 12345, gets all zipcodes in 1 mile distance?</p> <p>this should be fairly common "task" as many sites have a need similar to mine, so I am hoping not to re-invent the wheel here.</p> <p>thanks</p> http://stackoverflow.com/questions/286355/vista-not-supporting-truespeech 0 Vista not supporting trueSpeech! csmba 2008-11-13T06:01:37Z 2008-11-13T06:54:34Z <p>My web application has (server side) a wav file saved using <a href="http://en.wikipedia.org/wiki/Truespeech" rel="nofollow">truespeech</a> and then a client (ie6, ie7) can ask to plat the file and the web server serves it..</p> <p>All you need on xp is to have WMP 9 or higher and it all works. but on vista.. suddenly the vista client box can't play the file cause it doesn't support truespeech (some upgrade!)</p> <p>anyone has an idea of what should I do?</p> <ol> <li>You can suggest a way to make it work on the client (but in general, I don't like having to say that the solution includes installing anything on the client box)</li> <li>you can suggest I don't save the server side file in truespeech, and instead use something else (what?)</li> </ol> http://stackoverflow.com/questions/2717/organizing-documents/2722#2722 1 Answer by csmba for Organizing Documents csmba 2008-08-05T19:18:09Z 2008-10-31T22:26:33Z <p>I think you need to clarify the question, because I don't understand why not use Google desktop or Microsoft's solutions.</p> <p>why bother with tag and organize? all you want is to be able to find what you want when you want it. Do you search the internet, or go to that old yahoo "index" ?</p> http://stackoverflow.com/questions/14837/how-to-get-started-with-speech-to-text/14908#14908 4 Answer by csmba for How to get started with speech-to-text? csmba 2008-08-18T16:56:43Z 2008-10-22T20:56:00Z <p>This is a HUGE questions, I wouldn't know how to begin... So let me just try giving you the right "terms" so you can refine your quest:</p> <p>First, understand that Speech Recognition is a diverse and complicated subject, and it has many different applications. People tend to map this domain to the first thing that comes to their head (usually, that would be computers understanding what you are saying like in IVR systems). So first lets distinguise the concept into the main categories:</p> <p><strong>Human-to-Machine:</strong> Applications that deal with understanding what a human is saying, but the human knows he is talking to a machine and the <em>grammar</em> is very limited. Examples are </p> <ul> <li>Computer automation</li> <li>Specialized: Pilots automating some controls for example (noise a huge problem) </li> <li>IVR (Interactive Voice Response) systems like Google-411 or when you call the bank and the computer on the other side says "say 'service' to get customer service"</li> </ul> <p><strong>human-to-human</strong> (Spontaneous speech): This is a bigger, more complex problem. Here we can also break it down into different applciations:</p> <ul> <li>Call Center: conversation between Agent-Customer, phone quality, compressed</li> <li>Intelligence: radio/phone/live conversations between 2 or more individuals</li> </ul> <p>Now, Speech-To-Text is not what you should be saying that you care about. What you care about is solving a problem. Different technologies are used to solve different problems. See an overview <a href="http://knol.google.com/k/csmba/speech-analytics/2p76v0g9rhval/3#" rel="nofollow">here</a> of some of them. to summarize, other approaches are Phonetic transcription, LVCSR and direct based.</p> <p>Also, are you interested in being the PHd behind the technology? you would need a Masters equivalent involving <em>Signal processing</em> and probably a PHd to be cutting edge. In which case, you will work for a company that develops the actual <strong>speech engine</strong>. Companies like Nuance and IBM are the big ones, but also Phillips and other startups exist.</p> <p>On the other hand, if you want to be the one implementing applications, you will not be working on the engine, but working on building application that USE the engine. A good analogy I think is form the gaming industry: Are you developing the graphic engine (like the Cry engine), or working on one of several hundred games, all use the same graphic engine?</p> <p>Don't get me wrong, there is plenty to work on the quality of the search also outside the IBM/Nuance of the world. The engine is usually very open, and there are a lot of algorithmic tweaking to be done that can dramatically affect performance. Each business application has different constraints and cost/benefit function, so you can make experiments for many years building better voice recognition based applications.</p> <p>one more thing: in general, you would also want to have good statistics background the lower in the stack you want to be.</p> <blockquote> <p>At this point in time, I'm mainly interested in being able to create applications that allow automation</p> </blockquote> <p>Good, we are converging here... Then you have no interest in "Speech-to-Text". That buzzwords takes you to the world of full transcription, a place you do not need to go to. You should be focusing on some of the more Human-to-Machine technologies like Voice XML and the ones used in IVR systems (Nuance is the biggest player there)</p> http://stackoverflow.com/questions/214527/is-there-any-performance-reason-to-use-powers-of-two-for-field-sizes-in-my-databa/214678#214678 1 Answer by csmba for Is there any performance reason to use powers of two for field sizes in my database? csmba 2008-10-18T06:31:23Z 2008-10-18T06:31:23Z <p>The size of the field itself may be important, but usually for text if you use nvarchar or varchar it is not a big deal. Since the DB will take what you use. the follwoing will have a greater impact on your SQL speed:</p> <p>don't have more columns then you need. bigger table in terms of columns means the database will be less likely to find the results for your queries on the same disk page. Notice that this is true even if you only ask for 2 out of 10 columns in your select... (there is one way to battle this, with clustered indexes but that can only address one limited scenario).</p> <p>you should give more details on the type of design issues/alternatives you are considering to get additional tips.</p> http://stackoverflow.com/questions/143084/is-it-ok-to-have-an-empty-class-that-extends-another-class/143135#143135 0 Answer by csmba for Is it OK to have an 'empty' class that extends another class? csmba 2008-09-27T06:39:18Z 2008-09-27T06:39:18Z <p>your data was not clear enough, but based on what I think you need, I am puzzled why you don't simply go with a 4th option:</p> <pre><code>Class MainStuff; Class TypeA; Class TypeB; </code></pre> <p>No either make TypeA and B inherit from MainStuff, or make MainStuff a data member of TypeA and TypeB. This depends on the meaning of what these 3 classes are.</p> http://stackoverflow.com/questions/141946/best-alternative-to-lotus-screencam/142221#142221 1 Answer by csmba for Best alternative to Lotus' ScreenCam? csmba 2008-09-26T21:54:35Z 2008-09-26T21:54:35Z <p><strong><a href="http://www.jingproject.com/" rel="nofollow">Jing</a></strong> project is probably the best and most versatile. It does easy screen shots (with ability to edit them on the fly) and video (with ability to share them automatically to web or FTP site for enterprise use).</p> <p>My runner up(s) are</p> <p><a href="http://www.debugmode.com/wink/" rel="nofollow">Wink</a> and Camstudio</p> http://stackoverflow.com/questions/135845/are-booleans-as-method-arguments-unacceptable/135911#135911 5 Answer by csmba for Are booleans as method arguments unacceptable? csmba 2008-09-25T20:41:10Z 2008-09-25T20:41:10Z <p>I would not agree that it is a good <strong>rule</strong>. Obviously, Enum makes for a better explicit or verbose code at some instances, but as a rule it seems way over reaching. </p> <p>First let me take your example: The programmers responsibility (and ability) to write good code is not really jeopardized by having a Boolean parameter. In your example the programmer could have written just as verbose code by writing:</p> <pre><code>dim append as boolean = true file.writeData( data, append ); </code></pre> <p>or I prefer more general</p> <pre><code>dim shouldAppend as boolean = true file.writeData( data, shouldAppend ); </code></pre> <p>Second: The Enum example you gave is only "better" because you are passing a CONST. Most likely in most application at least some if not most of the time parameters that are passed to functions are VARIABLES. in which case my second example (giving variables with good names) is much better and Enum would have given you little benefits.</p> http://stackoverflow.com/questions/55755/asp-net-performance-implications-of-a-sql-server-database-in-the-appdata-folde/55917#55917 0 Answer by csmba for ASP.NET - Performance Implications of a sql server database in the app_data folder csmba 2008-09-11T06:47:42Z 2008-09-11T06:47:42Z <p>I wouldn't recommend this for anything but a "learning" project.</p> <p>For any real application, regardless of size, you don't know what type of "next feature" you will add. You want to have a real independent database in which you can delegate functionality to, in which you can set jobs to run independently, sit on a different HD, maybe splitting it into a different VM? </p> <p>You can use SQL Express and still be "free', and it is better to do this seperation before the site grows and the DB is harder to move.</p> http://stackoverflow.com/questions/51114/asp-net-3-5-without-microsoft-sql-server-what-do-i-lose/51250#51250 1 Answer by csmba for ASP.NET 3.5 Without Microsoft SQL Server - What do I lose? csmba 2008-09-09T05:15:18Z 2008-09-09T05:15:18Z <p>Some things that come to mind:</p> <ul> <li>asp.net has nice "automatic" user management (authentication) system. I think it only goes with SQL Server, but there might be a way to make it work on other DBs. The tutorials assume SQL Server usually (or the built in file based DB for development)</li> <li>Not related to asp.net, but useful for any project is SQLCLR, which I find a great addition to sql server. Lets you delegate logic you write in the business level (supporting dll or classes) to sql server in the from of a SP, but the SP is written in vb.net/c#</li> <li><a href="http://msdn.microsoft.com/en-us/library/ms170722(SQL.90).aspx" rel="nofollow">Notification services</a></li> </ul> http://stackoverflow.com/questions/39792/how-do-i-do-multiple-updates-in-a-single-sql-query/39809#39809 0 Answer by csmba for How do I do multiple updates in a single SQL query? csmba 2008-09-02T15:29:25Z 2008-09-02T15:29:25Z <p><strong>VB.NET code:</strong> dim delimitedIdList as string = arrayToString(listOfIds)</p> <p>dim SQL as string = " UPDATE foo SET flag=true WHERE id in (" + delimitedIdList + ")"</p> <p>runSql(SQL)</p> http://stackoverflow.com/questions/37640/best-gui-tool-for-documenting-a-sql-server-db/37648#37648 0 Answer by csmba for Best GUI tool for documenting a SQL Server DB csmba 2008-09-01T09:18:36Z 2008-09-01T09:18:36Z <p>We use a wiki so that all developers can/should update it and it is a team effort. A tool that is makes it hard to share, and requires a central "document" will be hard to maintain.</p> <p>What really do you need? As long as you have a table with the DB schema, document the possible values of each column and their meaning (i.e 1="on hold", 2="Canceled") and then put a image of the main DB tables connected with the foreign keys (export from SQL Server 2005) you are good to go. </p> http://stackoverflow.com/questions/37378/how-to-convince-my-co-workers-not-to-use-datasets-for-enterprise-development-ne/37574#37574 2 Answer by csmba for How to convince my co-workers not to use datasets for enterprise development (.NET 2.0+) csmba 2008-09-01T07:41:29Z 2008-09-01T07:41:29Z <p>Don't make it a religion or faith discussion. Those are hard to win (and is not what you want anyway)</p> <p>Don't frame it the way you just did in your question. The issue is not getting anyone to agree that this way or that way is the general way they should work. You should talk about how each one needs to think in order to make the right choice at any given time. give an example for when to use dataSet, and when not to.</p> <p>I had developers using dataTables to store data they fetched from the database and then have business logic code using that dataTable... And I showed them how I reduced the time to load a page from taking 7 seconds of 100% CPU (on the web server) to not being able to see the CPU line move at all.. by changing the memory object from dataTable to Hash table. </p> <p>So take an example or case that you thing is better implemented differently, and win that battle. Don't fight the a high level war...</p> http://stackoverflow.com/questions/35185/finding-a-single-number-in-a-list/35195#35195 5 Answer by csmba for Finding a single number in a list csmba 2008-08-29T20:08:56Z 2008-08-29T21:10:30Z <p><strong>O(N) time, O(N) memory</strong></p> <p>HT= Hash Table </p> <p>HT.clear() go over the list in order for each item you see</p> <pre><code>if(HT.Contains(item)) -&gt; HT.Remove(item) else ht.add(item) </code></pre> <p>at the end, the item in the HT is the item you are looking for.</p> <p>Note (credit @Jared Updike): This system will find all Odd instances of items.</p> <p><hr /></p> <p><strong>comment</strong>: I don't see how can people vote up solutions that give you NLogN performance. in which universe is that "better" ? I am even more shocked you marked the accepted answer s NLogN solution...</p> <p>I do agree however that if memory is required to be constant, then NLogN would be (so far) the best solution.</p> http://stackoverflow.com/questions/494561/why-is-c-case-sensitive/495883#495883 Comment by csmba on Why is C# Case Sensitive? csmba 2009-11-11T22:44:30Z 2009-11-11T22:44:30Z no, the bad idea is to write that code, but if you write it, it is a god idea for someField and SomeField to be the same. That is my opinion, don't kill me. http://stackoverflow.com/questions/494561/why-is-c-case-sensitive Comment by csmba on Why is C# Case Sensitive? csmba 2009-11-11T22:42:56Z 2009-11-11T22:42:56Z people are just too &quot;crazy&quot; when you dare to question holy god known as &quot;Case Sensitive is the best thing if you are smart person&quot;. I gave you an up vote, don't worry about all the uber sensitive people here... http://stackoverflow.com/questions/895423/case-sensitive-vs-insensitive-syntax/895471#895471 Comment by csmba on Case sensitive Vs insensitive syntax csmba 2009-05-22T01:05:37Z 2009-05-22T01:05:37Z I didn't say the and teh should be equivalent. Maybe that now we found a source for the perceived gap between our positions. I said that either way, as long as the IDE auto corrects (normalizes) it, it doesn't matter. That is what the vb.net IDE will do, while GetAge and getage are the same, the IDE will normalize and make sure that if the calss.func() was written as GetAge, no matter what you type, the IDE changes it to GetAge. Life Is GooD! http://stackoverflow.com/questions/895423/case-sensitive-vs-insensitive-syntax/895519#895519 Comment by csmba on Case sensitive Vs insensitive syntax csmba 2009-05-21T23:58:54Z 2009-05-21T23:58:54Z URLs: here is a reason: people (my mom) would not notice that she is trying to log into Citibank.com and not citibank.com. And that makes ID theft easier. (here, I give reasons, I am not about a flame war) IDE auto correct: I agree that good IDE makes either case less of a problem. I didn't say it is an absolute nightmare, I can't handle it. I wrote c++ for many year, didn't bother me. but doesn't bother me &lt;&gt; I have a reason to think it is good. http://stackoverflow.com/questions/895423/case-sensitive-vs-insensitive-syntax/895522#895522 Comment by csmba on Case sensitive Vs insensitive syntax csmba 2009-05-21T23:13:24Z 2009-05-21T23:13:24Z @jalf: regarding the &quot;case matters in real life..&quot; section. I agree. I don't think that this is again a point PRO the language being case sensitive. You as the programmer are free to use correct English rules when writing your variables and code. In vb.net, if you made a funtion called GetName() then vb.net will enforce that ALL places in the code that use your function are GetName. Pretty no? and in the c# case, you are just as capalbe of writing a funtion gEtnAme() and all users will be using that $%*. so really, it is not a proof that case sensitive lang' is better. http://stackoverflow.com/questions/895423/case-sensitive-vs-insensitive-syntax/895519#895519 Comment by csmba on Case sensitive Vs insensitive syntax csmba 2009-05-21T22:56:44Z 2009-05-21T22:56:44Z I will be happy and that is my point: I want GetAway() and GetAWay to be the same thing. and namepsaces should be case insensitive as well. just like URL www.cnn.com and WwW.CNn.cOm should go to the SAME place. http://stackoverflow.com/questions/895423/case-sensitive-vs-insensitive-syntax/895519#895519 Comment by csmba on Case sensitive Vs insensitive syntax csmba 2009-05-21T22:55:16Z 2009-05-21T22:55:16Z vb.net will dynamically auto correct you to GetAge(). That is the point. it will help you the programmer to not care what that other guy did, and why should you? all you want is the age already. getAge, GetAge or getage are all the same. http://stackoverflow.com/questions/895423/case-sensitive-vs-insensitive-syntax/895471#895471 Comment by csmba on Case sensitive Vs insensitive syntax csmba 2009-05-21T22:49:55Z 2009-05-21T22:49:55Z @jalf: t. Do you want a language to automatically correct common typos like &quot;teh&quot; to &quot;the&quot; as well actually yes. as million of Word users and outlook users show. http://stackoverflow.com/questions/895423/case-sensitive-vs-insensitive-syntax Comment by csmba on Case sensitive Vs insensitive syntax csmba 2009-05-21T22:47:27Z 2009-05-21T22:47:27Z Just because there is no 1 correct answer doesn't mean you can't have pros and cons. You are coorect, I have an opinion which I made clear, but I was asking for people to point out the good about case sensitive. Telling me that case insensitive is for lazy people didn't qualify as a supportive argument, or you think it did? http://stackoverflow.com/questions/895423/case-sensitive-vs-insensitive-syntax/895498#895498 Comment by csmba on Case sensitive Vs insensitive syntax csmba 2009-05-21T22:29:37Z 2009-05-21T22:29:37Z @jalf: this has nothing to do with the reasoning for having this &quot;convention&quot; in the first place. http://stackoverflow.com/questions/895423/case-sensitive-vs-insensitive-syntax/895531#895531 Comment by csmba on Case sensitive Vs insensitive syntax csmba 2009-05-21T22:27:49Z 2009-05-21T22:27:49Z we are confusing beautiful with useful. http://stackoverflow.com/questions/895423/case-sensitive-vs-insensitive-syntax/895522#895522 Comment by csmba on Case sensitive Vs insensitive syntax csmba 2009-05-21T22:27:05Z 2009-05-21T22:27:05Z actually, case sensitive is the case in which the compiler doesn't correct your typo! you can by mistake have in the same class * getAge() * GetAge() adn then the poor user of the class has no clue which one to use. or he may think he calls GetAge and in reality type getAge and get an unexpected result. It never happens in vb.net because it will not let me create such 2 funtions. http://stackoverflow.com/questions/895423/case-sensitive-vs-insensitive-syntax/895519#895519 Comment by csmba on Case sensitive Vs insensitive syntax csmba 2009-05-21T22:24:18Z 2009-05-21T22:24:18Z I don't see what is the pro-case sensitive point here. You are perfectly fine using CamelCasing in vb.NET. who told you not too? the only thing I am saying is that when you write a function called GetAge(), no one can give me even one reason why it should be valid to have in the same calls an overloaded function called Getage(). it makes no sense, has no value, just opens up a case for confusion and bugs. http://stackoverflow.com/questions/895423/case-sensitive-vs-insensitive-syntax Comment by csmba on Case sensitive Vs insensitive syntax csmba 2009-05-21T22:12:57Z 2009-05-21T22:12:57Z case sensitive is bad because it can cause programmers to write bugs, and no one in this thread gives any reason to the up side. you all just are pro case sensitive because.. because.. that is how it is? http://stackoverflow.com/questions/895423/case-sensitive-vs-insensitive-syntax/895475#895475 Comment by csmba on Case sensitive Vs insensitive syntax csmba 2009-05-21T22:11:06Z 2009-05-21T22:11:06Z your points are contradicting. 1 is explains why we have case sensitive syntax. point 2 is why we should not have it.