ziad-saab | 9 years ago | on: Elm for the Front End, Right Now
ziad-saab's comments
ziad-saab | 10 years ago | on: Embed Node.js on any website
When the same thing happened to me, it turned out I had a `ReferenceError` higher up in the code. Tonicdev notebook will stop evaluating code as soon as an error occurs, like any regular JavaScript program would.
Even though your code blocks are separated, and text appears between them, it's all one contiguous block of code.
ziad-saab | 10 years ago | on: Different password encryption implementations
One of my favourite ones:
public static function encryptPassword($password) {
return strrev(sha1(strtolower($password)).sha1(strtoupper($password)));
}
page 1
a = 1 > 0 ? "Yay" : "Nay"