Open Research Computation Closes Before Opening
New submitter wagdav writes " Open Research Computation, a peer-reviewed journal on software designed for use by researchers closes on 8th May 2012. It just started to accept manuscripts sometime last year, and had not actually launched yet. The journal was to be open access and tried to be different than others with very demanding pre-submission requirements such as: code availability, high quality documentation and testing, the availability of test input and output data, and reproducibility. Now it is planned to be launched as an ongoing series in Source Code for Biology and Medicine."
That's why I bought a Saturn.
The summary fails to note that the other journal is open access, also. If I were more cynical, I'd think that some scientific publishers want to give the impression that "open access" is failing before it starts.
...with a journal named ORC.
Sheesh, evil *and* a jerk. -- Jade
...to say that the project has been stopped before it opened? I don't see how it could close if it had never opened in the first place, and since this was to be a journal about computer science, and arguably about logic, this makes no sense as stated...
Do not look into laser with remaining eye.
Perhaps this can be explained by a recent slashdot article about a quantum experiment that shows effect before cause?
The Official Site of 1337 Pwnage
I once had a girlfriend who was a telepath. She dumped me before we even met. -- I'll be here all week :)
No wonder.
I mean users must have the right to examine, compile, run and modify the code for any purpose (emphasis mine): really? I know it's "science" and "open", but come on, realism needs to kick in at some point.
I am putting myself to the fullest possible use, which is all I can think that any conscious entity can ever hope to do.
// announcement.c:
#include <stdio.h>
int main()
{
printf( "goodbye, world,\n" );
return 0;
}
# greeting_unit_test.sh:
./announcement > announcement.txt /dev/null
#!/bin/sh
grep "^goodbye, world.$" announcement.txt >
if [ $? -eq 0 ]; then
echo "Test passed. Thanks for 0 great years!"
else
echo "Test failed."
fi