The convention tag has no wiki summary.
-8
votes
3answers
230 views
Why Haskell's `fst` and `snd` have such a short (strange) names? [closed]
I'm new to Haskell and what really bothers me at the moment is why the people who made the libraries added functions called fst and snd instead of using (normal) names like first and second. What's ...
0
votes
1answer
35 views
Finding where a method is called for a convention test
I'm trying to write a convention test that specifies that a method should only be called in some contexts - specifically I have a static Empty getter that I only want to allow used in test methods, ...
0
votes
0answers
17 views
Caliburn.Micro's AddCustomConventions() function
I have some confuse in CM's custom convention.
One of CM official samples show us, we can add convention in AddCustomConventions() method like this:
...
0
votes
0answers
12 views
Convention and namespace for non-entity classes
I'm working with the MVC design pattern and entity frameworks in a project. In some cases when I want to return certain columns of the table, I do it through classes that I generated. The problem is ...
0
votes
1answer
21 views
Are there accepted names for the two types of arrays in a multidimensional array?
Sorry if this question is a bit elementary, but I was wondering if there are names for the different arrays in a 2D array. For example, in:
int[][] array = new int[5][10];
What do I call the array ...
0
votes
0answers
68 views
Modification for php/ajax instant search to follow Google convention
I am a beginner using javascript and ajax. A similar question was posed on this site for a different search but I cannot figure out how to modify that answer to use here.
I use an ajax/php instant ...
0
votes
1answer
179 views
Change URL mapping in Struts2 with convention plug-in
I'm currently learning struts2 annotation with convention plug-in. Everything went okay except URL mapping. I want to access to action with URL like: http://{my domain name}/{action name}.
But after ...
0
votes
2answers
26 views
What is the best practise to use with default drawables?
Having a specialized folder for default drawable ("drawable" with no screen size extension) would be more intuitive and self explanatory, making it easier to locate files. But will it cause logical ...
0
votes
0answers
92 views
Organizing files, folders and namespaces in .NET DLL project
I am using C# to create a DLL library that will be used by other applications as an external reference. We all know that namespaces should match folder structure when organizing .NET projects and I am ...
0
votes
2answers
63 views
Folder Name Convention Java [closed]
What do you call a folder where you save information (Games saves, highscores, etc). Its just a naming conventioon question. By default you have src and for resources you can make a fodler called res ...
1
vote
1answer
86 views
How to read the Intel Opcode notation
I am reading some material about Intel Opcodes of assembly instructions, but I cannot understand what does it mean that follows the opcode byte. For esxample: "cw", "cd", "/2", "cp", "/3".
Please give ...
0
votes
1answer
111 views
Best practices or convention for sql table naming? [closed]
I read a lot of good cases where some people says that it's better to use Singular names on tables, for example if you are going to use some code generators like Entity Framework or another CG.
I ...
1
vote
1answer
104 views
Naming convention between namespaces and classes in C++? [closed]
Creating a library named "snap", I want a class named "log" which I put in a sub-namespace. Is it okay if the namespace is also "log"? (I know that it technically works, I'm wondering about proper ...
4
votes
6answers
98 views
What is the Java convention for using get methods inside other methods of the same class?
After I have written a get method in a java class, is it better to use the get method in the same class or the variable itself?
For example:
if(a.getWidth()>this.getWidth())
or:
...
0
votes
1answer
30 views
Pattern name/Convention -> Class that merge different attributes from other classes
I wanted to know if there is a known pattern or convention for the following scenario:
I have two classes: MAT (name:String, address:String) & MATversion(type:String, version:int)
Now I have a ...
0
votes
1answer
85 views
mongodb c# serialization of only changed members
I am new to mongodb and want to serialize my object efficiently. That means when updating an object i want only to write the fields that changed. If my object has sub objects in a list, i only want to ...
1
vote
3answers
60 views
Sequential directories creation in Python
I'm trying to find how to create sequential directories with specific padding. For a given number it should create directories:
def createDirectories(number=10, name='seq'):
for i in range(1, ...
4
votes
0answers
125 views
programming style conventions: [+], [-], [*], [!] [closed]
I couldn't find an answer through google search because apparently google won't allow searches for punctuation.
When reporting stdout of a program (I'm using Python), does anyone have any style ...
1
vote
3answers
414 views
Struts2 2.3.8 with convention plugin 2.3.8 doesnt work with hibernate 3.2.5(netbeans fw plugin)
I would like to use Struts2 convention plugin(2.3.8) together
with hibernate(netbeans framework plugin 3.2.5),
but there is conflict before two different
asm.jar versions.
Hibernate works fine ...
0
votes
0answers
181 views
Issues when deploying Struts 2.3 application with convention plugin on WebLogic 11g (There is no Action mapped for namespace / and action name xxxxxx)
If I deploy the application into Jetty there is no problem, the actions map fine, but the problem comes when I deploy the application to WebLogic. I get:
There is no Action mapped for namespace / and ...
0
votes
1answer
114 views
Triangle rasterization troubles
I'm trying to write a couple of functions to draw (filled) flat-top and flat-bottom triangles. For the large part they work however cracks are still sometimes seen between adjacent triangles which ...
1
vote
1answer
64 views
application_controller.rb or new?
I'm new to Ruby on Rails, learning it to create a new SaaS I'm working on. Whilst I'm able to write some RoR, I don't know the majority of conventions for the language.
My question is, for the front ...
0
votes
1answer
85 views
JavaScript Constructor Function Instantiated Object Prefix Convention
In JavaScript, is there a naming convention for objects instantiated from constructor functions?
For example, if I had a constructor function set up like so:
function Dance(style, timing) {
...
1
vote
2answers
173 views
Rails controller naming convention postsComments or postComments
If I'd like to generate a controller for comments that belongs to a post which in turn belongs to a user, should I name this
rails g controller postsComments
Or
rails g controller postComments
Or
...
1
vote
2answers
44 views
Where does the #method notation that I'm seeing around more and more originate from?
I'm referrering especially to places in Javascript circles, where people will use the following notation to refer to, say, a foo method: #foo. Does it derive from some other language, or did it just ...
0
votes
0answers
38 views
What is the proper convention for creating a multiple scene application in JavaFX with Nebeans/Scenebuilder?
Ok guys, I've been at this for weeks trying to figure it out on my own because it's such a newb and open ended question, but I'm breaking down and need some help from some of the brilliance here. I'm ...
0
votes
3answers
174 views
PHP OOP coding conventions [closed]
I'm brand new at OOP PHP and i would like to get as many of the coding conventions right as fast as possible. I made this tiny guestbook script, and i would like to know if there's anything not done ...
0
votes
1answer
24 views
What is the convention for where to place certain types of certs?
I am trying to understand how to properly programatically install CA, server and client SSL certificates on windows. I have been unable to discover any over-arching scheme or convention to use when ...
1
vote
1answer
35 views
The `#=>` convention for expected returns
It is a Ruby convention to use #=> for describing expected returns. I realized that I use # => (with some space or tabs) myself. This is just a convention, and there is no formal specification, ...
0
votes
1answer
54 views
Table naming conventions for ref tables vs storage tables
By ref table im referring to a kind of entity 'type' table
and by storage table im referring to a table that stores a lot of changing information.
For example:
I have a 'user' table named as such, ...
2
votes
1answer
122 views
how important is parameter order when calling powershell cmdlets?
in Powershell, is it important to use cmdlet parameters in the order in which they're defined in the official syntax?
I'm adding the -cc parameter to send-mailMessage in an existing script. I added ...
0
votes
1answer
325 views
Best practice for naming tables and field (Naming Conventions) [closed]
What is best practice for naming dbs, tables (collections) and fields among DBMSs?
I mean casing style, for example AaaBaa,aaa-bbb, aaa_bbb, AAA-BBB, aaaBbb, ...
I think if one exists it should be ...
0
votes
1answer
47 views
Proper way to arrange the jquery event binding in large applications
While working in highly interactive and animated client side web applications, we highly rely on jQuery libraries and use their events heavily.
In large enterprise applications, this results in a ...
0
votes
1answer
63 views
Events convention
I'm making an XNA game and I have a question about the convention for events.
I made a menu which has buttons, those buttons have 3 events naimly: onClick, onMouseEnter and onMouseLeave.
Atm my code ...
1
vote
1answer
91 views
Overwriting bool property convention in fluent NHHibernate
I am experimenting with the automap feature of Fluent Nhibernate..
I saw an example which had a default string convention as follows:
namespace Vuscode.Framework.NHibernate.Conventions
{
using ...
2
votes
3answers
266 views
MVC design convention: CRUDing inherited models [closed]
Here's my database structure:
In my app I have a company management of customers, employees and branches.
Customers and Employees are associated with one Person, one Individual and one User.
...
0
votes
1answer
485 views
using annotations with struts 2 in jboss not finding actions
The application is using Jboss and has an ear file which contains an war file and a jar file. The war contians all our web pages. The action classes which I have annotated are in the jar file that ...
3
votes
1answer
66 views
A good way to know path to resources in a paths/installation/build independant way
In my GNU/Linux environment, my software would have all of its graphical resources installed under /usr/share/pixmaps. In Wintendo everything would go into C:\Program files\myappname. In a different ...
5
votes
1answer
138 views
What is the assignment operator <- called when you say it out loud? [closed]
How do you pronounce this "left arrow" combination of less than and dash? You can use it for assignment in R instead of =, and I want to know how to say (for example) "Use <- instead of equals".
0
votes
1answer
189 views
Where to put the memcache in a ZF project?
I am trying to adopt memcached in my project which is built under ZendFrame.
Firstly I create a Memcached class in the library(it seems a bit unecessary as it pretty much just encapsulates the ...
0
votes
1answer
128 views
are validation annotations deprecated in strut2?
I read from here
https://cwiki.apache.org/WW/annotations.html
that Annotation are deprecated and changed by Conventions plugin.
I noted that documentation that Convention plugin still use ...
1
vote
2answers
78 views
Which namespace convention to use in C++? [duplicate]
Possible Duplicate:
Using std Namespace
Why is 'using namespace std;' considered a bad practice in C++?
std::cout << "Print Something!" << std::endl;
vs
using ...
2
votes
4answers
73 views
Which variable name is proper?
I want to make a variable that is condiments that the customer wants.
I thought 'condimentCustomerWants' is okay
But I would never see variable name that contains relative pronouns in other's codes.
...
0
votes
1answer
59 views
What's the meaning of return by reference C array?
I used -[NSDictionary getObjects:andKeys:] method first time, and I discovered there's no policy on description should I free the memory or not. I think * Returns by reference C arrays* means it's ...
0
votes
1answer
51 views
Rails - Where to store a sql file with data that goes into the DB
I have used the seed file to generate data that needs to go into the DB, but now I need to generate some countries, provinces and cities into three different tables and I haven't been able to find a ...
0
votes
3answers
146 views
Why are constants in C-header files of libraries always defined as hexadecimal?
No matter which C-compatible library I use, when I look at the header defined constants, they are always defined as hexadecimal values. Here, for instance, in GL/gl.h:
#define GL_POINTS ...
1
vote
1answer
257 views
Why do 3 digit hex css colors convert to 6 the way they do?
I'm aware that the method to convert a 3 digit hex css color to 6 digit code is by duplicating each hex digit once, as below.
#ABC === #AABBCC
Why does it work this way? Why isn't #ABC equivalent ...
0
votes
1answer
49 views
What's the actual meaning of the struts.convention.action.mapAllMatches in the struts2 convention plugin
What's the actual meaning of the
struts.convention.action.mapAllMatches
in the struts2 convention plugin
2
votes
1answer
127 views
Javabean convention - method naming for property gId
If I have a property 'gId' in my Java class what should the accessor method be named as?
getGId is what I assume.
If there were a property gURL I think it would be getGURL, which kind of looks ugly ...
2
votes
1answer
219 views
Adding a custom binding to ToolTip
I am trying to get my head around how the ConventionManager works but I can't seem to figure out how to add a convention to allow for a custom property to be bound.
What I am trying to achieve is ...






