Tagged Questions
Specifying a meaning
55
votes
29answers
5k views
What is the opposite of 'parse'?
I have a function, parseQuery, that parses a SQL query into an abstract representation of that query.
I'm about to write a function that takes an abstract representation of a query and returns a SQL ...
45
votes
9answers
4k views
Semantic Diff Utilities
I'm trying to find some good examples of semantic diff/merge utilities. The traditional paradigm of comparing source code files works by comparing lines and characters.. but are there any utilities ...
41
votes
36answers
4k views
When is a language considered a scripting language?
What makes a language a scripting language? I've heard some people say "when it gets interpreted instead of compiled". That would make PHP (for example) a scripting language. Is that the only ...
39
votes
8answers
48k views
What is the difference between a process and a thread
What is the technical difference between a process and a thread? I get the feeling a word like 'process' is over used and there is also hardware and software threads. How about light-weight processes ...
34
votes
12answers
3k views
Is there a difference between `==` and `is` in python?
My Google-fu has failed me.
In Python, are these:
n = 5
# Test one.
if n == 5:
print 'Yay!'
# Test two.
if n is 5:
print 'Yay!'
two tests for equality equivalent (ha!)? Does this hold ...
31
votes
20answers
1k views
How do you make wrong code look wrong? What patterns do you use to avoid semantic errors?
Ever since I first made the mistake of doing an assignment in an if I've always written my ifs like this:
if (CONST == variable) {
to avoid the common (at least for me) mistake of doing this:
if ...
30
votes
13answers
1k views
Is “map” a loop?
While answering this question, I came to realize that I was not sure whether Perl's map can be considered a loop or not?
On one hand, it quacks/walks like a loop (does O(n) work, can be easily ...
26
votes
12answers
6k views
Should I put input tag inside label tag?
I was just wondering if there is a best practice concerning label and input tag :
classic way:
<label for="myinput">My Text</label>
<input type="text" id="myinput" />
or
...
24
votes
8answers
2k views
What is the semantic web?
I've heard a lot about the semantic web but I'm still not exactly sure what it is. How will it be different to the web we know now?
22
votes
8answers
5k views
count vs length vs size in a collection
From using a number of programming languages and libraries I have noticed various terms used for the total number of elements in a collection.
The most common seem to be length, count, and size.
eg.
...
21
votes
6answers
1k views
Why does (x += x += 1) evaluate differently in C and Javascript?
If the value of the variable x is initially 0, the expression x += x += 1 will evaluate to 2 in C, and to 1 in Javascript.
The semantics for C seems obvious to me: x += x += 1 is interpreted as x += ...
19
votes
3answers
779 views
What happens to you if you break the monad laws?
Do the compiler or the more "native" parts of the libraries (IO or functions that have access to black magic and the implementation) make assumptions about these laws? Will breaking them cause the ...
19
votes
5answers
38k views
Finding the id of a parent div using Jquery
I have some html like this:
<div id="1">
<p>
Volume = <input type="text" />
<button rel="3.93e-6" class="1" type="button">Check answer</button>
...
18
votes
6answers
2k views
H1 in article page - site title or article title?
Within an article-oriented page (such as a blog post), the <h1> element (level 1 heading) is commonly used to markup either:
the blog title (i.e. the often-large site title at the top of the ...
16
votes
11answers
1k views
Is OO design's strength in semantics or encapsulation?
Object-oriented design (OOD) combines data and its methods. This, as far as I can see, achieves two great things: it provides encapsulation (so I don't care what data there is, only how I get values I ...
15
votes
2answers
582 views
How does seq force functions?
Background
This question arises from a challenge Brent Yorgey posed at OPLSS: write a function f :: (Int -> Int) -> Bool that distinguishes f undefined from f (\x -> undefined). All of our ...
14
votes
2answers
230 views
Semantic Search in Python for hobbies + latest news
I want to implement a python based semantic search over a set of keywords (mainly hobbies, latest news, etc which people might be interested to talk about). I want to know if there exist an ontology ...
14
votes
1answer
468 views
The concept of Bottom in Haskell
Bottom in Haskell described here is said to be any computation that have errors, is unterminated, or involves infinite loop, is of any type... is this specific to Haskell? We know in Lattice theory, ...
14
votes
5answers
1k views
Yet another dynamic data model question
I have a project that requires user-defined attributes for a particular object at runtime (Lets say a person object in this example). The project will have many different users (1000 +), each ...
14
votes
6answers
743 views
Semantics of char a[]
I recently embarrassed myself while explaining to a colleague why
char a[100];
scanf("%s", &a); // notice a & in front of 'a'
is very bad and that the slightly better way to do it is:
char ...
13
votes
8answers
531 views
Walter Bright's use of the word “redundancy”… or 'The heck does that mean?'
So I'm reading this interview with Walter Bright about the D language in Bitwise (http://www.bitwisemag.com/copy/programming/d/interview/d_programming_language.html), and I come across this really ...
13
votes
9answers
5k views
GET vs POST in Ajax
What is the between GET and POST for Ajax requests?
I don't see any difference between those two, except that when I use GET, the parameters are send in URL, which for me don't really make any ...
13
votes
9answers
569 views
Why are generics called generics?
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 definition of generic is "general" and generic ...
12
votes
9answers
322 views
Does an algorithm exist to help detect the “primary topic” of an English sentence?
I'm trying to find out if there is a known algorithm that can detect the "key concept" of a sentence.
The use case is as follows:
User enters a sentence as a query (Does chicken taste like turkey?)
...
11
votes
4answers
303 views
How to explain the “Cascade” to CSS newbies?
I have trouble explaining to people who are new to CSS how the cascade works when using stylesheets. For whatever reason, newbies seem to naturally start out by just adding a class to every element. ...
10
votes
4answers
2k views
<code> vs <pre> vs <samp> for inline and block code snippets
An embarrassingly old-school HTML question. My site is going to have some inline code ("when using the foo() function...") and some shortish block snippets. These tend to be XML and have very long ...
10
votes
10answers
3k views
Is there an algorithm that tells the semantic similarity of two phrases
input: phrase 1, phrase 2
output: semantic similarity value (between 0 and 1), or the probability these two phrases are talking about the same thing
9
votes
5answers
103 views
Semantic iterator declaration?
I'm sorry for the very vague title, I really didn't know how to title this question.
Let's say I have this:
std::list<std::string> msgs;
for (std::list<std::string>::iterator it = ...
9
votes
3answers
847 views
Marking up a search result list with HTML5 semantics
Making a search result list (like in Google) is not very hard, if you just need something that works. Now, however, I want to do it with perfection, using the benefits of HTML5 semantics. The goal is ...
9
votes
1answer
727 views
“Strictly positive” in Agda
I'm trying to encode some denotational semantics into Agda based on a program I wrote in Haskell.
data Value = FunVal (Value -> Value)
| PriVal Int
| ConVal Id [Value]
...
9
votes
6answers
985 views
Is there any killer application for Ontology/semantics/OWL/RDF yet?
I got interested in semantic technologies after reading a lot of books, blogs and articles on the net saying that it would make data machine-understandable, allow intelligent agents make great ...
9
votes
7answers
2k views
Checking for empty arrays: count vs empty
This question on 'How to tell if a PHP array is empty' had me thinking of this question
Is there a reason that count should be used instead of empty when determining if an array is empty or not?
My ...
9
votes
12answers
1k views
Semantic value of span
The span element would seem to be exactly like a div, but at the in-line level rather than at the block level, however I can't seem to think of any beneficial logical divisions that the span element ...
8
votes
2answers
106 views
When to return IOrderedEnumerable?
Should IOrderedEnumerable be used as a return type purely for semantic value?
For example, when consuming a model in the presentation layer, how can we know whether the collection requires ordering ...
8
votes
2answers
271 views
How to properly use h1 in HTML5
Which of the following is the correct way to structure a page:
1) h1 only in header
<header>
<h1>Site title</h1>
<nav>...</nav>
</header>
<section>
...
8
votes
6answers
690 views
When to use <br> line breaks vs CSS positioning?
I've often wondered about the proper use of a <br> line break. Seems that often they are incorrectly used for positioning or clearing content where CSS should instead be used.
...
8
votes
1answer
2k views
boost spirit semantic action parameters
in this article about boost spirit semantic actions it is mentioned that
There are actually 2 more arguments
being passed: the parser context and a
reference to a boolean ‘hit’
parameter. ...
8
votes
11answers
575 views
How should important terms be emphasized in documentation?
Software will often introduce and formalize concepts that may have ambiguous definitions in the real world. For example, in an attendance tracking system, an Occurrence refers to an Excused Absence, ...
8
votes
2answers
324 views
C++: Confusing declaration semantics
After tring my hand at perl and a little bit of C, I am tring to learn C++ and already i am bogged down by the details and pitfalls. Consider this:-
int x = 1;
{
int x = x; // garbage value of x
}
...
8
votes
8answers
667 views
<p> instead of <br />
I've been wondering if I can use <p> </p> (just space in paragraph) instead of <br /> ...
Because I love to keep my code semantic and thought if this is right has been ...
8
votes
9answers
7k views
8
votes
6answers
2k views
p vs. ol or ul for form styling
Typically I style forms with the unordered list tag e.g.
<fieldset>
<ul>
<li>
<label for="txtName">Name</label>
<input type="text" ...
8
votes
10answers
2k views
Semantic difference between “Find” and “Search”?
When building an application, is there any meaningful difference between the idea of "Find" vs "Search" ? Do you think of them more or less as synonymous?
I'm asking in terms of labeling for ...
8
votes
8answers
4k views
Are semantics and syntax the same?
I don't understand the meaning of semantic and the meaning of syntax! What are they? And what's the difference between things like "semantic website vs. normal website", "semantic social networking ...
8
votes
4answers
2k views
value semantics and pointer semantics?
what does it mean by value semantics and what is mean by implicit pointer semantics?
7
votes
5answers
126 views
The semantic difference between a property and a field, and their implications
Take private string Property {get; set;} versus private string field.
Note that both are private (so they will not be exposed outside of this class) and that the property is not employing extra ...
7
votes
1answer
1k views
Emacs/CEDET. Multiple projects and code completion
I've setup emacs 23.1.50.1 with CEDET 1.0 and ECB 2.40 (heavily inspired by Alex Otts setup at http://github.com/alexott/emacs-configs/blob/master/rc/emacs-rc-cedet.el and his gentle introduction to ...
7
votes
2answers
471 views
What is deckware?
I stumbled upon that word in this blog post.
There is similar question in hacker news, but without a definitive answer.
Google doesn't seem to be much help either.
7
votes
8answers
588 views
What does the word “semantic” mean in Computer Science context?
I keep coming across the use of this word and I never understand its use or the meaning being conveyed.
Phrases like...
"add semantics for those who read"
"HTML5 semantics"
"semantic ...
7
votes
6answers
414 views
Semantics and Structure of Name-Value Pairs
This is a question I have been struggling with for a while. What is the proper way to mark up name/value pairs?
I'm fond of the <dl> element, but it presents a problem: There is no way to ...