Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

48
votes
8answers
3k views

Which is faster : if (bool) or if(int)?

Which value is better to use? Boolean true or Integer 1? The above topic made me do some experiments with bool and int in if condition. So just out of curiosity I wrote this program: int f(int ...
11
votes
5answers
307 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 ...
7
votes
5answers
255 views

Programming experiments

I frequently code numerous experiments to test various algorithms, libraries, or hardware. All code, dependencies, and output of these experiments need to be annotated and saved, so that I can return ...
5
votes
4answers
159 views

Experimental IDE concepts

I am interested in building a new style IDE for a side project. Mainly to do away with the normal notepad on steroids IDE. I am looking for some inspiration for things that have been tried or that ...
3
votes
2answers
54 views

Setting up a lab to experiment with GIT

I'm a newbie (like 6 months) Linux user. I'm using Git for quite a while, and now I'd like to start learning more advanced stuff. What I'd like to learn is a variety of ways to handle/manage remotes. ...
3
votes
2answers
257 views

Python threading unexpectedly slower

I have decided to learn how multi-threading is done in Python, and I did a comparison to see what kind of performance gain I would get on a dual-core CPU. I found that my simple multi-threaded code ...
2
votes
1answer
163 views

How to measure the amount of data transmitted by my MPI program?

I'm experimenting my distributed clustering algorithm (implemented with MPI) on 24 computers that I set up as a cluster using BCCD (Bootable Cluster CD) that can be downloaded at http://bccd.net/. ...
2
votes
1answer
37 views

Inspiring web experiments and technical demos

Probably everyone knows about Chrome Experiments: http://www.chromeexperiments.com/ that contain some stunning examples of what JS is capable of. It would be nice to compile a collection of similar ...
2
votes
3answers
238 views

Dual neural networks experiment (one logical, one emotional)?

Seeing that as as far as we know, one half of your brain is logical and the other half of your brain is emotional, and that the wants of the emotional side are fed to the logical side in order to ...
2
votes
13answers
378 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++) { ...
1
vote
2answers
67 views

Running long experiments from a web interface

I'm building a research web app that runs a long batch analysis that can last hours. I'm using Grails but I think this is a general design issue. The batch process can be started by a URL, e.g. ...
1
vote
3answers
84 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
774 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 ...
0
votes
3answers
40 views

Validate an html document that I wrote with document.write()

Ok first off let me state that I know I should never do this under any circumstances for a real site. Ok. That's out of the way. One of my coworkers was going off that Javascript is not a "real" ...
0
votes
1answer
56 views

Way to store large amount of experiments and corresponding results

I have an experiment setup that produces a few csv and text files every run. In my research I run a number of these in parallel each day and trying to store and organized them in a directory ...
0
votes
4answers
53 views

Expressions which always return true (and the compiler doesn't know)

When experimenting I often use if (true) {..} or if (false) {..} to section off chunks of code I'm playing with. The problem is that compilers these days sometimes issue a warning about unreachable ...
0
votes
2answers
996 views

CSS3 webkit fading in a tooltip

HI, I've just been experimenting with a CSS tooltip that fades in with CSS3's transitions. I was going for a tooltip effect that when you hover a link, the tooltip appears, but fades in using only ...
0
votes
8answers
484 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 ...
-1
votes
1answer
66 views

How to Build a Python Encryption Algorithm

I'm doing a computer science experiment with encryption. My goal is to write different encryption algorithms and then attack them with different techniques. I get that I have to hash the string and ...