User Lex - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T10:16:38Zhttp://stackoverflow.com/feeds/user/28994http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/232861/fibonacci-code-golf/332302#3323020Answer by Lex for Fibonacci Code GolfLex2008-12-01T21:27:22Z2008-12-01T21:27:22Z<p>The previous Ruby example won't work w/o either semicolons or newlines, so it's actually 32 chars. Here's the first example to actually output the sequence, not just return the value of a specified index.</p>
<p>Ruby:<br />
53 chars, including newlines:</p>
<pre><code>def f(n);n<2?1:f(n-1)+f(n-2);end
0.upto 20 {|n|p f n}
</code></pre>
<p>or if you want function that outputs a usable data structure, 71 chars:</p>
<pre><code>def f(n);n<2?1:f(n-1)+f(n-2);end
def s(n);(0..n).to_a.map {|n| f(n)};end
</code></pre>
<p>or accepting command-line args, 70 chars:</p>
<pre><code>def f(n);n<2?1:f(n-1)+f(n-2);end
p (0..$*[0].to_i).to_a.map {|n| f(n)}
</code></pre>
http://stackoverflow.com/questions/234721/what-are-the-biggest-differences-between-python-and-ruby-from-a-philosophical-per/234727#234727-5Answer by Lex for What are the biggest differences between Python and Ruby from a philosophical perspectiveLex2008-10-24T18:20:49Z2008-10-24T18:20:49Z<p>the obligatory answer: passing self all the time in python sucks...</p>
<p>...but I'm not really qualified to answer. I know very little Python. I love Ruby. I would guess that Python has more available in terms of libraries because it's been popular in the Western world for a longer time.</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/214020#2140203Answer by Lex for What things didn't you know you needed but are now very glad you have?Lex2008-10-17T22:14:49Z2008-10-17T22:14:49Z<p>Test driven development</p>
http://stackoverflow.com/questions/209979/are-semantics-and-syntax-the-same/213974#2139741Answer by Lex for Are semantics and syntax the same?Lex2008-10-17T21:56:00Z2008-10-17T21:56:00Z<p>Specifically, semantic social networking means embedding the actual social relationships within the page markup. The standard format for doing this as defined by <a href="http://microformats.org/" rel="nofollow">microformats</a> is <a href="http://www.gmpg.org/xfn/" rel="nofollow">XFN</a>, XHTML Friends Network. In regards to the semantic web in general, <a href="http://microformats.org/" rel="nofollow">microformats</a> should be the go-to guide for defining embedded semantic content.</p>
http://stackoverflow.com/questions/211536/scripting-in-java/212843#2128431Answer by Lex for Scripting in JavaLex2008-10-17T16:21:29Z2008-10-17T16:21:29Z<p>I would have to recommend Javascript for this purpose. Mozilla Rhino <a href="http://www.mozilla.org/rhino/" rel="nofollow">http://www.mozilla.org/rhino/</a> is an excellent implementation that would fit your needs perfectly.</p>
<p>I recommend Javascript over Jython or JRuby because of familiarity. Trivial Javascript follows a very familiar syntax that anybody can use. However if someone wants to do something more intense, Javascript is a very powerful functional programming language.</p>
<p>I regularly use Groovy and Ruby professionally and believe that their purpose is best for writing parts of applications with particularly complex logic where Java is cumbersome to write. Javascript is a much better choice as an embedded, general scripting language to use in a game. I haven't used Python, but it's syntactically similar to Ruby and I would believe it's purpose would also be similar.</p>
http://stackoverflow.com/questions/212758/best-way-for-confirmation-email-links-to-submit-id/212809#2128091Answer by Lex for Best way for confirmation email links to submit IDLex2008-10-17T16:12:57Z2008-10-17T16:12:57Z<p>Calculate a hex digest (e.g. md5) based on the user's id and the current time. Persist this code to a database or write a file with it as the filename, and include the user's ID and email address. </p>
<p>Set up a http handler (cgi, php, servlet, etc...) to receive GET requests based on a URI that looks something like "/confirm_email/{hexdigest}" or "/confirm_email.php?code={hexdigest}" </p>
<p>When a user needs to confirm their email, send a link to the above servlet containing the digest.</p>
<p>When someone links to this URI, retrieve the db record or file with the matching digest. If one is found the email address contained is now verified.</p>
<p>If you want to make it more robust: When a user verifies their email, change the hex digest to just be a hash of the email address itself with no salt. Then you can test if someone's email has changed and needs to re-verify.</p>