User Sklivvz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:23:51Z http://stackoverflow.com/feeds/user/7028 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/121243/hidden-features-of-sql-server 86 Hidden Features of SQL Server Sklivvz 2008-09-23T14:13:42Z 2009-12-22T20:18:06Z <p>What are some hidden features of <a href="http://en.wikipedia.org/wiki/Microsoft%5FSQL%5FServer" rel="nofollow">SQL Server</a>?</p> <p>For example, undocumented system stored procedures, tricks to do things which are very useful but not documented enough?</p> <p><hr></p> <h2>Answers</h2> <p><em>Thanks to everybody for all the great answers!</em></p> <p><strong>Stored Procedures</strong></p> <ul> <li><strong>sp_msforeachtable:</strong> Runs a command with '?' replaced with each table name (v6.5 and up)</li> <li><strong>sp_msforeachdb:</strong> Runs a command with '?' replaced with each database name (v7 and up)</li> <li><strong>sp_who2:</strong> just like sp_who, but with a lot more info for troubleshooting blocks (v7 and up)</li> <li><strong>sp_helptext:</strong> If you want the code of a stored procedure</li> <li><strong>sp_tables:</strong> return a list of all tables</li> <li><strong>sp_stored_procedures:</strong> return a list of all stored procedures</li> <li><strong>xp_sscanf:</strong> Reads data from the string into the argument locations specified by each format argument.</li> <li><strong>xp_fixeddrives:</strong>: Find the fixed drive with largest free space</li> <li><strong>sp_help:</strong> If you want to know the table structure, indexes and constraints of a table</li> </ul> <p><strong>Snippets</strong></p> <ul> <li>Returning rows in random order</li> <li>All database User Objects by Last Modified Date</li> <li>Return Date Only</li> <li>Find records which date falls somewhere inside the current week.</li> <li>Find records which date occurred last week.</li> <li>Returns the date for the beginning of the current week.</li> <li>Returns the date for the beginning of last week.</li> <li>See the text of a procedure that has been deployed to a server</li> <li>Drop all connections to the database</li> <li>Table Checksum</li> <li>Row Checksum</li> <li>Drop all the procedures in a database</li> <li>Re-map the login Ids correctly after restore</li> <li>Call Stored Procedures from an INSERT statement</li> <li>Find Procedures By Keyword</li> <li>Drop all the procedures in a database</li> <li>Query the transaction log for a database programmatically.</li> </ul> <p><strong>Functions</strong></p> <ul> <li>HashBytes()</li> <li>EncryptByKey</li> <li>PIVOT command</li> </ul> <p><strong>Misc</strong></p> <ul> <li>Connection String extras</li> <li>TableDiff.exe</li> <li>Triggers for Logon Events (New in Service Pack 2)</li> <li>Boosting performance with persisted-computed-columns (pcc).</li> <li>DEFAULT_SCHEMA setting in sys.database_principles</li> <li>Forced Parameterization</li> <li>Vardecimal Storage Format</li> <li>Figuring out the most popular queries in seconds</li> <li>Scalable Shared Databases</li> <li>Table/Stored Procedure Filter feature in SQL Management Studio</li> <li>Trace flags</li> <li>Number after a <code>GO</code> repeats the batch</li> <li>Security using schemas</li> <li>Encryption using built in encryption functions, views and base tables with triggers</li> </ul> http://stackoverflow.com/questions/111071/tools-for-converting-from-asp-to-asp-net 6 Tools for converting from ASP to ASP.NET? Sklivvz 2008-09-21T13:53:30Z 2009-12-21T10:19:34Z <p>We have a large ASP (classic ASP) application and we would like to convert it to .NET in order to work on further releases. It makes no sense continuing to use ASP as it is obsolete, and we don't want to rewrite it from scratch (Joel Spolsky tells you <a href="http://www.joelonsoftware.com/articles/fog0000000069.html" rel="nofollow">why</a>).</p> <p>Are there any tools for converting from ASP to ASP.NET 2.0 or 3.5?</p> http://stackoverflow.com/questions/164847/what-is-in-your-vimrc 58 What is in your .vimrc? Sklivvz 2008-10-02T22:14:18Z 2009-11-29T23:54:52Z <p>Vi and Vim allow for really awesome customization, typically stored inside a <code>.vimrc</code> file. Typical features for a programmer would be syntax highlighting, smart indenting and so on.</p> <p><strong>What other tricks for productive programming have you got, hidden in your .vimrc?</strong></p> <p>I am mostly interested in refactorings, auto classes and similar productivity macros, especially for C#.</p> http://stackoverflow.com/questions/110629/cms-which-is-not-a-portal-system 2 CMS which is not a portal system Sklivvz 2008-09-21T09:31:40Z 2009-11-10T02:33:55Z <p>Hi, this is a repost of a <a href="http://stackoverflow.com/questions/107494/cms-without-front-end">question not correctly answered</a> -- sorry about that.</p> <p>We are looking for a reasonably priced <a href="http://en.wikipedia.org/wiki/Content%5Fmanagement%5Fsystem" rel="nofollow">CMS</a> , with source code, in which we can ditch the portal system. There are notorious examples of something similar which are way too expensive: <a href="http://www.eidosmedia.com/Feature%5FUpdate/MethodePortalServer.html" rel="nofollow">Methode</a>, <a href="http://www.broadvision.com" rel="nofollow">Broadvision</a>, <a href="http://www.microsoft.com/cmserver/" rel="nofollow">Microsoft CMS</a>.</p> <p>There are a lot of systems in which the portal part is too tightly coupled with the backend to do that. Basically <a href="http://www.joomla.org" rel="nofollow">Joomla</a>, <a href="http://drupal.org" rel="nofollow">Drupal</a>, <a href="http://phpnuke.org" rel="nofollow">phpNuke</a>, <a href="http://www.dotnetnuke.com" rel="nofollow">dotNetNuke</a>, <a href="http://umbraco.org" rel="nofollow">Umbraco</a> are all examples of what we don't want.</p> <p>We want a back office system that can store heterogeneous information with versioning, workflow and so on. This information should be statically publishable (to files, xml, etc...). Also we would like to have a set of APIs for accessing the information in a custom front-end.</p> <p>We would use this system in a large number of websites. Platform is not important as we develop sites on multiple stacks.</p> <p>Thank you in advance</p> http://stackoverflow.com/questions/108348/what-agile-methodology 2 What Agile methodology? Sklivvz 2008-09-20T14:41:40Z 2009-11-04T00:28:47Z <p>What agile methodology would you recommend for a web-site shop?</p> <p>We have a variety of small projects and a few large ones, teams are cross-project and they multitask. We are really interested in Scrum, but it seems that it would not apply to small projects (less than 2 weeks), which currently make up a lot of our time. </p> <p>What alternatives are out there to implement agile principles in our situation?</p> http://stackoverflow.com/questions/114029/dynamic-linq-and-dynamic-lambda-expressions 5 Dynamic LINQ and Dynamic Lambda expressions? Sklivvz 2008-09-22T09:47:20Z 2009-09-22T21:49:28Z <p>What is the best way of dynamically writing LINQ queries and Lambda expressions? </p> <p>I am thinking of applications where the end user can design business logic rules, which then must be executed.</p> <p>I am sorry if this is a newbie question, but it would be great to get best practices out of experience.</p> http://stackoverflow.com/questions/1311986/handling-encoded-cookie-values-in-c 1 Handling encoded cookie values in C# Sklivvz 2009-08-21T13:35:33Z 2009-09-20T00:37:27Z <p>According to <a href="http://www.ietf.org/rfc/rfc2109.txt" rel="nofollow">RFC 2109</a>, the value of a cookie "is opaque to the user agent and may be anything the origin server chooses to send, possibly in a server-selected printable ASCII encoding."</p> <p>As a consequence of this, different languages/platforms/server send a different cookie value even when the original value is the same.</p> <p>For example, C#/ASP.NET send the text as is; classic ASP urlencodes and urldecodes the text; Perl/Apache urlencodes/decods the text (but differently from ASP!). Php gives you the option.</p> <p>I am writing a Single Sign-On system that needs to share a cookie with wildly different applications. In particular I have .NET, Java, Perl, ColdFusion that need to be supported out-of-the-box.</p> <p>The text I store in the cookie is always a valid <a href="http://www.neurophys.wisc.edu/comp/docs/ascii/#table" rel="nofollow">ASCII-7</a> string. Nevertheless, Perl likes to encode some 7-bit ASCII characters, for example.</p> <p>I see two main alternatives to make this work:</p> <ol> <li><p>Only accept non-encoded values. After all there is no need to encode them. This is how it is at the moment. Obviously all integrated systems must be able to support non-encoded values.</p></li> <li><p>Accept both encoded and non-encoded values. This would allow for maximum compatibility out of the box, but I would need to determine whether a particular value is encoded or not (which sounds quite impossible: is "%20" the literal "%20" string or a space?)</p></li> </ol> <p><strong>Which solution would you suggest and why? If it is #2, how would you detect UrlEncoded text?</strong></p> <p><hr /></p> <p>Example of a cookie (I've added line breaks to make it fit)</p> <pre><code>A5A2794D694241AD92F9B22F288EFAA1|8428DCCC|20090821142732|20090821142832| 10.100.107.40|955098D50AB4982D4E247EFA53F4E23B32A05ED0131E096709BE1D8CCC 8A3CA18252D376473C244FD71C462AB42CF54C </code></pre> http://stackoverflow.com/questions/1328465/type-initializer-static-constructor-exception-handling/1328515#1328515 0 Answer by Sklivvz for Type initializer (static constructor) exception handling Sklivvz 2009-08-25T14:08:18Z 2009-08-25T14:08:18Z <p>The workaround I used in the past is creating a Singleton. Make a static constructor fail if and only if the failure means the whole application can't run.</p> http://stackoverflow.com/questions/1324321/net-3-5-logging/1324372#1324372 0 Answer by Sklivvz for .Net 3.5 Logging Sklivvz 2009-08-24T19:50:31Z 2009-08-24T19:50:31Z <p>I use (and write and maintain =D) the <a href="http://code.google.com/p/sixpack-library/" rel="nofollow">SixPack library</a>, which includes a very easy to use logging framework. Example:</p> <pre><code>using SixPack.Diagnostics; /// Log.Instance.Add("Hello"); /// </code></pre> http://stackoverflow.com/questions/1324331/in-your-opinion-what-is-more-readable-operator-or-use-of-ifs/1324356#1324356 1 Answer by Sklivvz for In your opinion what is more readable: ?? (operator) or use of if's Sklivvz 2009-08-24T19:47:34Z 2009-08-24T19:47:34Z <p>Hi, the two options are not equivalent. A part from a bug in the second snippet (it should read <code>if(string.IsNullOrEmpty(value))</code>, it will handle two cases, null and empty strings, whereas the <code>??</code> operator only handles nulls.</p> <p>A part from that it's way more readable. I side with your boss.</p> http://stackoverflow.com/questions/1322769/net-provider-for-aql 0 .net Provider for AQL Sklivvz 2009-08-24T14:33:36Z 2009-08-24T14:33:36Z <p>I am looking for a .net provider for AQL (<a href="http://en.wikipedia.org/wiki/HP%5FOpenView" rel="nofollow">HP OpenView</a>), formerly known as Peregrine ServiceCenter.</p> <p>Is there any open source provider available?</p> <p>Thanks,</p> http://stackoverflow.com/questions/1321237/adding-digits-at-even-and-odd-places-c/1322089#1322089 0 Answer by Sklivvz for Adding digits at Even and Odd Places (C#) Sklivvz 2009-08-24T12:31:43Z 2009-08-24T12:31:43Z <p>This works without LINQ.</p> <pre><code>var r = new int[]{0,0}; for (int i=0; i&lt;7; i++) r[i%2]+="1234567"[i]-48; System.Console.WriteLine("{0} {1}",r[0],r[1]); </code></pre> http://stackoverflow.com/questions/1321149/creating-a-file-that-the-path-does-not-exists/1321160#1321160 6 Answer by Sklivvz for Creating a File that the Path does not exists? Sklivvz 2009-08-24T08:39:11Z 2009-08-24T08:39:11Z <p>Try</p> <pre><code>Directory.CreateDirectory("C:\MyApp\MySubDir\Data") </code></pre> <p><a href="http://www.devx.com/vb2themax/Tip/18678" rel="nofollow">http://www.devx.com/vb2themax/Tip/18678</a></p> http://stackoverflow.com/questions/1321030/how-scalable-are-asp-net-sqlmembershipprovider-and-profile-provider/1321040#1321040 2 Answer by Sklivvz for How Scalable are ASP.NET SqlMembershipProvider and Profile provider ? Sklivvz 2009-08-24T08:06:54Z 2009-08-24T08:06:54Z <p>Hi, I have used them on 100K user sites without any problems.</p> http://stackoverflow.com/questions/1321009/control-values-on-refresh/1321016#1321016 1 Answer by Sklivvz for control values on refresh Sklivvz 2009-08-24T07:59:40Z 2009-08-24T07:59:40Z <p>Because a web form is also an HTML form. You need to POST the form instead of refreshing.</p> http://stackoverflow.com/questions/1320930/restricting-log-in-for-each-user-to-a-single-computer-in-asp-net/1320995#1320995 2 Answer by Sklivvz for Restricting log in for each user to a single computer in ASP.NET Sklivvz 2009-08-24T07:53:49Z 2009-08-24T07:53:49Z <p>You can do it this way:</p> <ul> <li>Store the current Session Id (<code>HttpContext.Current.Session.SessionID</code>) in the <code>Application</code> object, along with a time stamp.</li> <li>At the next request (e.g. in <code>Global.asax</code>), check if the current session is the same as before and if less than 20 minutes have passed. If the session is the same, let them work normally. If they are different, only let them work if 20 minutes have passed. Do update the <code>Application</code> object.</li> </ul> <p>This will allow one user at a time, on one computer at a time. It is probably not 100% safe, but it is a very viable way to do it.</p> http://stackoverflow.com/questions/1320837/bring-agility-to-a-c-developers-team/1320942#1320942 6 Answer by Sklivvz for Bring agility to a C# Developers Team Sklivvz 2009-08-24T07:38:24Z 2009-08-24T07:38:24Z <p>Hi,</p> <p>Straight away, you can take some good practices out of both. </p> <p>Daily scrum meetings are very effective. Have the whole team meet daily near a whiteboard, not a room, for a 15 minutes stand up. Everybody has to answer three questions:</p> <ul> <li>What have you done yesterday</li> <li>What will you do today</li> <li>Is anything standing in your way</li> </ul> <p>This has a direct benefit of making everybody feel part of a team, and letting problems emerge.</p> <p>Dividing your project into iterations is also very useful. Choose an iteration length, either two weeks or one month. </p> <ul> <li>Have a half day meeting on the first day of the iteration where the team chooses and commits on what to do in the iteration. Write this down and refer to it during the daily meetings. Monitor that you are progressing towards the objective. </li> <li>Have another half day meeting on the last day of the iteration to do two things. First you want the demo the current state-of-the-art to Business Owners (or Stakeholders). This focuses the team on having something that can be demoed, and keeps pressure off the team by showing constant progress. Second, you want to have a retrospective meeting in which you write down what went wrong, what went right and any exceptional events happened.</li> </ul> <p>Sometimes we use pair programming to build team spirit and to focus on particularly complex issues. Give one item to solve to two people using only one computer.</p> <p>Speaking of team focus, have the whole team work in the same dedicated room if possible. This is quite important.</p> <p>Continuous integration, decent source control and unit testing are technical tools that allow your team to be more agile. Set them up!</p> <p>I also found useful in the past to circulate (and hang a large print-out of) the agile manifesto.</p> <p>In order to become even more agile, you need your Business Owner to "buy-in" to the methodology. They need to be involved in the planning meetings where the pick and choose which items should be developed in the following iteration. Generally this choice is based on business value: reduce risk by having the most valuable items developed first. If the project runs late you can still close it off early, still having the most important stuff. They also have to accept part of the responsibility of bringing the development to completion. This usually focuses the development on the right things.</p> <p>I could write a lot more on the full implementation of these methodologies, but as I was saying, your project has already started. In my experience the biggest problem with implementing agile methodologies is that people have difficulty getting what agile means. Some people will tend to act in a non-agile way even during a fully agile development! For this reason I think that you will need some agile training before you can implement a full-blown Scrum, for example.</p> <p>Hope it helps!</p> http://stackoverflow.com/questions/1318731/suggestions-for-how-to-organize-my-skill-set-on-a-resume/1318776#1318776 3 Answer by Sklivvz for Suggestions for how to organize my skill set on a resume Sklivvz 2009-08-23T15:06:44Z 2009-08-23T15:06:44Z <p>Keep your CV short.</p> <p>I would resume this paragraph:</p> <blockquote> <p>C# 2.0, 3.5, Asp.Net 2.0, 3.5 ; Visual Studio 2005, 2008, AJAX, CSS, JavaScript, Html, Web Services , SQL Server 2005, SQL Express, T-SQL , Stored Procedures, Views, SSMS, Ado.Net, Resharper, nUnit, NetAdvantage, Photoshop , IIS, Cassini; Windows XP, Vista , MS Office 2003, 2007, Specifications, Application Design, Front and BackEnd Programming, Database Programming, Test Driven Development, N-Tier Architecture, User Interface, Usability.</p> </blockquote> <p>To a way simpler</p> <blockquote> <p>Senior Web Developer: C# 2.0-3.5 , SQLServer 2005. I specialize in complex (N-Tier) web application and I have strong database and front-end skills</p> </blockquote> <p>(Or whatever best describes you)</p> <p>Once you get an interview, I am sure you can go into much more detail.</p> <p>In general you can expect your reader to look for two things:</p> <ul> <li>if you are senior or not (i.e. how well can you be expected to develop an application well without supervision)</li> <li>if you are a platform specialist or a generalist. In your case I would say you are a specialist, otherwise make sure to include something like "language agnostic" in your CV.</li> </ul> <p>Hope it helps, and good look with your job search!</p> http://stackoverflow.com/questions/1318666/group-by-mysql-mess/1318687#1318687 1 Answer by Sklivvz for Group by MySQL mess Sklivvz 2009-08-23T14:17:57Z 2009-08-23T14:17:57Z <p>I don't know why MySQL allows you to do that, but normally in SQL the following query is not valid</p> <pre><code>SELECT cmt_id, thread_id, cmt_text, MIN(cmt_id) FROM comments GROUP BY thread_id; </code></pre> <p>You shouldn't be able to specify a SELECT column if it is not</p> <ol> <li>A <code>GROUP BY</code> column</li> <li>An aggregate function (e.g. <code>MIN</code>, <code>MAX</code>, <code>COUNT</code>, <code>SUM</code>...)</li> </ol> <p>In your case I would use this select</p> <pre><code>SELECT cmt_id, thread_id, cmt_text FROM comments INNER JOIN ( SELECT MAX(cmt_id) AS cmt_id FROM comments GROUP BY thread_id ) a ON a.cmt_id = comments.cmt_id </code></pre> http://stackoverflow.com/questions/1318621/programming-newbie-help-with-designing-a-web-app/1318658#1318658 7 Answer by Sklivvz for Programming newbie - help with designing a web app Sklivvz 2009-08-23T14:08:14Z 2009-08-23T14:08:14Z <p>OK, first of all, welcome :) Second of all: yours is not a stupid idea at all, in fact, you have chosen the best way to learn how to program: do something useful and fun.</p> <p>To get to your question: why do you need consecutive IDs for the questions? Database-wise, you just need to have different IDs per row.</p> <p>If it is a display requirement, why don't you assign a number over a loop during display? So, for example when you do a <code>foreach</code> to display the questions you can keep an index variable which you increment at each loop, and use that to display the ordinal.</p> <p>Hope this is what you are looking for, good luck!</p> http://stackoverflow.com/questions/1318602/webcontrol-vs-htmlcontrol-cos-and-pros-using-them-in-web-forms-application/1318636#1318636 1 Answer by Sklivvz for WebControl vs HtmlControl. Cos and pros using them in web forms application Sklivvz 2009-08-23T14:01:55Z 2009-08-23T14:01:55Z <p>The main difference is that HtmlControls only provide a way of addressing a part of the page during the page cycle, whereas WebControls are stateful.</p> <p>In your example, if you assign some value to the Label text, it will keep it across PostBacks.</p> <p>In my experience is far better to use HtmlControls if you can, they are much more lightweight and they don't fill up your ViewState. Do use WebControls when you need them to be stateful.</p> <p>For example, you might want to use a Label for a page title, because you can only assign the value once (typically in <code>Page_OnLoad</code> inside a <code>if (!IsPostBack)</code> block). You might want to use an HTML span to provide some status feedback (where the status is updated at each postback, for example). </p> http://stackoverflow.com/questions/1316848/unit-testing-what-not-to-test/1316890#1316890 0 Answer by Sklivvz for Unit Testing - What not to test.. Sklivvz 2009-08-22T19:55:25Z 2009-08-22T19:55:25Z <p>I disagree with your points. You shouldn't write your unit tests based on how the code is written now, but to make sure that in the future, if another developer has changed some random part of the code, he can run them and get confidence that all is well.</p> <p>For example, you might want to test that method that simply invokes another. After all you are only interested that the outer method works, not how it works. If the next developer changes the outer method so that is not so simple anymore, he will be missing a unit test.</p> <p>This is the reason why you should use a tool like <a href="http://www.ncover.com" rel="nofollow">NCover</a> to make sure that 100% of your code is executed in the unit tests!</p> http://stackoverflow.com/questions/1316600/using-or-between-having-and-where-clause-in-mysql/1316856#1316856 0 Answer by Sklivvz for Using 'OR' between HAVING and WHERE clause in MySQL? Sklivvz 2009-08-22T19:44:00Z 2009-08-22T19:44:00Z <p>Although using a subquery works well, it will have an impact because you are not hitting any indexes.</p> <p>What about adding a computed column (<code>firstname || ' ' || lastname</code>) to the table and an index to it? Surely it would be much faster.</p> <p>If you cannot do that I think that querying like</p> <pre><code>WHERE firstname || ' ' || lastname LIKE '%user_submitted_data%' </code></pre> <p>should still work faster than two <code>OR</code>s and one subquery.</p> http://stackoverflow.com/questions/91617/generating-classes-automatically-from-unit-tests 5 Generating classes automatically from unit tests? Sklivvz 2008-09-18T10:58:56Z 2009-08-22T14:47:48Z <p>I am looking for a tool that can take a unit test, like</p> <pre><code>IPerson p = new Person(); p.Name = "Sklivvz"; Assert.AreEqual("Sklivvz", p.Name); </code></pre> <p>and generate, automatically, the corresponding stub class and interface</p> <pre><code>interface IPerson // inferred from IPerson p = new Person(); { string Name { get; // inferred from Assert.AreEqual("Sklivvz", p.Name); set; // inferred from p.Name = "Sklivvz"; } } class Person: IPerson // inferred from IPerson p = new Person(); { private string name; // inferred from p.Name = "Sklivvz"; public string Name // inferred from p.Name = "Sklivvz"; { get { return name; // inferred from Assert.AreEqual("Sklivvz", p.Name); } set { name = value; // inferred from p.Name = "Sklivvz"; } } public Person() // inferred from IPerson p = new Person(); { } } </code></pre> <p>I know ReSharper and Visual Studio do some of these, but I need a complete tool -- command line or whatnot -- that automatically infers what needs to be done. If there is no such tool, how would you write it (e.g. extending ReSharper, from scratch, using which libraries)?</p> http://stackoverflow.com/questions/107755/c-libraries-for-internationalization 15 C# libraries for internationalization? Sklivvz 2008-09-20T09:46:05Z 2009-08-20T03:47:54Z <p><strong>What libraries are there to write C# internationalized applications?</strong></p> <p>Typical functionalities that should be contained in the library:</p> <ul> <li>Validation of country specific data (e.g. VAT numbers, phone numbers, addresses,...)</li> <li>Validation of bank and financial coordinates (e.g. Credit Card numbers, IBAN,...)</li> <li>Language-specific functionalities (e.g. numbers to words to numbers, summarize,...)</li> <li>Language specific content filtering (e.g. swearword filtering...)</li> </ul> <p>An example of such libraries in Perl would be the <a href="http://search.cpan.org/modlist/Internationalization_Locale" rel="nofollow">Internationalization/Locale section</a> of CPAN.</p> <p>What C# solutions are available?</p> <p><hr /></p> <p>Note: I am not looking for an introduction to the System.Globalization namespace :)</p> <p><hr /></p> <p>Note 2: Should I desume that there are no options available? Is someone interested in joining forces and create one?</p> <p><hr /></p> <p>Note 3: Edit to make the question appear on front page in hope of more answers. This isn't such a hard question, how is it possible that Stackers don't ever do i18n?</p> http://stackoverflow.com/questions/1297104/is-it-legal-for-the-software-to-phone-home-and-provide-id/1297135#1297135 0 Answer by Sklivvz for Is it legal for the software to "Phone home" and provide ID Sklivvz 2009-08-18T23:32:02Z 2009-08-18T23:32:02Z <p>It is indeed legal in most countries, and in fact most COTS software does indeed provide some license information when downloading updates.</p> <p>It goes without saying that you will need to specify this in the EULA or at least inform the user.</p> http://stackoverflow.com/questions/1294660/c-automatic-properties/1294693#1294693 2 Answer by Sklivvz for C# Automatic Properties Sklivvz 2009-08-18T15:36:23Z 2009-08-18T15:36:23Z <p>You can write </p> <pre><code>public string Forename{ get; private set; } </code></pre> <p>to get read-only properties... Still not nearly as versatile as real properties, but it's a compromise that for some works.</p> http://stackoverflow.com/questions/1292886/naming-a-page-index-html-changes-it/1292900#1292900 3 Answer by Sklivvz for Naming a page index.html changes it? Sklivvz 2009-08-18T09:46:37Z 2009-08-18T09:46:37Z <p>This is a caching issue, probably. </p> <p>Try clearing your browser cache and then reloading the page with CTRL-F5 or equivalent.</p> http://stackoverflow.com/questions/1292834/paypal-module-in-joomla/1292864#1292864 0 Answer by Sklivvz for PayPal module in Joomla Sklivvz 2009-08-18T09:35:06Z 2009-08-18T09:35:06Z <p>You can simply add a link in any page with joomla to integrate with paypal.</p> <p>On line utility: <a href="http://www.codetransit.com/generators/paypal%5Flink%5Fgenerator.php" rel="nofollow">http://www.codetransit.com/generators/paypal_link_generator.php</a></p> <p>Example result:</p> <p><a href="http://www.codetransit.com/generators/paypal%5Flink%5Fgenerator.php?item=Stack+Overflow+answer&amp;item%5Fid=123&amp;dollars=100&amp;cents=00&amp;currency%5Fcode=GBP&amp;paypal%5Faccount=info%40evillot.com&amp;process=Generate+Link" rel="nofollow">Add to cart!</a></p> http://stackoverflow.com/questions/1292577/designing-tables-for-storing-various-requirements-and-stats-for-multiplayer-game/1292783#1292783 1 Answer by Sklivvz for Designing tables for storing various requirements and stats for multiplayer game Sklivvz 2009-08-18T09:14:01Z 2009-08-18T09:14:01Z <p>When you have a data-centric problem, the database is your friend. What you have done so far seems to be quite right.</p> <p>On the other hand, the other problems you mention seem to be behaviour-centric. In this case, an object-oriented analisys and solution will work better.</p> <p>For example: Create a quest class with specificQuest child classes. Each child should implement a <code>bool HasRequirements(Player player)</code> method.</p> http://stackoverflow.com/questions/412341/how-should-i-store-guid-in-mysql-tables/412347#412347 Comment by Sklivvz on How should I store GUID in MySQL tables? Sklivvz 2009-10-02T09:54:12Z 2009-10-02T09:54:12Z Woha! ever heard about indexes? no sane dbms does what you just said. http://stackoverflow.com/questions/1386164/can-we-think-the-nested-type-mapping-as-composition Comment by Sklivvz on Can we think the nested type mapping as composition ? Sklivvz 2009-09-06T17:30:32Z 2009-09-06T17:30:32Z Cleaned up the question http://stackoverflow.com/questions/1324269/why-is-this-struct-cleared-after-being-created/1324288#1324288 Comment by Sklivvz on Why is this struct cleared after being created? Sklivvz 2009-08-24T19:44:51Z 2009-08-24T19:44:51Z Same test and same result on a Mac with mono. +1 http://stackoverflow.com/questions/1321673/display-array-in-data-grid Comment by Sklivvz on Display array in data grid Sklivvz 2009-08-24T11:18:59Z 2009-08-24T11:18:59Z The example is not c#? http://stackoverflow.com/questions/1321157/whats-wrong-with-the-mysql-date-function Comment by Sklivvz on What's wrong with the MySQL DATE() function? Sklivvz 2009-08-24T08:40:35Z 2009-08-24T08:40:35Z lol! (or sob!?) http://stackoverflow.com/questions/1320837/bring-agility-to-a-c-developers-team Comment by Sklivvz on Bring agility to a C# Developers Team Sklivvz 2009-08-24T08:01:11Z 2009-08-24T08:01:11Z It's Scrum, not SCRUM! =) http://stackoverflow.com/questions/1318602/webcontrol-vs-htmlcontrol-cos-and-pros-using-them-in-web-forms-application/1318636#1318636 Comment by Sklivvz on WebControl vs HtmlControl. Cos and pros using them in web forms application Sklivvz 2009-08-23T16:29:14Z 2009-08-23T16:29:14Z I don't think that the DOM of the previous rendering of a page is available to the next page cycle. You would get the original DOM, possibly modified where you use WebControls. On the other hand the contents of a SPAN are not posted back during postback. http://stackoverflow.com/questions/1316600/using-or-between-having-and-where-clause-in-mysql/1316856#1316856 Comment by Sklivvz on Using 'OR' between HAVING and WHERE clause in MySQL? Sklivvz 2009-08-22T20:58:37Z 2009-08-22T20:58:37Z You might be right, I think there is no way of using computed columns at all!? http://stackoverflow.com/questions/1311986/handling-encoded-cookie-values-in-c/1312244#1312244 Comment by Sklivvz on Handling encoded cookie values in C# Sklivvz 2009-08-21T14:25:52Z 2009-08-21T14:25:52Z I am already using HEX. The only non alphanumeric is a pipe character to separate fields -- that's what is being encoded by perl. On the other hand, any character could be encoded for all I know under other platforms. You never know :) http://stackoverflow.com/questions/1302925/using-npgsql-to-call-a-function-that-takes-character-as-parameter Comment by Sklivvz on Using npgsql to call a function that takes character as parameter Sklivvz 2009-08-20T06:31:07Z 2009-08-20T06:31:07Z Postgres? Wow... http://stackoverflow.com/questions/107755/c-libraries-for-internationalization/1283746#1283746 Comment by Sklivvz on C# libraries for internationalization? Sklivvz 2009-08-19T14:01:22Z 2009-08-19T14:01:22Z Not only it is not a library, but most stuff is already in the .net stack. http://stackoverflow.com/questions/1293079/asp-net-databinding-and-ui Comment by Sklivvz on ASP.NET Databinding and UI Sklivvz 2009-08-18T10:37:10Z 2009-08-18T10:37:10Z Please fix the title and beef up the question... Advantages/disadvantages in relation to what? http://stackoverflow.com/questions/1292859/itextsharp-and-datagridview Comment by Sklivvz on iTextSharp and DataGridView Sklivvz 2009-08-18T09:36:24Z 2009-08-18T09:36:24Z you mean iTextSharp? http://stackoverflow.com/questions/1273998/how-to-submit-http-form-using-c/1274005#1274005 Comment by Sklivvz on How to submit http form using C# Sklivvz 2009-08-17T10:50:09Z 2009-08-17T10:50:09Z This also does POSTs (See WebRequest.Method) http://stackoverflow.com/questions/107755/c-libraries-for-internationalization/1277935#1277935 Comment by Sklivvz on C# libraries for internationalization? Sklivvz 2009-08-15T21:56:42Z 2009-08-15T21:56:42Z Example of things I would expect to see in the library: validation of phone numbers, address format, zip code, SSN (or equivalent), bank account numbers; name formatting; holidays calendar; a currency class; country specific classes, for example in UK you can derive an address from a postcode; etcetera...