5
votes
2answers
241 views
incremental k-core algorithm
Calculating the k-core of a graph by iteratively pruning vertices is easy enough. However, for my application, I'd like to be able t …
4
votes
3answers
191 views
Creative uses for cryptography beyond the usual encryption/authentication
Lately I've been intrigued by some of the less traditional uses of cryptography. Things like:
…
3
votes
What are five things you hate about your favorite language?
Python:
Slow for number crunching. This wouldn't be much of a problem except it...
Doesn't come with an easy way to include C code with your program that automatically gets c …
6
votes
Way to encrypt a single int
What you want is a 32-bit block cipher. Unfortunately, most block ciphers are 64-bits or more due to the weak …
3
votes
Angular Momentum Transfer equations
If you're interested in rotating non-spherical bodies then http://www.myphysicslab.com/collision.html shows how to do it. The …
0
votes
What general purpose language should I learn next?
Why not Erlang?
It's not too much like the languages you already know, so you can learn new concepts
It has some interesting …
0
votes
Other ways of protecting cookies
Signing the cookie with a HMAC is a perfectly reasonable way to do this. HMAC essentially rolls a secret key known only by your server …
10
votes
Code Golf: Lasers
Python
294 277 253 240 232 characters including newlines:
(the first character in lines 4 and 5 is a tab, not s …
