5
votes
4answers
320 views
Do you leverage Semantic Web technologies? Why or why not?
I'm interested in understanding why people choose to leverage technology built on the W3C Semantic Web standards. How did you make the decision to use the technology you chose and …
2
votes
3answers
33 views
Tools available to do semantic analysis of text
I'm looking for code or a product or a service to do semantic analysis of text (sentences and or paragraphs) to categorize the text by general topic, e.g.
Finance
Entertainment
…
15
votes
20answers
1k 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. It th …
0
votes
2answers
52 views
Parallel Map (Generator) Operator
I am interested in defining a parallel map operator for my language. It transforms a list into a new list given an expression. It would have a syntax similar to a generator. Unlike …
0
votes
1answer
34 views
What should happen when a generator function is assigned?
If I have a programming language with first class functions. What should the semantics be when a generator function is shared?
For example:
var f = function() {
foreach (i i …
29
votes
26answers
2k 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 quer …
0
votes
2answers
83 views
Infinitely Deep Recursive Children
I have a single-table with the following (relative) structure:
foo_id, parent_foo_id, foo_name
I would like to build an (effectively) infinite-depth recursive array with these e …
1
vote
1answer
57 views
What technology problems arise from creating a markup language for email?
I am wondering what technology problems arise from associating a markup language to email? Without examining the language let us assume a hypothetical markup language exists with …
4
votes
7answers
1k views
C# Switch with String.IsNullOrEmpty
Is it possible to have a switch in C# which checks if the value is null or empty not "" but String.Empty? I know i can do this:
switch (text)
{
…
6
votes
2answers
150 views
C++: Confusing declaration semantics
Hi,
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 …
2
votes
3answers
372 views
[PHP] How to combine words of a sentence to composed terms?
Hello!
I have a sentence, for example
John Doe moved to New York last year.
Now I split the sentence into the single words and I get:
array('John', 'Doe', 'moved', 'to', …
0
votes
2answers
213 views
jQuery/PHP and multilingual confirm/alert boxes
Just when I was about to post this question, I came up with an easy solution kind-of-a solution.
The problem was that I needed confirmation messages in multiple languages, dependi …
0
votes
1answer
24 views
I don’t understand getNextIncludedTime() in Quartz
I'm probably just being an idiot - it's been a long day! I've misunderstood something in my first foray into Quartz...
Given this code:
DateTime dt = new DateTime();
dt = dt.with …
1
vote
12answers
1k views
How to correctly format PHP ‘IF ELSE’ statements?
It's been a long running issue that I've come across in many-a-hot-and-steamy coding sessions.
One person codes this way another codes that way. So after much push and pull I'm cu …
0
votes
1answer
64 views
What are “reduction semantics”? Please explain the use of PLT Redex in layman’s term.
Somebody please explain the usage of reduction semantics and the PLT Redex in simpler language.
Thanks.
