The semantics tag has no wiki summary.
0
votes
2answers
115 views
Cogent arguments for 'semantic css' over 'object oriented css'
[Context - I'm a Java developer, having a discussion with a designer who works in the html/css space]
I was having a discussion with a co-worker today about the merits of 'semantic css'.
His ...
-1
votes
1answer
172 views
Semantic web friendly languages, is there any? [closed]
So, I have a web project I would like to get into as a learning process. This project is a wiki-like (kind of) site heavily relying on semantics, which seems to be non-existant apart from the Semantic ...
0
votes
1answer
122 views
How to format this line according to PEP 8? [closed]
I'm trying to adhere to PEP 8, with a 78 character limit on the length of my lines.
I have the following statement:
startTime = time.strptime(request.GET.get('st', (dt.datetime.now() - ...
9
votes
3answers
229 views
Which are the alternatives to using a stack to represent function call semantics?
We all know and love that function calls are usually implemented using the stack; there are frames, return addresses, parameters, the whole lot.
However, the stack is an implementation detail: ...
2
votes
2answers
106 views
Difference between sending a message and emitting it
Halfway through the RabbitMQ tutorial, I noticed that the tutorial stops referring to producers "sending" messages and starts using the verb "emit" instead — and pretty consistently, too; after the ...
2
votes
3answers
76 views
UML modelling semantics
In today's lecture about Modelling techniques with respect to MDD using UML the lecturer stated that it's absolutely necessary to give a (possibly) textual description about the semantics of each ...
2
votes
1answer
85 views
Objective C - nested messages … confusion about
Wonder if anyone could shed some light on this messaging construct:
The documentation says that messages appear btwn brackets [] and
that the msg target/object is on the left, whilst the msg itself ...
1
vote
1answer
84 views
Should semantic breaking changes be tied to syntactic breaking changes?
Explanation
First let me briefly define how I'm using terms (I might be bending their typical use a little):
When I talk about semantic breaking changes, I'm referring to a change in the ...
-2
votes
1answer
846 views
What is the difference, between a server and a mainframe? [closed]
To me, it seems as though "mainframe" is a somewhat dated term; is it simply an older synonym of "server," or does it server a purpose more similar to a cluster/supercomputer?
4
votes
3answers
208 views
What is the right HTTP method for upvoting?
From a RESTful point of view, what is the most appropriate HTTP method for the action of upvoting a forum post (like on StackExchange)?
I would say POST for voting and DELETE for canceling vote, but ...
3
votes
5answers
229 views
Using 'new' in a projection?
I wish to project a collection from one type (Something) to another type (SomethingElse). Yes, this is a very open-eneded question, but which of the two options below do you prefer?
Creating a new ...
3
votes
1answer
124 views
What is meant by a “First Class Protocol”
The Node.js about page describes HTTP as being a "first class protocol" within node.js. What does this mean?
http://nodejs.org/about
6
votes
5answers
480 views
Why is semantic markup given more weight for search engines?
This question follows directly from the part of an answer of this question - Why would one bother marking up properly and semantically? .
I would like to understand why SEO techniques gives more ...
46
votes
7answers
3k views
Why would one bother marking up properly and semantically?
Note that I (try) to mark up as semantically as possible because I like they way it looks and feels, but not because I'm aware of any other stunning advantages. The point of my question is to be ...
7
votes
7answers
436 views
Using empty subclasses to add to the semantics of a class hierarchy?
I was wondering whether using (almost) empty derived classes to give additional semantics to a class hierarchy was a good idea (or practice) ?
Because a (not so short) example is always better than a ...