active questions tagged naming - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T21:36:11Z http://stackoverflow.com/feeds/tag/naming http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/514995/whats-in-a-name 8 What's in a name? Nescio 2009-02-05T08:12:47Z 2009-12-05T01:17:57Z <p>I am designing a new product for my team to develop at my <strong>corporate</strong> job. I feel the project will pave a new direction for my team. I am creating a presentation to sell the idea; however, I am having trouble naming the solution. Have you ever named a product before? What attributes helped you name your idea? Is a catchy acronym important? What was/is your muse?</p> http://stackoverflow.com/questions/1847235/database-table-and-column-naming-conventions 1 database, table and column naming conventions garcon1986 2009-12-04T14:20:26Z 2009-12-04T15:55:27Z <p>Hello,</p> <p>Do you know how to use the naming conventions in mysql database? I've downloaded a mysql sample database. </p> <p>Here it is:</p> <pre><code>CREATE DATABASE IF NOT EXISTS classicmodels DEFAULT CHARACTER SET latin1; USE classicmodels ; DROP TABLE IF EXISTS customers ; CREATE TABLE customers ( customerNumber int(11) NOT NULL, customerName varchar(50) NOT NULL, contactLastName varchar(50) NOT NULL, contactFirstName varchar(50) NOT NULL, phone varchar(50) NOT NULL, addressLine1 varchar(50) NOT NULL, addressLine2 varchar(50) default NULL, city varchar(50) NOT NULL, state varchar(50) default NULL, postalCode varchar(15) default NULL, country varchar(50) NOT NULL, salesRepEmployeeNumber int(11) default NULL, creditLimit double default NULL, PRIMARY KEY ( customerNumber ) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; </code></pre> <p>Edit:</p> <p>What i prefer:</p> <pre><code> CREATE DATABASE IF NOT EXISTS classic_models; USE classic_models ; DROP TABLE IF EXISTS customers ; CREATE TABLE customers ( customer_number int(11) NOT NULL, customer_name varchar(50) NOT NULL, -- or i define the column name this way: name varchar(50) NOT NULL, -- NOT customerName and NOT customer_name PRIMARY KEY ( customer_number ) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; </code></pre> <p>Am i right? </p> <p>I recommend an article: <a href="http://kurafire.net/articles/sql-convention" rel="nofollow">sql convention</a> from Faruk Ateş Do you have any advice for naming conventions here? </p> http://stackoverflow.com/questions/1825286/which-name-is-more-correct-in-my-case-manager-or-factory-or-something-else 0 Which name is more correct in my case: manager or factory (or something else)? Roman 2009-12-01T10:24:05Z 2009-12-01T10:46:45Z <p>I have next code:</p> <pre><code>PhotoFactory factory = PhotoFactory.getFactory (PhotoResource.PICASA); PhotoSession session = factory.openSession (login, password); PhotoAlbum album = factory.createAlbum (); Photo photo = factory.createPhoto (); album.addPhoto (photo); if (session.canUpload ()) { session.uploadAlbum (album); } session.close (); </code></pre> <p>I'm not sure that I've chosen correct name. It's not so important but I'm just curious what had you chosen in my case. Another version is manager:</p> <pre><code>PhotoManager manager = PhotoManager.getManager (PhotoResource.PICASA); PhotoSession session = manager.openSession (login, password); PhotoAlbum album = manager.createAlbum (); Photo photo = manager.createPhoto (); album.addPhoto (photo); if (session.canUpload ()) { session.uploadAlbum (album); } session.close (); </code></pre> <p>UPD: I've just found next example at hibernate javadocs:</p> <pre><code> Session sess = factory.openSession(); Transaction tx; try { tx = sess.beginTransaction(); //do some work ... tx.commit(); } </code></pre> <p>Is that a naming mistake?</p> http://stackoverflow.com/questions/695951/max-name-length-of-variable-or-method-in-java 3 Max name length of variable or method in Java talg 2009-03-30T03:50:12Z 2009-11-27T14:43:17Z <p>Is there a max length for class/method/variable names in Java? the JLS doesn't seem to mention that. I know very long names are problematic anyway from code readability and maintainability perspective, but just out of curiosity is there a limitation (I guess class names might be limited by the file system maximal file name limitation).</p> http://stackoverflow.com/questions/1808922/what-is-the-most-interesting-server-name-you-have-ever-seen 0 What is the most interesting server name you have ever seen? [closed] geejay 2009-11-27T13:56:14Z 2009-11-27T14:02:34Z <p>There's some funny kids out there writing code for production machines. I think sometimes the only way to express yourself in enterprise development is in naming things. What are the funniest, nerdiest, arrogant, self-aggrandising server names that you have seen?</p> <p>I'll start with an example from my shop: BigMother</p> http://stackoverflow.com/questions/1808760/what-is-the-most-interesting-server-name-you-have-seen 1 What is the most interesting server name you have seen? [closed] geejay 2009-11-27T13:24:56Z 2009-11-27T13:29:28Z <p>There's some funny kids out there writing code for production machines. I think sometimes the only way to express yourself in enterprise development is in naming things. What are the funniest, nerdiest, arrogant, self-aggrandising server names that you have seen?</p> <p>I'll start with an example from my shop: BigMother</p> http://stackoverflow.com/questions/1796064/what-names-do-you-use-for-the-solution-platforms-in-visual-studio 0 What names do you use for the “Solution Platforms” in Visual Studio? Martín Marconcini 2009-11-25T10:37:44Z 2009-11-25T11:38:54Z <p>The Visual Studio Default config says: “Any CPU”, does anybody change that? If so, what would you use and why?</p> http://stackoverflow.com/questions/1788664/cool-class-variable-names 2 Cool Class/Variable Names [closed] fahdshariff 2009-11-24T08:30:16Z 2009-11-24T08:45:33Z <p>What are some of the coolest/geeky class/variable names you have encountered. I'm getting bored of all the builders, factories, managers and controllers. Surely, they must have cooler counterparts!</p> http://stackoverflow.com/questions/1748724/what-to-call-the-intermediate-layer-of-the-program 0 What to call the intermediate layer of the program? sharptooth 2009-11-17T13:02:39Z 2009-11-18T06:03:00Z <p>We have a program consisting of three parts. There's the backend which is the NT service handling the requests. Also there's a COM object that implements a predefined interface, is consumed by client software and passes the requests to the service. </p> <p>Since we need to have both 32-bit and 64-bit versions of the COM object we split it into two parts: </p> <ol> <li>the front end that implements the predefined interface</li> <li>the middle layer that implements a newly introduced intermediate interface and is hosted in COM+ to avoid reimplementing everything as both 32 and 64 bit.</li> </ol> <p>So the front end forwards requests to the intermediate layer, the intermediate layer forwards them to the back end.</p> <p>The problem is that the front end is the first thing the customers "see" and we don't like to call it "Our Product Front end", but rather just call it "Our Product". We also need to invent a good name for the intermediate layer. What's typically used for the latter?</p> <p>So far the most suitable match I found in the dictionary is <em>spacer level</em> - concise and somehow reflects what the layer is for. Will that do?</p> http://stackoverflow.com/questions/1752914/naming-a-finance-management-tracking-application 1 naming a finance management / tracking application Midday 2009-11-18T00:48:12Z 2009-11-18T01:38:33Z <p>I am about to start develop a finance/expenses tracking/management/statistics webapplication, somewhat similar to xpenser.com , mint.com (except bank integration), for a college project and I am looking for a name</p> <p>credit will be given in the documentation if the name will be used</p> <p>if this turns later into a real-life project the name will be changed</p> <p>...<br> unsure if this belongs on stackoverflow, but I figured that since it is a programming project here is a place to ask for ideas</p> <p>Is your question about programming? - It is related to programming<br> We prefer questions that can be answered, not just discussed. - there many answers, they don't need discussion</p> http://stackoverflow.com/questions/423994/reserved-words-as-variable-or-method-names 2 Reserved words as variable or method names 2009-01-08T11:47:46Z 2009-11-08T21:02:49Z <p>Is there any tricky way to use Java reserved words as variable or method names?</p> http://stackoverflow.com/questions/1169700/how-to-prevent-illegal-file-and-folder-name-creation-in-windows-server-2003-or-wi 0 How to prevent illegal file and folder name creation in Windows Server 2003 or Windows Server 2008 Joel Thibeault 2009-07-23T05:04:41Z 2009-11-04T22:00:02Z <p>Preventing illegal file and Folder name creation on a Windows 2003/2008 file server is the goal. We know from articles like <a href="http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows">http://stackoverflow.com/questions/62771/how-check-if-given-string-is-legal-allowed-file-name-under-windows</a> that for some reason the file system allows creation of illegal file/folder chacters and paths that exceed the limitations of Windows. I need the following question answered:</p> <ol> <li>How to remove cabability to create file or folder creation in NTFS that contains invalid characters?</li> <li>Can you remove the POSIX subsystem from Windows to fix this issue?</li> <li>How does disabling 8.3 dos name creation factor into this issue?</li> <li>Will any of these fixes prevent linux clients from creating windows compliant files?</li> </ol> http://stackoverflow.com/questions/1082192/how-to-generate-random-variable-names-in-c-using-macros 0 How to generate random variable names in C++ using macros? freitass 2009-07-04T13:16:54Z 2009-11-04T17:00:06Z <p>I'm creating a macro in C++ that declares a variable and assigns some value to it. Depending on how the macro is used, the second occurrence of the macro can override the value of the first variable. For instance:</p> <pre><code>#define MY_MACRO int my_variable_[random-number-here] = getCurrentTime(); </code></pre> <p>The other motivation to use that is to avoid selecting certain name to the variable so that it be the same as a name eventually chosen by the developer using the macro.</p> <p>Is there a way to generate random variable names inside a macro in C++?</p> <p>-- Edit --</p> <p>I mean unique but also random once I can use my macro twice in a block and in this case it will generate something like:</p> <pre><code>int unique_variable_name; ... int unique_variable_name; </code></pre> <p>In this case, to be unique both variable names have to be random generated.</p> http://stackoverflow.com/questions/1647657/why-name-threads-in-net 0 Why name threads in .NET? JamesBrownIsDead 2009-10-30T02:17:13Z 2009-10-31T05:44:58Z <p>I've always been in the habit of naming my threads like this because I read sometime to do so, but it occurred to me that I've never used any debugging tool that showed a thread's name.</p> <p>When would naming a thread be useful? When would I actually see the name of a thread? Should I name threads for some profiling tools? What tools?</p> http://stackoverflow.com/questions/1636731/what-should-i-name-this-extension-method 2 What should I name this Extension method ? this.__curious_geek 2009-10-28T11:41:53Z 2009-10-28T14:07:07Z <p>I have written an extension method for string manipulation. I'm confused what should I name it - since this will become part of the base library front-end developers in the team will use. Here's the profile of the class member.</p> <p><strong>Info:</strong> Utility Extension method for String types. Overloads of this method may do the same thing characters other than space [with what supplied in argument]<br /> <strong>Purpose:</strong> Trims down all intermediate or in-between spaces to single space.<br /> <strong>Ex:</strong></p> <pre><code>string Input = "Hello Token1 Token2 Token3 World! "; string Output = Input.TrimSpacesInBetween(); //Output will be: "Hello Token1 Token2 Token3 World!" </code></pre> <p>I have read [in fact I'm reading] the Framework Design guidelines but this seems to be bothering me.</p> <p>Some options I think..</p> <pre><code>TrimIntermediate(); TrimInbetween(); </code></pre> <h2>Here's the code on Request:</h2> <p>It's recursive..</p> <pre><code>public static class StringExtensions { public static string Collapse(this string str) { return str.Collapse(' '); } public static string Collapse(this string str, char delimeter) { char[] delimeterts = new char[1]; delimeterts[0] = delimeter; str = str.Trim(delimeterts); int indexOfFirstDelimeter = str.IndexOf(delimeter); int indexTracker = indexOfFirstDelimeter + 1; while (str[indexTracker] == delimeter) indexTracker++; str = str.Remove(indexOfFirstDelimeter + 1, indexTracker - indexOfFirstDelimeter - 1); string prevStr = str.Substring(0, indexOfFirstDelimeter + 1); string nextPart = str.Substring(indexOfFirstDelimeter + 1); if (indexOfFirstDelimeter != -1) nextPart = str.Substring(indexOfFirstDelimeter + 1).Collapse(delimeter); string retStr = prevStr + nextPart; return retStr; } } </code></pre> http://stackoverflow.com/questions/1617437/why-resharper-offers-a-variable-name-with-a-class-suffix 0 Why ReSharper offers a variable name with a "class" suffix? burak ozdogan 2009-10-24T09:06:27Z 2009-10-26T15:45:46Z <p>Hi guys,</p> <p>I was wondering why R# offers a variable name with a "class" suffix? When I am creating an instance of a class, why would I put a class suffix of my instance? Can there be any reason to have a such thing:</p> <pre><code>BusinessClass myBusinessClass = new BusinessClass(); </code></pre> <p>Thanks.</p> http://stackoverflow.com/questions/529863/do-you-prefer-verbose-naming-when-it-comes-to-database-columns 3 Do you prefer verbose naming when it comes to database columns? Wayne M 2009-02-09T20:47:44Z 2009-10-26T14:10:43Z <p>Which is your preference?</p> <p>Let's say we have a generic Product table that has an ID, a name, and a foreign key reference to a category. Would you prefer to name your table like:</p> <pre><code>CREATE TABLE Products ( ProductID int NOT NULL IDENTITY(1,1) PRIMARY KEY, CategoryID int NOT NULL FOREIGN KEY REFERENCES Categories(CategoryID), ProductName varchar(200) NOT NULL ) </code></pre> <p>using explicit naming for the columns (e.g. <strong>Product</strong>Name, <strong>Product</strong>ID), or something like:</p> <pre><code>CREATE TABLE Products ( ID int NOT NULL IDENTITY(1,1) PRIMARY KEY, CategoryID int NOT NULL FOREIGN KEY REFERENCES Categories(ID), Name varchar(200) NOT NULL ) </code></pre> <p>From what I've seen, the convention in the .NET world is to be explicit -- the samples tend to use the first example, while the open source and RoR world favor the second. Personally I find the first easier to read and comprehend at first glance: <code>select p.ProductID, p.ProductName, c.CategoryName from Categories c inner join Products p on c.CategoryID = p.CategoryID</code> seems a lot more natural to me than <code>select p.ID AS ProductID, p.Name AS ProductName, c.Name AS CategoryName from Categories c inner join Products p on c.ID = p.CategoryID</code></p> <p>I suppose that given the rudimentary example I provided it's not a big deal, but how about when you are dealing with lots of data and tables? I would still find the first example to be better than the second, although possibly some combination of the two might be worth looking into (<code>&lt;Table&gt;ID</code> for the ID, but just <code>Name</code> for the name?). Obviously on an existing project you should follow the conventions already established, but what about for new development? </p> <p>What's your preference?</p> http://stackoverflow.com/questions/1622359/is-it-acceptable-to-use-role-based-controllers-in-a-mvc-framework 0 Is it acceptable to use role based controllers in a MVC framework xiaohouzi79 2009-10-25T22:51:01Z 2009-10-25T23:25:50Z <p>If my site has several user roles say Admin, User, Manager and there are several modules of functionality that may be used by one particular user or by all users how should I go about naming my controllers?</p> <p>Is it OK to have role based controllers such as an Admin, User and Manager controller as well as controllers for shared functionality such as Products controller?</p> <p>And for small parts of functionality that is used by only one user role can I keep that inside the user based controller e.g. having all the add/remove/update functionality for product categories can I have that inside the Admin controller or should it have its own controller even though it will only be a few lines of code?</p> <p>When searching the net for conventions on doing this I am only provided with ways to name the actual file and other sources only explain the controller functionality and not what should and should not be a controller.</p> <p>If this is subjective I am also happy to take that as an answer, but as it currently stands I am unsure of what is acceptable and whether or not role based controllers are acceptable in the MVC framework. </p> http://stackoverflow.com/questions/1621878/how-do-i-name-this-simple-method 0 How do I name this simple method? Svein Bringsli 2009-10-25T19:46:08Z 2009-10-25T20:13:47Z <p>First of all, this is not <em>really</em> a programming question. It's more a question of "how do I satisfy McConnels naming conventions?"</p> <p>I have this Delphi-application that manipulates word-documents. One of the things I need to do is run through all the bookmarks in the document and delete some of them based upon a simple rule: If I currently work on a quote I will delete all bookmarks where the name begins with "cw_orderspecific". If I work on an order confirmation I will remove all bookmarks with names beginning with "cw_quotespecific".</p> <p>The method is in place, and everything works perfectly, but I have a tiny problem. What should I call my method? The current name ("DeleteBookmarksNotAllowedForCurrentDocumentType") is too long. </p> <p>Any suggestions?</p> http://stackoverflow.com/questions/959238/any-sucess-using-ui-based-program-structuring 2 Any sucess using UI-based program structuring? AareP 2009-06-06T08:18:11Z 2009-10-24T13:37:58Z <p>Have you ever structured your source code based on your user interface parts? For example if your UI consists of:</p> <ol> <li>GridView for showing some properties</li> <li>3D rendering panel</li> <li>panel for choosing active tools </li> </ol> <p>, then you name and group your variables and functions more or less in the following way:</p> <pre><code>class Application { string PropertiesPanel_dataFile; DataSet PropertiesPanel_dataSet; string[] PropertiesPanel_dataIdColumn; void PropertiesPanel_OpenXml(); void PropertiesPanel_UpdateGridView(); string ThreeDView_modelFile; Panel ThreeDView_panel; PointF[] ThreeDView_objectLocations; void ThreeDView_RenderView(); string ToolPanel_configurationFile; Button[] ToolPanel_buttons; void ToolPanel_CreateButtons(); } </code></pre> <p>What's your opinions on this? Can this architecture work in long run?</p> <p>PS. Even though this solution might remind you of Front-ahead-design april-fool's joke <a href="http://thedailywtf.com/Articles/FrontAhead-Design.aspx" rel="nofollow">http://thedailywtf.com/Articles/FrontAhead-Design.aspx</a> my question is serious one.</p> <p><strong><em>EDIT</em></strong></p> <p>Have been maintaining and extending this kind of code for half a year now. Application has grown to over 3000 lines in the main .cs file, and about 2000 lines spread out in to smaller files (that contain generic-purpose helper-functions and classes). There are many parts of the code that should be generalized and taken out of the main file, and I'm constantly working on that, but in the end it doesn't really matter. The structure and subdivision of the code is so simple, that it's really easy to navigate though it. Since the UI contains less than 7 major components, there's no problem in fitting the whole design in you head at once. It's always pleasant to return to this code (after some break) and know immediately where to start from.</p> <p>I guess one the reasons this gigantic procedural-like structure works in my case is the event-like nature of UI programming in c#. For the most part all this code does is implementation of different kinds of events, that are really specific to this project. Even though some event-functions immediately grow into couple of pages long monsters, coupling between event-handlers is not that tight, so it makes it easier to refactor and compress them afterwards. That's why Iam intentionally leaving generalization and refactoring for later time, when other projects start to require the same parts of implementation that this project uses. </p> <p>PS to make it possible to navigate through 3000 lines of code I'm using FindNextSelection- and FindPrevSelection-macros in visual studio. After left-clicking on some variable I'm pressing F4 to jump to the next instance of it, and F2 to the previous instance. It's also possible to select some part of variable name and jump between partial-name matches. Without these shortcuts I would most defenetly lost my way long time ago :)</p> http://stackoverflow.com/questions/1597988/how-do-you-explain-the-fashionable-cool-job-title-names 1 How do you explain the fashionable "cool" job title names? [closed] Vinko Vrsalovic 2009-10-20T23:55:25Z 2009-10-21T07:29:08Z <p>Since a few years I've seen job title names like</p> <ul> <li>Javascript Assassin</li> <li>Rails Master</li> <li>PHP Guru</li> <li>Python Ninja</li> <li>Lisp Middle Earth Wizard</li> <li>Perl Golfer</li> </ul> <p>What do you think is the reason for these names? What do employers look for with this type of ad?</p> <p>And what about the "higher" titles that are definitely used (but never saw them in ads) like</p> <ul> <li>Evangelist</li> <li>Distinguished Eng.</li> <li>IBM Fellow (or sth like that)</li> </ul> <p>Related: <a href="http://stackoverflow.com/questions/471929/whats-the-coolest-startup-programmer-job-title-closed">http://stackoverflow.com/questions/471929/whats-the-coolest-startup-programmer-job-title-closed</a></p> http://stackoverflow.com/questions/148857/what-is-the-opposite-of-parse 29 What is the opposite of 'parse'? Simon 2008-09-29T14:18:21Z 2009-10-20T20:46:33Z <p>I have a function, parseQuery, that parses a SQL query into an abstract representation of that query.</p> <p>I'm about to write a function that takes an abstract representation of a query and returns a SQL query string.</p> <p>What should I call the second function?</p> http://stackoverflow.com/questions/1579472/naming-decision-create-it-if-it-doesnt-exist-in-one-word 5 Naming decision: "Create it if it doesn't exist" in one word cool-RR 2009-10-16T17:54:06Z 2009-10-16T18:07:41Z <h3>Exact duplicate of</h3> <ul> <li><a href="http://stackoverflow.com/questions/1238386/function-name-for-creating-something-if-its-not-there-yet">http://stackoverflow.com/questions/1238386/function-name-for-creating-something-if-its-not-there-yet</a></li> </ul> <p>I have a function which checks if a certain thing exists, and if not, creates it. What would be a good word for it? Right now I'm using "maintain", so the function is called <code>maintain_buffer_on_path</code>, but I think that "maintain" is misleading. Can you think of a better one-word name?</p> http://stackoverflow.com/questions/1541220/how-can-i-name-tuples 0 How can I name Tuples? John Gietzen 2009-10-09T00:05:41Z 2009-10-16T17:00:24Z <p>Is there a language agnostic algorithm to name tuples?</p> <p>Specifically, I want the following function:</p> <pre><code> 1 =&gt; Single 2 =&gt; Double 3 =&gt; Triple 4 =&gt; Quadruple ... 10 =&gt; Decuple ... 100 =&gt; Centuple </code></pre> <p>First of all, is this human-language independent? For example, will that be understood in Spain and Russia?</p> <p>Secondly, what is the most efficient way to generate this list?</p> <p><em>Edit</em></p> <p>Just to clarify:</p> <ol> <li><p>This is not for Tuples in the programming sense, but for a tournament system: Single-elimination, Double-elimination, and etc.</p></li> <li><p>I can do translations, I'm just wondering if there was an algorithm that would lend itself well to translations.</p></li> </ol> http://stackoverflow.com/questions/1579126/what-to-name-an-object-that-encapsulates-its-identifer 0 What to name an object that encapsulates its identifer? Will 2009-10-16T16:45:26Z 2009-10-16T16:51:51Z <p>In other words, what would you call a class that has a public property that contains the identifier for that class which will uniquely identify an instance of that class within a system?</p> <p>e.g.:</p> <pre><code>public class Foo { public Guid Id {get;set;} } </code></pre> <p>Any instance of Foo has an identifier called Id which can be used to distinguish instances of Foo for storage, reporting, etc (assuming its uniqueness is enforced somehow).</p> <p><hr /></p> <p>For motivation, I'm mulling over what I'm going to call a generic collection that stores instances which can uniquely identify themselves. There's something similar in the framework called the <code>KeyedCollection&lt;T&gt;</code> (which doesn't quite work for me in this case).</p> <p>So, what would you call this collection? <code>SelfContainedIdentifierCollection&lt;T&gt;</code> seems kind of inelegant.</p> http://stackoverflow.com/questions/1578194/designing-a-class-with-exceptions 0 Designing a class with **Exceptions** acidzombie24 2009-10-16T13:53:49Z 2009-10-16T14:35:24Z <p>When I design a class I often have trouble deciding if I should throw an exception or have 2 func with the 2nd returning an err value. In the case of 2 functions how should I name the exception and non exception method?</p> <p>For example if I wrote a class that decompresses a stream and the stream had errors or incomplete I would throw an exception. However what if the app is trying to recover data from the stream and excepts an error? It would want a return value instead? So how should I name the 2nd function?</p> <p>Or should I not have both an exception method and a nonexception method?</p> http://stackoverflow.com/questions/1573282/sql-server-2008-resolving-localhost-to-a-computer-name 0 SQL Server 2008 resolving localhost to a computer name Evan Larkin 2009-10-15T15:52:43Z 2009-10-16T14:26:48Z <p>We're in the process of switching from Windows Server 2003 to Windows Server 2008, and we've encountered a frustrating problem:</p> <p>In the old environment, some developers used sql server 2005 and others used sql server 2008. No problems. Our connection strings all pointed to: localhost/sqlserver. Now, on the new Server 2008 environment, Sql Server 2008 is occasionally resolving the "localhost" which immediately causes the thing to throw an exception.</p> <p>In sys.servers we've changed the entry to point to localhost/sqlserver using:</p> <pre><code>exec sp_dropserver 'buckaroo-banzai\sqlserver' exec sp_addserver 'localhost\sqlserver', local exec sp_serveroption 'localhost\sqlserver', 'data access', TRUE </code></pre> <p>and the most frequent offending sql statements look like this (I know it's deprecated form) (note: they aren't the only offenders, just the most common ones):</p> <pre><code>[localhost\sqlserver].[database].[table].exec sp_executesql blahblah; exec sp_another_sp </code></pre> <p>The error I'm getting from those is:</p> <pre><code>Server buckaroo-bonzai\sqlserver not found in sys.servers </code></pre> <p>switching my sys.servers entry back to buckaroo-bonzai\sqlserver gets this error:</p> <pre><code>Server localhost-bonzai\sqlserver not found in sys.servers </code></pre> <p>If <em>everything</em> refers to the sql server as buckaroo-bonzai\sqlserver everything works, but for development, this just isn't an option.</p> <p>For the record, this hasn't happened before on our windows server 2003 environments, just the new server 2008 environments; any ideas?</p> <p>possible workarounds I've thought of:</p> <ol> <li>remove the app.config and web.config files from version control (yech)</li> <li>laboriously keep different connection strings in version controlled files (double yech)</li> <li>version control the files, but somehow have some unified way of referring to an sql server on a local host (localhost maybe? )= )</li> <li>Actually figure out why sql server 2008 is resolving localhost and stop it dead. (yay!)</li> </ol> http://stackoverflow.com/questions/1571195/what-is-the-official-name-of-a-class-that-must-be-inherited-from-to-instantiate 2 What is the official name of a class that must be inherited from to instantiate? JL 2009-10-15T09:15:27Z 2009-10-15T12:20:13Z <p>In OOP terms what is the name of a class that is always a parent, and the class cannot be used on its own, it can only be used if a class inherits from it. </p> <p>I don't need code samples, just the technical OOP term for this class, thanks!</p> http://stackoverflow.com/questions/1494971/how-to-name-variables-that-represent-thresholds-or-limits 0 How to name variables that represent thresholds or limits? Jeff Sternal 2009-09-29T21:10:12Z 2009-10-13T16:33:20Z <p>For example, say we have a ticketing system that can be configured to offer tickets at normal price, but once you're within <code>X</code> hours of the event, you offer them at a different price (it may be discounted or increased). We'll call this the 'rush price'. Moreover, once you're within <code>Y</code> hours of the event, you offer them at yet another price. We'll call this the 'emergency price'.</p> <p>The class that represents this configuration information might look like this:</p> <pre><code>public class RushTicketPolicy { private int rushHours; private int emergencyHours; public RushTicketPolicy(int rushHours, int emergencyHours) { this.rushHours = rushHours; this.emergencyHours = emergencyHours; } public int RushHours { get { return this.rushHours; } } public int EmergencyHours { get { return this.emergencyHours; } } } </code></pre> <p>I'm finding it extremely difficult to come up with names for these variables (and properties) that are sufficiently expressive and complete, without reference to the code that uses them and without additional inference.</p> <p>That is, someone that hasn't seen the rest of the code or know anything about its business requirements should be able to look at the variable names and understand that:</p> <ul> <li>Rush sales start <code>X</code> hours before the event, inclusive.</li> <li>Emergency sales start <code>Y</code> hours before the event, inclusive.</li> </ul> <p>What are some names that would accomplish that?</p> http://stackoverflow.com/questions/1507999/opposite-of-abstractor 1 Opposite of "Abstractor" brianreavis 2009-10-02T06:29:20Z 2009-10-12T11:21:31Z <p>I have a function that takes object instances and reduces them down to an abstract/generic format. Like this:</p> <pre><code>class Dog { id=0, awesome=1 } =&gt; [id:0, type:'dog'] //abstract, generic version class Cat { id=1, awesome=0 } =&gt; [id:1, type:'cat'] class Narwhal { id=42, epic=1 } =&gt; [id:42, type:'narwhal'] </code></pre> <p>I call this an <em>abstractor</em>. "Generalization by reducing the information content."</p> <p>What is the opposite of an "abstactor"? I have a function that does the opposite of abstraction (by using the abstracted version's <code>id</code> and <code>type</code> to pull the other fields, like <code>awesome</code> and <code>epic</code>, from a database). For the life of me, I can't figure out what to name it. </p> <p><hr /></p> <p>My closest guesses are "<strong>instantiator</strong>" and "<strong>composer</strong>", but neither of these seem quite right.</p>