The notation tag has no wiki summary.
1
vote
1answer
87 views
How to create a feature map?
I have a big side project that I do now for 3 years. It has a lot of extra small tools to help me do tasks. Most of those tools are so old that I forgot what I have there.
How to create a feature map ...
10
votes
7answers
1k views
Big Oh notation does not mention constant value
I am a programmer and have just started reading Algorithms. I am not completely convinced with the notations namely Bog Oh, Big Omega and Big Theta. The reason is by definition of Big Oh, it states ...
9
votes
6answers
442 views
How do you name your GUI controls?
It's a generally considered a bad practice to use the Hungarian notation, but is common to find GUI controls named userNameTextBox and userNameLabel.
Do you put the control type in it's name? Isn't ...
3
votes
1answer
254 views
What's a good notation for showing MVC interactions?
I'm developing various websites and functionality to cater to various different use-cases up in Django.
Is there a good notation for showing what behaviour is at each stage, e.g., swimlanes.
I use ...
5
votes
1answer
241 views
Notation used in 'Pearls of Functional Algorithm Design'
I just purchased the book 'Pearls of Functional Algorithm Design' by Richard Bird. Unfortunately, the book doesn't have any section that describes the notation that is used.
You can view the ...
12
votes
7answers
2k views
What is O in Big O?
What is Big and O in Big O notation? I've read the definitions and it doesn't tell what is O pronounced as 'oh'. For example - I understand that O(n) is complexity of a linear algorithm where n could ...
16
votes
2answers
1k views
Why is Big O taught instead of Big Theta?
Big O notation provides an upper bound to a function whereas Big Theta provides a tight bound. However I find that Big O notation is typically (and informally) taught and used when they really mean ...
6
votes
5answers
471 views
Wrapping my mind around prefix notation?
I'm reading about LISP.
I understand how prefix notation works at a certain level, but I was wondering if there are any tricks to making it intuitive.
2
votes
1answer
116 views
Choosing a process modeling notation
It is questionable whether this question really belongs here, but, in any case, it does not fit in Stack Overflow or any other Stack Exchange site. So here I go.
The purpose
My current pet project ...
3
votes
3answers
406 views
Hungarian Notations/Systems Hungarian Should I?
I was wondering would it be worth using a form of standard such as Hungarian Notation/Systems Hungarian?
Why would I bother if everything I'm doing now is working fine?
28
votes
13answers
2k views
Do you prefix variable names with an abbreviation of the variable types? (Hungarian Notation)
In my current job, there are no coding guidelines. Everyone pretty much codes the way he wants. Which is fine, since the company is small.
However, one new guy recently proposed to always use ...
3
votes
8answers
1k views
Infix vs Prefix Notation - Which do you prefer?
I have been learning Clojure and looking at Scheme and CL which introduced me to the world of prefix notation. At first I didn't like it but it is still starting to grow on me. To be honest though, ...
4
votes
2answers
236 views
Is there a common mathematical symbology for collections?
I am being asked to define several of my algorithms in mathematical terms to describe my work to a customer. I am trying to determine if anybody knows whether common operators for collections like ...
15
votes
7answers
2k views
What is the appeal of Systems Hungarian?
In What naming guidelines do you follow?, the author says:
Also I prefer to code using hungarian notation from Charles Simonyi.
I've run in to several programmers who still prefer to use ...
10
votes
12answers
258 views
Are type and scope prefixes worthwhile naming conventions?
Recently starting my first job as a software developer, I was a little thrown to be told that I did not have to follow any naming conventions in my code. Code written by groups working on other, ...