1
vote
2answers
134 views
Writing expressions: Infix, Postfix and Prefix
Greetings,
My task is to write an app(unfortunatly on C) which reads expression in infix notation(with variables, unary and binary operators) and store it in memory, then evaluate …
1
vote
2answers
69 views
Easier way to prevent numbers from showing in exponent notation
I'm going to rely on the saying that no question is a dumb question, but I have a slightly dumb one to ask.
EDIT:
Seems that this question has been asked and answered a few times …
1
vote
6answers
78 views
Proper notation using doubles
It is more stylistically acceptable in java to write constants in double operations with or without ".0" ?
As in,
double var= 200.0;
double d= var/250.0;
double h= 1.0 - d;
vs.
…
0
votes
1answer
60 views
Differences between [in, out] and [out, retval] in COM IDL definitions
In some of the IDL I work with I have noticed that there are 2 conventions for marking return values in methods - [in, out] and [out, retval].
It appears that [in, out] is used wh …
2
votes
6answers
240 views
Python Notation?
I've just started using Python and I was thinking about which notation I should use. I've read the PEP 8 guide about notation for Python and I agree with most stuff there except fu …
0
votes
1answer
34 views
Entity Relation notation in text
Is there a standard (non-graphical) notation for Entity Relationships?
right now I'm using my own janky notation:
User >> Photo , (1-many)
User > Profile , (1-1 hasOne)
Profile …
0
votes
4answers
168 views
Complex number notation
My DotNET application has a limited scripting language build in (modelled loosely on VBScript) mainly for post-processing numbers, points and vectors. I've just added support for c …
13
votes
8answers
530 views
Historic reason for using periods in version numbers?
Is there a historic reason that periods are used instead of any other separator for software versions?
One of our products was previously version 3.5, and now it's 3.08 -- I'm sur …
1
vote
2answers
68 views
Good WYSIWYG Math Expression Builder or WYSIWYG Plug in?
Anyone know of a good Math Expression builder for an online WYSIWIG. Ideally the user would be able to easily create common math symbols/notations like summation, integrals, radica …
0
votes
8answers
179 views
What kind of notation is this?
I've a string which looks like this:
[{text:"key 1",value:"value 1"},{text:"key 2",value:"value 2"},{text:"key 3",value:"value 3"}]
I'm not sure what kind of notation this is, A …
0
votes
1answer
103 views
Pack Notation in WPF
Hello, I have a question about pack notation.
I'm trying to access a png image file within a XAML page from another resource assembly.
Let's say the Resource Assembly (which is o …
3
votes
6answers
208 views
Why can’t I write @F[1..-1] to get elements 1..last?
In Perl, the array index -1 means the last element:
@F=(1,2,3);
print $F[-1]; # result: 3
You can also use the $# notation instead, here $#F:
@F=(1,2,3);
print $F[$#F]; # resul …
4
votes
4answers
246 views
Mathematical notation in algorithms
I am currently reading the Algorithm Design Manual, but my mathematical notation has become a little rusty.
What does
mean?
2
votes
2answers
397 views
Anyone have an ERD symbols quick reference?
I'm looking for a one-page quick-reference or cheatsheet (preferably in PDF) to the meanings of the various ERD symbols in Crowsfoot/Martin notation.
I've done a lot of googling, …
-1
votes
1answer
96 views
Good Naming Convention for Anonymous Types
An anonymous type can be thought of as a "Set Once" Object type, whereas an plain old Object or Variant can be set many times. An object or variant tends to be short lived, while a …
