active questions tagged naming-conventions - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T09:14:26Z http://stackoverflow.com/feeds/tag/naming-conventions http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1830172/is-putting-class-name-in-member-routines-redundant 0 Is putting class name in member routines redundant? Random 2009-12-02T01:45:21Z 2009-12-02T01:56:06Z <p>Say you have a class Block...</p> <pre><code>class Block { </code></pre> <p>and it has a function that allows you to show the block on screen. Would you call it...</p> <pre><code>ShowBlock( ... ) </code></pre> <p>or just</p> <pre><code>Show( ... ) </code></pre> <p>This has been irking me, and I'd like to hear others thoughts. On one hand, ShowBlock is completely obvious whenever its used. However, since it will be called from a Block, it may be unnecessary like...</p> <pre><code>m_SomeBlock.ShowBlock( ... ); </code></pre> http://stackoverflow.com/questions/1814016/database-column-naming-question 1 Database column naming question unb 2009-11-28T22:46:45Z 2009-12-01T20:06:20Z <p>Let's suppose there is a table called AIRPORT and I have to choose between two naming conventions: to name attributes like AP_CODE, AP_NAME and so on or to name them just like CODE, NAME</p> <p>The question is whether it is more <em>efficient</em> to follow the first way or to use synonym (i.e. AP) and reference attributes like AP.CODE?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1827858/how-to-mitigate-class-declaration-being-far-from-its-owner-namespace-declaration 1 How to mitigate class declaration being far from its owner namespace declaration in a file? kidnamedlox 2009-12-01T18:05:38Z 2009-12-01T18:40:38Z <p>So, I've seen how useful namespaces can be to organize declarations into their respective groups, but now comes an issue with this.</p> <p>The difference between making a library in C and a library in C++ is in C you must prefix your declarations with what they belong to, for example a library we'll dub MyMath might have a vector class, well the name might be MM_Vector.</p> <p>In C++, you would have a namespace MyMath with a Vector class declared as a part of it.</p> <p>Now the difference here is in C, just by going to the class declaration you immediately know how to use it. In C++, you would have to check which namespace a particular class belongs to (really only a problem in files where the declaration isn't near the namespace declaration, which can be common if there are constants and enumerations declared between the two). While I prefer using a namespace for organization, in my opinion this is still a valid argument as an annoyance.</p> <p>What have people done to reduce this annoyance?</p> http://stackoverflow.com/questions/1790455/whats-the-best-way-to-name-id-classes-in-css-and-html 3 Whats the best way to name id & classes in CSS and HTML Cool Hand Luke UK 2009-11-24T14:34:32Z 2009-12-01T15:51:14Z <p>When naming classes and ids for CSS what is the best method to use. In this case I need there to be some kind of naming convention so that other people can pick up rules and understand how to name their own ids and classes using the same pattern. Any suggestions? Some of the sites we create can get pretty complex but use an overall structure header, content and footer. The naming must be efficient too. </p> <p>Cheers.</p> <p>Ps I am not new to CSS I am aware of giving them names that represent their structure etc. just want to know people opions really and ways of doing this. </p> http://stackoverflow.com/questions/1814069/when-if-ever-should-the-name-of-a-property-contain-the-name-of-the-class 0 When, if ever, should the name of a property contain the name of the class? DanThMan 2009-11-28T23:07:52Z 2009-11-30T19:03:41Z <pre><code>public class Fruit { // choose one public int Id { get; set; } public int FruitId get; set; } // redundant or usefully more descriptive? // choose one public string Name { get; set; } public string FruitName { get; set;} // redundant or usefully more descriptive? public string Fruit { get; set; } // or what about this? } </code></pre> <p>Which is your preferred convention for the fruit's identification number and name? Why? Are there other examples where you would answer differently?</p> http://stackoverflow.com/questions/1820353/is-there-a-well-established-naming-convention-for-php-namespaces 1 Is there a well-established naming convention for PHP namespaces? Ignas R 2009-11-30T15:05:05Z 2009-11-30T19:00:50Z <p>So far, I've seen many different naming conventions used for PHP namespaces. Some people use <code>PascalCase\Just\Like\For\Classes</code>, some use <code>underscored\lower_case\names</code>, some even use the Java convention for package names: <code>com\domain\project\package</code>.<br> The question is very simple -- can any of these (or other) conventions be called well-established? Why? Are any of them recommended by authorities like Zend or the developers of well-known PHP frameworks?</p> http://stackoverflow.com/questions/1750504/prefix-is-in-method-name-for-verification-methods 4 Prefix "Is" in Method Name for Verification Methods Blakewell 2009-11-17T17:36:41Z 2009-11-30T16:16:34Z <p>I've been reading Code Complete lately, based off of many references here and also by a friend, and had a naming question for the community. Should the prefix "Is" be used on boolean methods that determine whether an event was successful? Here is a code example of two different naming schemes I tried:</p> <pre><code>migrationSuccessful = CopyData(); if (VerifyCopyData()) migrationSuccessful = CleanupData(); </code></pre> <p>versus:</p> <pre><code>migrationSuccessful = CopyData(); if (IsDataCopied()) migrationSuccessful = CleanupData(); </code></pre> <p>Notice the difference between VerifyCopyData and IsDataCopied. To me IsDataCopied is more meaningful and makes the code flow in a more descriptive pattern. </p> <p>Thanks for your thoughts! </p> <p>EDIT: Based on some of the comments, I thought I'd clarify what the IsDataCopied method does. It loops through several directories and files and makes sure the source and destination directory/files match. </p> http://stackoverflow.com/questions/1813321/what-should-i-name-a-table-that-maps-two-tables-together 10 What should I name a table that maps two tables together? DanThMan 2009-11-28T18:36:25Z 2009-11-30T16:07:47Z <p><strong>Let's say I have two tables:</strong></p> <pre><code>Table: Color Columns: Id, ColorName, ColorCode Table: Shape Columns: Id, ShapeName, VertexList </code></pre> <p><strong>What should I call the table that maps color to shape?</strong></p> <pre><code>Table: ??? Columns: ColorId, ShapeId </code></pre> http://stackoverflow.com/questions/1818715/conventions-c-class-names-and-namespace 0 (Conventions) C# Class names and namespace [closed] Ybbest 2009-11-30T09:19:07Z 2009-11-30T09:27:42Z <p>I realise that there are related post on this topic <a href="http://stackoverflow.com/questions/1760449/conventions-c-class-names,however">http://stackoverflow.com/questions/1760449/conventions-c-class-names,however</a> I have a quite long discussion with one of my co-workers today about the naming convention. He named every CRM services or Sharepoint services for customers as CompanyName.CRM.Services.Customer and CompanyName.SharePoint.Services.Customer and have a separate Customer Class in another name space to store customer information.(CompanyName.Domain.Customer).</p> <p>I feel like this causes confusion,because in the same project more than 2 classes named customer but they used for different purposes.CompanyName.CRM.Services.Customer is used as service class ,whereas CompanyName.Domain.Customer used as domain object whereas you will find the customer name and Id inside this class.I think he services class should be named as CompanyName.CRM.Services.CustomerServices or CompanyName.CRM.Services.CRMCustomerServices. Although,it seems repeat what the namespace does ,but it is clear a service class is service class whereas a domain class is a domain class.</p> <p>However,my co-worker does not seem like this idea and argue that with the name spaces you do not need put Services suffix as it is compound name.He also said that to reduce confusion whenever you create a domain customer , you should use Customer customer = new Customer() and whenever you create a service for customer you should use a qualified name,e.g. SharePoint.Services.Customer customer = new SharePoint.Services.Customer();(assume we impost Company name namespace). But I still feel it is wrong to do so ,am I too stubborn or it is actual confusing?Your idea is much appreciated.</p> http://stackoverflow.com/questions/1814963/db-tables-naming-conventions 0 DB Tables naming conventions Avi Y 2009-11-29T08:03:00Z 2009-11-29T08:33:22Z <p>Hello, I am trying to find out what are the popular naming conventions for DB tables.</p> <p>Therefor I have 2 questions:</p> <p>Lets say you have a table with persons in it. Each row is a person. How would you call the table - 'PERSONS' or 'PERSON'?</p> <p>Now lets say there is another table named 'PERMISSIONS' and you are creating a new table which is mapping between persons to permissions. How would you call this table, 'PERSON_TO_PERMISSION', 'PERSON_PERMISSION_MAP' or anything else?</p> <p>I know there isn't a definite rule here but I am just curious on what is popular.</p> http://stackoverflow.com/questions/1814772/c-header-file-convention 1 C++ header file convention tipu 2009-11-29T05:45:46Z 2009-11-29T07:03:11Z <p>I am working on a small game using C++, and I used Eclipse CDT's class generator. It created a .h file with the class definitions and a .cpp file that included body-less methods for said class. </p> <p>So if I followed the template, I'd have a .cpp file filled with the methods declarations, and a .cpp file with method bodies. However, I can't include a .cpp file within another. </p> <p>So what is the convention in C++ with classes and include files? What I did was fill in the method bodies right under the class declaration in the .h file, and deleted the .cpp file. </p> http://stackoverflow.com/questions/1811365/does-this-match-any-known-design-pattern 1 Does this match any known design pattern? Andy West 2009-11-28T02:40:44Z 2009-11-28T05:46:32Z <p>I'm working on a simple, internal ASP.NET app for a small company. I've designed the data access layer so it's database-agnostic.</p> <p>I have the following:</p> <ul> <li><strong>IDataHelper</strong> - An interface requiring methods such as FillDataTable(), ExecuteNonQuery(), etc.</li> <li><strong>MySqlHelper</strong> - Implements IDataHelper for MySQL, the only database I support so far.</li> <li><strong>Static data access classes</strong> - Encapsulate data access methods for different parts of the app. They call methods on an IDataHelper to execute queries.</li> </ul> <p>And finally, I have a static class that creates an IDataHelper for the data access classes to call. In the future it will create the appropriate helper based on the database specified in the config file. For now it's just hard-coded to create a MySqlHelper:</p> <pre><code>public static class DataHelperContainer { private static IDataHelper dataHelper; public static IDataHelper DataHelper { get { return dataHelper; } } static DataHelperContainer() { string connectionString = ConfigurationManager .ConnectionStrings["myapp"].ConnectionString; // Support for other databases will be added later. dataHelper = new MySqlHelper(connectionString); } } </code></pre> <p>My questions are:</p> <ol> <li>What should I name this? "DataHelperContainer" doesn't seem right, since that implies some kind of list.</li> <li>Is this a good or bad design? If it's bad, what are its faults?</li> <li>Is this similar to any known design pattern? Can it be refactored to conform to one? It seems remotely like a factory, but I'm not sure.</li> </ol> <p>Sorry about the long post and multiple questions. :)</p> <p>Thanks!</p> http://stackoverflow.com/questions/1810991/recommendations-for-naming-c-classes-methods-intended-to-replace-existing-apis 3 Recommendations for naming C# classes/methods intended to replace existing APIs. Blackened 2009-11-27T23:29:26Z 2009-11-28T00:43:19Z <p>Long explanation aside, I have a situation where I need to basically re-implement a .NET framework class in order to extend the behavior in a manner that is not compatible with an inheritance or composition/delegation strategy. The question is not a matter of whether the course of action I am to take is what you would do, or recommend, it is instead a question of naming/coding-style.</p> <p>Is there a paradigm for naming classes and methods that have the same functionality as an existing class or method ala the convention of ClassEx/MethodEx that exists in C++?</p> <p>[edit] I understand that choosing good names for this is important... I haven't written a line of code yet, and am instead taking the time to think through the ramifications of what I am about to undertake, and that includes searching for a clear, descriptive, name while trying to be concise. The issue is that the name I have in mind is not terribly concise. [/edit]</p> http://stackoverflow.com/questions/1264427/custom-naming-conventions-in-fluent-nhibernate-automapping 1 Custom naming conventions in Fluent NHibernate AutoMapping Icey 2009-08-12T05:58:47Z 2009-11-26T23:45:05Z <p>Hello,</p> <p>according to this <a href="http://geekswithblogs.net/leesblog/archive/2008/09/02/overriding-the-default-conventions-in-fluent-nhibernate.aspx" rel="nofollow">Post</a> it is possible to change the naming convention from "[TableName]_id" to "[TableName]ID". However when I saw the code, I wasn't able to do it with my rather new (about 6 weeks old) version of Fluent NHibernate.</p> <p>Original code:</p> <pre><code>var cfg = new Configuration().Configure(); var persistenceModel = new PersistenceModel(); persistenceModel.addMappingsFromAssembly(Assembly.Load("Examinetics.NHibernate.Data")); persistenceModel.Conventions.GetForeignKeyNameOfParent = type =&gt; type.Name + "ID"; persistenceModel.Configure(cfg); factory = cfg.BuildSessionFactory(); </code></pre> <p>I came up with this:</p> <pre><code>PersistenceModel model = new PersistenceModel(); model.AddMappingsFromAssembly(assemblyType.Assembly); model.ConventionFinder.Add( ConventionBuilder.Reference.Always(part =&gt; part.ColumnName(part.EntityType.Name + part.Property.Name))); configuration.ExposeConfiguration(model.Configure); return configuration.BuildConfiguration(); </code></pre> <p>but this gives me the original Table, because EntityType is not the referenced Entity and I see no property to get the "parent" entity. </p> <p>How can I do this?</p> http://stackoverflow.com/questions/96297/naming-conventions-for-unit-tests 10 Naming Conventions for Unit Tests stung 2008-09-18T19:59:56Z 2009-11-26T21:16:44Z <p><strong>What are some popular naming conventions for Unit Tests?</strong> </p> <h2>General</h2> <ul> <li>Follow the same standards for all tests.</li> <li>Be clear about what each test state is.</li> <li>Be specific about the expected behavior.</li> </ul> <h2>Examples</h2> <p>1) MethodName_StateUnderTest_ExpectedBehavior</p> <pre><code>Public void Sum_NegativeNumberAs1stParam_ExceptionThrown() Public void Sum_NegativeNumberAs2ndParam_ExceptionThrown () Public void Sum_simpleValues_Calculated () </code></pre> <p>source: <a href="http://weblogs.asp.net/rosherove/archive/2005/04/03/TestNamingStandards.aspx" rel="nofollow">http://weblogs.asp.net/rosherove/archive/2005/04/03/TestNamingStandards.aspx</a></p> <p>2) Separating Each Word By Underscore</p> <pre><code>Public void Sum_Negative_Number_As_1st_Param_Exception_Thrown() Public void Sum_Negative_Number_As_2nd_Param_Exception_Thrown () Public void Sum_Simple_Values_Calculated () </code></pre> <h2>Other</h2> <ul> <li>End method names with <em>Test</em></li> <li>Start method names with class name</li> </ul> http://stackoverflow.com/questions/1803744/should-a-class-have-the-same-name-as-the-namespace 0 Should a class have the same name as the namespace? Peter Bridger 2009-11-26T13:44:35Z 2009-11-26T14:21:04Z <p>I'm designing a namespace to hold a set of classes that will handle <strong>user</strong> related tasks for a several different applications. <em>(Log-in, authenticate etc)</em></p> <p>The problem is the namespace will be called <code>Fusion.User</code> but then it requires a class in that namespace that makes sense to call <code>User</code>.</p> <p>Should you have a class with the same name as the namespace? Or am I taking the wrong approach here?</p> http://stackoverflow.com/questions/338156/table-naming-dilemma-singular-vs-plural-names 21 Table Naming Dilemma: Singular vs. Plural Names ProfK 2008-12-03T18:09:30Z 2009-11-25T21:23:00Z <p>Convention has it that table names should be the singular of the entity that they store attributes of. </p> <p>I dislike any T-SQL that requires square brackets around names, but I have renamed a <code>Users</code> table to the singular, forever sentencing those using the table to sometimes have to use brackets. </p> <p>My gut feel is that it is more correct to stay with the singular, but my gut feel is also that brackets indicate undesirables like column names with spaces in them etc.</p> <p>Should I stay, or should I go?</p> http://stackoverflow.com/questions/1796114/what-is-the-current-scheme-for-naming-variables-and-functions 1 What is the current scheme for naming variables and functions? Marc Laza 2009-11-25T10:48:01Z 2009-11-25T11:25:29Z <p>Is there a standard way to name them or is it programmer's call?</p> <p>Thank you.</p> http://stackoverflow.com/questions/1790496/naming-convention-for-shell-script-and-makefile 2 naming convention for shell script and makefile ccfenix 2009-11-24T14:41:32Z 2009-11-25T05:35:21Z <p>hi, yet another newbie question</p> <p>i have a few makefiles that store shared variables, such as CC=gcc , how should i name them ? candidates are common.mk Make.common Makefile.common</p> <p>which is more classic?</p> <p>similarly, i have some shell scripts, which should i choose among the following: do_this_please.sh do-this-please.sh DoThisPlease.sh doThisPlease.sh</p> <p>can anyone give me some advices?</p> http://stackoverflow.com/questions/309206/why-are-generics-called-generics 7 Why are generics called generics? Jonathan S. 2008-11-21T15:58:04Z 2009-11-24T23:26:43Z <p>At the risk of becoming the village idiot, can someone explain to me why generics are called generics? I understand their usage and benefits, but if the <a href="http://dictionary.reference.com/browse/generic" rel="nofollow">definition of generic</a> is "general" and generic collections are type safe, then why isn't this a misnomer?</p> <p>For example, an ArrayList can hold anything that's an object:</p> <pre><code>ArrayList myObjects = new ArrayList(); myObjects.Add("one"); myObjects.Add(1); </code></pre> <p>while a generic collection of type string can only hold strings:</p> <pre><code>var myStrings = new List&lt;string&gt;(); myStrings.Add("one"); myStrings.Add("1"); </code></pre> <p>I'm just not clear on why it's called "generic". If the answer is "...which make it possible to design classes and methods that defer the specification of one or more types until the class or method is declared and instantiated by client code." from <a href="http://msdn.microsoft.com/en-us/library/512aeb7t(VS.80).aspx" rel="nofollow">here</a>, then I suppose that makes sense. Perhaps I'm having this mental lapse because I only began programming after Java introduced generics, so I don't recall a time before them. But still...</p> <p>Any help is appreciated.</p> http://stackoverflow.com/questions/1792779/safe-to-have-page-resources-without-file-extensions 0 Safe to have page resources without file extensions? Pekka Gaiser 2009-11-24T20:38:54Z 2009-11-24T21:07:12Z <p>I need to decide on naming conventions for a new website. I can use mod_rewrite at will.</p> <p>My favourite solution would be to work with no file extension at all.</p> <pre><code>www.exampledomain.com/language/pagename </code></pre> <p>this would lead to "pagename" being treated as a directory. I would have to take that into account when using relative links.</p> <p><strong>Are there any other pitfalls I need to be aware of when doing this?</strong></p> <p>Is this legal, or are resources supposed to have a "name.prefix" structure?</p> <p>Do you know of any clients that can't deal with this and start looking for /index.htm or .html?</p> <p>Can you think of any SEO problems to be expected? </p> http://stackoverflow.com/questions/854362/enforce-file-naming-convention-on-windows-share 0 Enforce File Naming Convention on Windows Share? Aaron Seaton 2009-05-12T19:13:04Z 2009-11-24T14:01:19Z <p>Hi Everyone,</p> <p>Simple question, but I can't seem to find the answer anywhere. Is there a way in Windows, or via a third-party utility, to enforce file naming conventions within a Windows network share?</p> <p>I'm sure this is easy in Sharepoint, but I want to be able to limit users to the file name format they save into a folder. I could create a post-save program to go and look for exceptions after the fact, but I want to try and force the user to name the files according to our standards when they save.</p> <p>If something is not available/configurable on the server-side, could this be accomplished via VBA in Excel or Word in the save-file dialogue?</p> <p>Thanks for your help.</p> <p>A</p> http://stackoverflow.com/questions/1785416/c-naming-readinput-vs-readinput 0 C++ naming: read_input() vs. readInput() ajay 2009-11-23T19:30:02Z 2009-11-23T20:23:52Z <p>Hi,</p> <p>Which naming convention is more preferable in C++? The `underscore' method or the camelCase method? I have coded in Java for a while and I am used to the camelCase naming conventions. Which one is more prevalent?</p> <p>Also, while defining a class, is there any preferred ordering of private/public/protected variables/methods?<br> Are friends usually put in the end?<br> What about typedefs, do they come at the top of the class definition? </p> <p>Thanks, Ajay G.</p> http://stackoverflow.com/questions/1780815/how-do-you-like-your-naming-conventions -1 How do you like your naming conventions? acidzombie24 2009-11-23T02:26:45Z 2009-11-23T03:08:19Z <p>I looked at <a href="http://msdn.microsoft.com/en-us/library/xzf533w0%28VS.71%29.aspx" rel="nofollow">MSDN .NET Naming Guidelines</a> about 2 years ago and i remember not liking certain things. Now that i used .NET more i cant remember what they were nor have complaints now.</p> <p>I know ruby people have a different naming conventions and some people like_underscores while others hate it. I see the C++ standard library and boost use underscores while many C++ programmers use camelcase.</p> <p>Does anyone have an argument on when to use underscores and when not too? One said in php all global functions should_have_underscores while methodsShouldUseCamel.</p> <p>What do you enjoy or dislike in the naming conventions you have used? and why?</p> http://stackoverflow.com/questions/1779814/whats-the-best-possible-name-for-a-backup-server-in-a-development-environment 0 What's the best possible name for a backup server in a development environment? [closed] Pablo 2009-11-22T20:08:05Z 2009-11-22T20:23:14Z <p>Hi, I run an office network and we have many servers. We try to give them nice server names regarding their functions, avoiding stupid names like 'dev01' or stuff like that. For testing our server is named 'pandora'. For development (where all stupid things happens) is named 'homer'. The question is, what's the best possible name for a backup server?</p> <p>Thanks you all!</p> <p>ps: I post this question at stackoverflow as I consider server-naming part of development practices... sorry if considered dumb admin thing...</p> http://stackoverflow.com/questions/1764290/should-i-keep-the-package-name-when-extending-a-class 0 Should I keep the package name when extending a class? Zombies 2009-11-19T15:52:21Z 2009-11-21T10:25:38Z <p>I plan to extend a JSF renderer. The package name is oracle.adfinternal.view.faces.renderkit.rich</p> <p>Should the extended class be in the same package structure: oracle.adfinternal.view.faces.renderkit.rich or even oracle.adfinternal.view.faces.renderkit.rich.[subpackage]</p> <p>or can/should I put it into my own package? com.company.renderkits.</p> <p>I suppose package-private variables might be interfered with if I put this into my own package name?</p> <p>Any thoughts?</p> http://stackoverflow.com/questions/1764483/sql-join-table-naming-convention 3 SQL Join Table Naming Convention Josh Close 2009-11-19T16:14:10Z 2009-11-19T18:01:19Z <p>I have 2 tables: Users and Roles, and I have a table that joins these together. The only thing in the join table is Ids that link the 2 tables.</p> <p>What should I call this table? I've never really seen a good naming convention for this.</p> <p>Conventions I've seen before:</p> <ul> <li>UsersToRolesJoin</li> <li>UsersToRolesLink</li> <li>UsersToRolesMembership</li> <li>UsersRoles</li> </ul> <p>Ex:</p> <pre><code>Users: Id Name Roles: Id Name TableThatJoinsTheTwo: Id UserId RoleId </code></pre> http://stackoverflow.com/questions/1752668/why-does-cakephp-use-different-plural-singular-naming-conventions 1 Why does CakePHP use different plural/singular naming conventions? Simon 2009-11-17T23:40:16Z 2009-11-19T13:40:52Z <p>Can somebody perhaps explain here why on earth CakePHP has a convention of using plural names for db tables and controllers and singular for models? Why not always use singular terms, or always plural? For me it seems confusing to always have to think "now do I use plural or singular here?" (Or is there an easy way to remember??) And then you have the join-tables that use a combination of both!</p> <p>I assume there's a good reason somewhere, but just have not come across it. <br><i>(I really hope it's not just because Ruby-on-Rails works that way.)</i></p> <p><strong>Simon.</strong></p> http://stackoverflow.com/questions/1760449/conventions-c-class-names 1 (Conventions) C# Class names AJ Ravindiran 2009-11-19T02:03:13Z 2009-11-19T05:05:04Z <p>Hello,</p> <p>I'm not too quite sure about what i should do about a grouped set of classes. </p> <p>My situation: I have 11 classes that relate only to the class <code>Character.cs</code>, but all of those classes (including <code>Character.cs</code> and <code>CharacterManager.cs</code>) are within the namespace <code>Models.Characters</code>. </p> <p>Which is the more "proper" or preferred way of naming the classes:</p> <p>(examples): </p> <p><code>CharacterDetails.cs</code> <code>CharacterSprites</code> <code>CharacterAppearance</code> <code>CharacterClientRights</code> <code>CharacterServerRights</code></p> <p>or:</p> <p><code>Details.cs</code> <code>Sprites</code> <code>Appearance</code> <code>ClientRights</code> <code>ServerRights</code></p> <p>(They're all noticed in <code>Models.Characters</code> (so eg. <code>Models.Characters.CharacterDetails</code>, <code>Models.Characters.Appearance</code>)</p> <p>Thanks in advanced.</p> http://stackoverflow.com/questions/1757375/ftp-in-out-folder-name-best-practices 0 FTP In/Out Folder Name Best Practices Jerad Rose 2009-11-18T16:46:14Z 2009-11-18T23:37:09Z <p>What best practices (if any) do you adhere to regarding setting up outgoing and incoming folders for your FTP clients? We typically use "outgoing" and "incoming", but no matter how you phrase the direction, it can be interpreted in two ways, depending on which end the names are relative to. </p> <p>For example, an "incoming" folder on my end can be meant for files the client sends to me, hence incoming for me. But it can also be meant for files I send to the client, incoming to them. Typically, these always are relative to the party's side on which the files reside. But no matter how clear it should be, it always seems to cause confusion for some parties (maybe because they've historically always made their names relative to their clients).</p> <p>And no matter what options I come up with, they can always be interpreted differently. Some examples:</p> <ul> <li>incoming/outgoing </li> <li>send/receive </li> <li>upload/download </li> <li>to/from</li> </ul> <p>Thoughts?</p>