Tagged Questions
The evaluation tag has no wiki summary.
47
votes
67answers
7k views
Are you a good or bad programmer? [closed]
I see a lot of questions on SO that are asked about 'good' programmers vs 'bad' programmers.
For example, what is a good/bad programmer, how to tell a good/bad programmer, what to do about a bad ...
23
votes
17answers
1k views
Evaluating software estimates: sure signs of unrealistic figures?
Whilst answering “Dealing with awful estimates” posted by Ash I shared a few tips that I learned and personally use to spot weak estimates. But I am certain there must be many more!
What heuristics ...
21
votes
11answers
6k views
Having to set objectives for developers, even though objectives don't work
It is generally accepted that setting measurable objectives for software developers doesn't work , as too much focus on the objectives can lead to behaviour counter to the organisational goals ...
15
votes
2answers
583 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 ...
15
votes
7answers
1k views
Why does 1+++2 = 3 in python?
I am from C background and I just started learning python...
while trying some programs, I got this doubt...
how python evaluates the expression 1+++2?
No matter how many number of '+' I put in ...
14
votes
7answers
2k views
Is there a Language Reference Manual for PowerShell?
I'm evaluating Windows PowerShell as a replacement for cmd.exe for basic process automation for command-line code (e.g. setup, execution, and post-processing of large numbers of Fortran jobs.) I know ...
13
votes
1answer
142 views
Is parameter binding sequenced after argument evaluation?
Suppose I have the following function:
void foo(std::vector<int> vec, int n);
If I call the function like this:
std::vector<int> numbers { 2, 3, 5, 7, 11, 13, 17, 19 };
...
13
votes
3answers
554 views
Evaluation of Haskell Statements/Expressions using GHC API
For a tool I'm writing ( http://hackage.haskell.org/package/explore ) I need a way to read haskell function definitions at run-time, apply them to values from my tool and retrieve the results of their ...
13
votes
3answers
1k views
How do you evaluate a string as a clojure expression?
How would I get something similar to the following?:
(evaluate-text "(+ 1 2)") ; resolves to 3
12
votes
2answers
458 views
curious about how “loop = loop” is evaluated in Haskell
I thought expressions like this would cause Haskell to evaluate forever. But the behaviors in both GHCi and the compiled program surprised me.
For example, in GHCi, these expressions blocked until I ...
12
votes
14answers
2k views
How do you evaluate a Software Architect?
What characteristics do you find more valuable in a software architect? How to evaluate one?
For example:
Is in-depth knowledge of a stack more important than a good overall knowledge of different ...
11
votes
3answers
523 views
What is the relationship between unboxed types and strictness?
Unboxed types, like Int#, and strict functions, like f (!x) = ..., are something different, but I see conceptual similarity - they disallow thunks/laziness in some way. If Haskell was a strict ...
10
votes
3answers
490 views
SQL UPDATE order of evaluation
What is the order of evaluation in the following query:
UPDATE tbl SET q = q + 1, p = q;
That is, will "tbl"."p" be set to q or q + 1? Is order of evaluation here governed by SQL standard?
...
9
votes
2answers
204 views
Why can't I bind + in clojure?
Can anyone explain why I can rebind list but not +?
(binding [list vector]
(list 1 3))
(binding [list +]
(list 1 3))
(binding [+ list]
(+ 1 3))
I'd like to rebind + so I can do partial ...
9
votes
3answers
363 views
When evaluating an iPhone dev shop, best questions to ask?
We are currently in the process of evaluating a couple of iPhone development shops and we're putting together a list of questions/topics that we'll be asking them about when we meet.
To make sure ...
8
votes
11answers
4k views
Parameter evaluation order before a function calling in C
Can it be assumed a evaluation order of the function parameters when calling it in C ? According to the following program, it seems that there is not a particular order when I executed it.
#include ...
7
votes
2answers
200 views
Forced strictness for lists in haskell
I made really time consuming algorithm which produces a short string as the result. When I try to print it (via putStrLn) it appears on the screen character by character. I did understand why that ...
7
votes
3answers
286 views
Algorithm for Rating Objects Based on Amount of Votes and 5 Star Rating
I'm creating a site whereby people can rate an object of their choice by allotting a star rating (say 5 star rating). Objects are arranged in a series of tags and categories eg. electronics>graphics ...
7
votes
4answers
238 views
C# logical operation question
why this is true:
(true | false & false)
and this is false:
(true | false && false)
in my mind should be the oposite..
7
votes
4answers
257 views
Evaluating developers [closed]
I am a technical team leader of a small programming team, working on a project for an external client.
I was recently asked to produce written evaluations of my team members. I feel uncomfortable ...
7
votes
5answers
301 views
Should I use an expression parser in my Math game?
I'm writing some children's Math Education software for a class.
I'm going to try and present problems to students of varying skill level with randomly generated math problems of different types in ...
7
votes
3answers
266 views
Getting started in WPF
We are evaluating the use of WPF for an upcoming project. We plan to "commercialize" some of our internal tools and could really use some of the effects WPF offers. We also like the idea of the design ...
6
votes
3answers
139 views
Call by need vs call by name
I didn't understand the diffrence between Call-by-name and Call-by-need. As I understood, Call-by-need method restores the answer returned. But how It helps us, and Is there any fundamental difference ...
6
votes
4answers
178 views
short circuiting and parenthesis
Does it matter how I group subexpressions when dealing with a single short-circuiting operator?
a && b && c && d
a && (b && (c && d))
(a && b) ...
6
votes
4answers
276 views
Limiting Starts or Run Time for Evaluation Software in C# and Windows
Are there any good ways to limit the number of times an application can start or limit how long it can be used for under Windows 7 and using C#?
As far as I can see the registry can be easily edited, ...
6
votes
3answers
194 views
Function call in wrong order
This is what i have coded today
#include <iostream>
using namespace std;
int function1()
{
cout<<"hello from function1()"; return 0;
}
int function2()
{
cout<<"hello from ...
6
votes
5answers
2k views
Best and shortest way to evaluate mathematical expressions
I know there are many algorithms to evaluate expressions, for example
By Recursive Descent
Shunting-yard algorithm
Reverse Polish notation
But is there any way to evaluate any mathematical ...
6
votes
11answers
658 views
Recommendations for evaluating potential employees?
I have the task to interview and hire a new web programmer for the company I work fo.
Apart from the usual questions about previous employment and education, I've been using a SQL evaluation test to ...
5
votes
2answers
302 views
How much effort needed to deliver a solution based on Apache Ofbiz?
I was trying to get some info from documentation, but it seems that it is one of those projects that you have to check out and play with it to figure the answers out ...
I noticed of hight activity ...
5
votes
2answers
190 views
Mathematica — why does TreeForm[Unevaluated[4^5]] evaluate the 4^5?
If I give Mathematica the input
TreeForm[Unevaluated[4^5]]
I expect to see three boxes -- power, 4, and 5.
Instead I see a single box with 1024. Can anyone explain?
5
votes
2answers
457 views
R: passing expression to an inner function
Further delving into the mysteries of R evaluation...This is closely related to my previous question ( How to write an R function that evaluates an expression within a data-frame ). Let's say I want ...
5
votes
1answer
281 views
Eager evaluation/applicative order and lazy evaluation/normal order
As far as I know, eager evaluation/applicative order evaluates all arguments to a function before applying it, on the other hand, lazy evaluation/normal order evaluates the arguments only when needed.
...
5
votes
1answer
184 views
When to use `constantly` in clojure, how and when are its arguments evaluated?
In the accepted answer to another question, http://stackoverflow.com/questions/3997910/setting-clojure-constants-at-runtime the clojure function constantly is used.
The definition of constantly looks ...
5
votes
1answer
162 views
Evaluation of a small math type language that supports one variable
I have written the parser that reads the string input. That works. I have also written the evaluator that spits out the result. But there is one small detail that I'm having trouble implementing. Look ...
5
votes
5answers
228 views
does python multiplicative expression evaluates faster if finds a zero?
suppose i a have a multiplicative expression with lots of multiplicands (small expressions)
expression = a*b*c*d*....*w
where for example c is (x-1), d is (y**2-16), k is (x*y-60)..... x,y are ...
5
votes
2answers
158 views
How can I factor this Haskell expression to avoid repeated computation?
I have this function (produces the fibonacci sequence):
unfoldr (\(p1, p2) -> Just (p1+p2, (p1+p2, p1)) ) (0, 1)
In here, I notice a repeated expression, p1+p2, which I would like to factor so ...
5
votes
2answers
2k views
tic tac toe using alpha beta prunning in java
I am trying to play tic tac toe using iterative Alpha-Beta prunning,
I have one second limit for a move but for some reason it
doesnt work well.
I modified the regular alpha-beta code so instead of ...
5
votes
5answers
1k views
In Java, what are the boolean “order of operations”?
Let's take a simple example of an object "Cat". I want to be sure the "not null" cat is either orange or grey.
if(cat != null && cat.getColor() == "orange" || cat.getColor() == "grey") {
...
5
votes
7answers
1k views
Getting code statistics from big projects
I'm interested in code statistics tools. Specifically I need to get statistics on Java EE code, but any code analyzer would do. Should I start creating one of my own or is there some project that you ...
5
votes
7answers
2k views
Streaming XPath evaluation
Are there any production-ready libraries for streaming XPath expressions evaluation against provided xml-document? My investigations show that most of existing solutions load entire DOM-tree into ...
5
votes
6answers
4k views
Database choice for large data volume?
I'm about to start a new project which should have a rather large database.
The number of tables will not be large (<15), majority of data (99%) will be contained in one big table, which is ...
5
votes
5answers
837 views
How would you go about evaluating a programmer? [closed]
A few weeks ago, I was assigned to evaluate all our programmers. I'm very uncomfortable with this since I was the one who taught everyone the shop's programming language (they all got out of college ...
4
votes
3answers
99 views
C++ function evaluation order in assignment operator
int& foo() {
printf("Foo\n");
static int a;
return a;
}
int bar() {
printf("Bar\n");
return 1;
}
void main() {
foo() = bar();
}
I am not sure which one should be evaluated ...
4
votes
4answers
319 views
Javascript Evaluation order
Which of the following expressions will always precede left to right in all browsers(particularly IE6+, F3+, Opera 9+, Chrome)? For example the window should always alert first function then second ...
4
votes
2answers
100 views
What is call-by-need?
I want to know what is call-by-need.
Though I searched in wikipedia and found it here: http://en.wikipedia.org/wiki/Evaluation_strategy,
but could not understand properly.
If anyone can explain with ...
4
votes
2answers
200 views
Partial evaluation/specialization with LLVM-gcc or gcc
I am interestent in (partial) compile-time evaluation for c/c++ (not with template parameters like in c++). Lets consider the following case (taken from [1]):
double mypower(double x, int n) {
int ...
4
votes
3answers
469 views
How to write an R function that evaluates an expression within a data-frame
Puzzle for the R cognoscenti: Say we have a data-frame:
df <- data.frame( a = 1:5, b = 1:5 )
I know we can do things like
with(df, a)
to get a vector of results.
But how do I write a ...
4
votes
3answers
521 views
What is “Call By Name”?
I'm working in a homework, and the professor asked me to implement the evaluation strategy called "call by name" in scheme in a certain language that we developed and he gave us an example at ...
4
votes
2answers
461 views
Deferred evaluation in python
I have heard of deferred evaluation in python (for example here), is it just referring to how lambdas are evaluated by the interpreter only when they are used? Or is this the proper term for ...
4
votes
14answers
971 views
Dynamic source code in C++
How to process dynamic source code in C++? Is it possible to use something like eval("foo")?
I have some functions that need to be called depending on user's choice:
void function1 ();
...