Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment So? (Score 1) 161

The cat is out of the bag. Crypto and its application is an academic subject now, with plenty of companies and open-source projects using the fruit of the work. That is to say, for another ten-fifteen years or so. Then, quantum will start taking it all apart. The amateurs will not have the resources to follow there.

Comment Re:Normal women... (Score 1) 765

This is not about a workplace situation. This is a about doing volunteer work. You know, the environment that requires a little begging from the person who initiates it. Something about making sure you're not excluding somebody who might otherwise turn in great work. Because you're not *paying* them, you're kindly asking them if they want to do something for you in their spare time.

Comment Re:why? (Score 1) 677

I use a standard for coding in C that *requires* the use of goto. It goes like this:

#define CHECK(fnc) { int __r = (fnc); if (__r) goto CLEANUP; }

Then define each function to have a CLEANUP: label, and surround the call of every function from within this function by CHECK(). The CLEANUP label usually has a return 0; just before it, and in most cases a return nonzero; after it. Gives you clean code that always eats up the stack in case of error.

Slashdot Top Deals

Kleeneness is next to Godelness.

Working...