| bio | website | flickr.com/photos/nimrodm |
|---|---|---|
| location | Tel Aviv, Israel | |
| age | 41 | |
| visits | member for | 4 years, 7 months |
| seen | 23 hours ago | |
| stats | profile views | 525 |
|
May 15 |
comment |
Shared authentication between rails and node.js with redis store Looking at github.com/vangberg/rack-session-redis/blob/master/lib/rack/… it seems like this should be the result of Ruby's Marshal.dump(hash_var) function. I think you can find js code to read that format. However, your solution seems simpler and more elegant. |
|
May 15 |
answered | Echo/delay algorithm just causes noise/static? |
|
May 15 |
comment |
Robust Download Function in PHP? To check that your PHP supports openssl, try running (from the command line) php -i. Search for "Registered Stream Socket Transports". It should say something like "tcp, udp, unix, udg, ssl, sslv3, sslv2, tls" |
|
May 13 |
comment |
Robust Download Function in PHP? Have you tried libcurl? |
|
Apr 22 |
awarded | Guru |
|
Apr 17 |
awarded | Good Answer |
|
Apr 15 |
awarded | Excavator |
|
Apr 15 |
comment |
python crypt.crypt in ruby? And then use something like: salt = letters.sample(2).join to get two random letters from the array. Nice. |
|
Apr 15 |
revised |
python crypt.crypt in ruby? minor fix: *0.9 should be *0..9 to get the 0,1,2,..9 range |
|
Apr 8 |
accepted | VIM “change word” equivalent in Replace mode |
|
Apr 8 |
asked | VIM “change word” equivalent in Replace mode |
|
Apr 6 |
comment |
What uses are there for “placement new”? [Edited for spelling] Usually - you do. But sometimes, when you know the class does not allocate memory or other resources (or you deallocated them externally - for example when you use memory pools), you can use this technique. It does guarantee that the v-table pointers are not overwritten. – nimrodm 16 hours ago |
|
Apr 4 |
answered | What uses are there for “placement new”? |
|
Mar 30 |
comment |
How do I make an html link look like a button? Simple and effective. You might want to add display:inline style to the form element. Otherwise it is treated like a block which is different from button/anchor/input. |
|
Feb 22 |
comment |
Read and execute a file as a variable in NodeJS +1 for JSON.parse. Edited my answer to include that alternative along with the required removal of the extra parens. |
|
Feb 22 |
revised |
Read and execute a file as a variable in NodeJS added JSON.parse option |
|
Feb 22 |
comment |
Read and execute a file as a variable in NodeJSJSON.parse() cannot handle the extra parenthesis. Of course, if this is the problem, one could manually strip them from the string and then process the result through JSON.parse(). |
|
Feb 22 |
answered | Read and execute a file as a variable in NodeJS |
|
Jan 30 |
answered | MATLAB LU decomposition not responding |
|
Jan 30 |
answered | Node.js module loading |