Tagged Questions

0
votes
8answers
389 views

Existence of a table generation framework for experiments

Bounty is for the name of a software package for generating tables and running experiments with particular parameters. That is it! I am running experiments on computer programs with a number of …
0
votes
3answers
35 views

Tools for analysing experimental data

What tools are there for analysing experimental data with a number of variables to attempt to optimise parameters for a particular parameter? This question is purposely general - I'm more asking for …
1
vote
1answer
175 views

Creating cookie onunload (even after deleting browser cache)

Is it possible to create a cookie after a user has deleted his/her browser cache (+cookies) entirely? E.g. Predefined variables loaded into memory var userID = 1337; var IP = 222.222.222.222; var …
8
votes
5answers
266 views

Memorable pedagogic programming experiments ?

"Tell me, and I'll forget. Show me, and I'll remember. Involve me, and I'll learn." We all have participated to some experiments with a teacher, a pro or a friend who wanted to make his point …
2
votes
13answers
306 views

Will reassigning a variable in every iteration of a loop affect performance?

Consider the following two ways of writing a loop in Java to see if a list contains a given value: Style 1 boolean found = false; for(int i = 0; i < list.length && !found; i++) { …