User Andrew Gwozdziewycz - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T10:07:12Z http://stackoverflow.com/feeds/user/22277 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/151438/web-frameworks-for-haxe-to-deploy-in-a-php-environment 2 Web "frameworks" for haXe to deploy in a PHP environment? Andrew Gwozdziewycz 2008-09-30T01:41:26Z 2009-10-25T06:53:21Z <p>Lately I've been taking a look at <a href="http://haxe.org" rel="nofollow">haXe</a>, to build an application to be deployed to Apache running PHP. Well, while it looks like it might suit my needs (deploying to PHP, but not using an awful language), I haven't found anything to make the actual application development easier than building a traditional non-MVC PHP app. Are there any toolkits/frameworks that I'm missing, that would be worthwhile? </p> <p>It'd be nice if it were MVC inspired, and I'd definitely want an easy way to use nice URLS, though I could settle for mod_rewrite rules if necessary. </p> <p>Edit: The idea is to <strong>not</strong> use something like CakePHP on the PHP end, but to instead use something like CakePHP on the haXe end.</p> http://stackoverflow.com/questions/167067/mysql-limit-with-many-to-many-relationship 1 MySQL Limit with Many to Many Relationship Andrew Gwozdziewycz 2008-10-03T14:12:38Z 2009-07-23T11:23:01Z <p>Given a SCHEMA for implementing tags</p> <p>ITEM ItemId, ItemContent</p> <p>TAG TagId, TagName</p> <p>ITEM_TAG ItemId, TagId</p> <p>What is the best way to limit the number of ITEMS to return when selecting with tags?</p> <pre><code>SELECT i.ItemContent, t.TagName FROM item i INNER JOIN ItemTag it ON i.id = it.ItemId INNER JOIN tag t ON t.id = it.TagId </code></pre> <p>is of course the easiest way to get them all back, but using a limit clause breaks down, because you get an duplicate of all the items for each tag, which counts toward the number of rows in LIMIT.</p> http://stackoverflow.com/questions/380835/better-interface-for-file-downloads-and-uploads-from-a-web-page/380899#380899 -1 Answer by Andrew Gwozdziewycz for Better interface for file downloads and uploads from a web page? Andrew Gwozdziewycz 2008-12-19T12:59:19Z 2008-12-19T19:10:59Z <p>Why don't you simply add a replace button next to the download button, so instead of uploading, they "replace" it? Then, there's no ambiguity as to which file is being replaced. They're telling you explicitly.</p> <p><strong>Edit</strong> - Why is this getting downvoted? Does it not provide a legitimate answer to the question? Is the question not, how do I let people download something and then reupload an edited version? I don't get it.</p> http://stackoverflow.com/questions/133886/simple-regex-based-lexer-in-python/135421#135421 3 Answer by Andrew Gwozdziewycz for Simple regex-based lexer in Python Andrew Gwozdziewycz 2008-09-25T19:24:13Z 2008-09-26T13:21:19Z <p>It's possible that combining the token regexes will work, but you'd have to benchmark it. Something like:</p> <pre><code>x = re.compile('(?P&lt;NUMBER&gt;[0-9]+)|(?P&lt;VAR&gt;[a-z]+)') a = x.match('9999').groupdict() # =&gt; {'VAR': None, 'NUMBER': '9999'} if a: token = [a for a in a.items() if a[1] != None][0] </code></pre> <p>The filter is where you'll have to do some benchmarking...</p> <p><strong>Update:</strong> I tested this, and it seems as though if you combine all the tokens as stated and write a function like:</p> <pre><code>def find_token(lst): for tok in lst: if tok[1] != None: return tok raise Exception </code></pre> <p>You'll get roughly the same speed (maybe a teensy faster) for this. I believe the speedup must be in the number of calls to match, but the loop for token discrimination is still there, which of course kills it.</p> http://stackoverflow.com/questions/136069/python-web-development-with-or-without-a-framework/136804#136804 6 Answer by Andrew Gwozdziewycz for Python web development - with or without a framework Andrew Gwozdziewycz 2008-09-25T23:17:24Z 2008-09-25T23:17:24Z <p>You might consider using something like <a href="http://webpy.org/" rel="nofollow">web.py</a> which would be easy to distribute (since it's small) and it would also be easy to adapt your other tools to it since it doesn't require you to submit to the framework so much like Django does. </p> <p>Be forewarned, however, it's not the most loved framework in the Python community, but it might be just the thing for you. You might also check out <a href="http://mdp.cti.depaul.edu/" rel="nofollow">web2py</a>, but I know less about that.</p> http://stackoverflow.com/questions/136739/python-language-api/136783#136783 2 Answer by Andrew Gwozdziewycz for Python language API Andrew Gwozdziewycz 2008-09-25T23:11:13Z 2008-09-25T23:11:13Z <p>The standard python library is fairly well documented. Try jumping into python and importing a module say "os" and running:</p> <pre><code>import os help(os) </code></pre> <p>This reads the doc strings on each of the items in the module and displays it. This is exactly what pydoc will do too.</p> http://stackoverflow.com/questions/135285/lost-classics-out-of-print-books/135521#135521 2 Answer by Andrew Gwozdziewycz for Lost Classics: Out of Print Books? Andrew Gwozdziewycz 2008-09-25T19:39:56Z 2008-09-25T19:39:56Z <p><em>The Implementation of Functional Programming Languages</em> by Simon Peyton-Jones ISBN 013453333X. I haven't read all of it, but I do like what I've read.</p> <p>It's available in <a href="http://research.microsoft.com/~simonpj/Papers/slpj-book-1987/index.htm" rel="nofollow">PDF or HTML</a>.</p> http://stackoverflow.com/questions/134626/which-is-more-preferable-to-use-in-python-lambda-functions-or-nested-functions/135353#135353 2 Answer by Andrew Gwozdziewycz for Which is more preferable to use in Python: lambda functions or nested functions ('def') ? Andrew Gwozdziewycz 2008-09-25T19:13:39Z 2008-09-25T19:13:39Z <p>The primary use of lambda has always been for simple callback functions, and for map, reduce, filter, which require a function as an argument. With list comprehensions becoming the norm, and the added allowed if as in:</p> <pre><code>x = [f for f in range(1, 40) if f % 2] </code></pre> <p>it's hard to imagine a real case for the use of lambda in daily use. As a result, I'd say, avoid lambda and create nested functions.</p> http://stackoverflow.com/questions/135035/python-library-path/135273#135273 5 Answer by Andrew Gwozdziewycz for Python Library Path Andrew Gwozdziewycz 2008-09-25T19:02:46Z 2008-09-25T19:02:46Z <p>You can also make additions to this path with the PYTHONPATH environment variable at runtime, in addition to:</p> <pre><code>import path sys.path.append('/home/user/python-libs') </code></pre> http://stackoverflow.com/questions/927272/what-is-the-best-functional-programming-language-for-experienced-oo-developers/927305#927305 Comment by Andrew Gwozdziewycz on What is the best Functional Programming Language for Experienced OO Developers? Andrew Gwozdziewycz 2009-05-29T21:22:32Z 2009-05-29T21:22:32Z kieveli: monads don't need special syntax. the concept can be used in any programming language. I don't see JavaScript as being any more functional than it is prototypical OOP. Aside from first class functions, there is nothing inherently &quot;functional&quot; about it. It encourages an imperative style by not forcing implementations to optimize tail-calls. And, though not really against a &quot;functional&quot; style, it's scoping rules are odd to say the least. Because of this, lexical closures in the language must be taken with a grain of salt. http://stackoverflow.com/questions/485418/distinctive-traits-of-the-functional-languages/485443#485443 Comment by Andrew Gwozdziewycz on Distinctive traits of the functional languages Andrew Gwozdziewycz 2009-01-28T00:56:58Z 2009-01-28T00:56:58Z there isn't a lack of state, it's just that state is stored elsewhere, often on the stack. http://stackoverflow.com/questions/406729/what-are-some-examples-of-lisp-being-used-in-production-outside-of-ai-and-academ/407588#407588 Comment by Andrew Gwozdziewycz on What are some examples of LISP being used in production, outside of AI and academia? Andrew Gwozdziewycz 2009-01-02T18:41:14Z 2009-01-02T18:41:14Z I would guess it's because everything else at Apple is done in Objective-C and it made sense to keep things together. Also, they threw away a ton of stuff to do OS X, so maybe it needed a rewrite anyway. http://stackoverflow.com/questions/350544/what-is-hard-in-scheme-but-easy-in-java/350692#350692 Comment by Andrew Gwozdziewycz on What is hard in Scheme but easy in Java? Andrew Gwozdziewycz 2008-12-08T21:45:57Z 2008-12-08T21:45:57Z I'm pretty sure he meant Java Applets, not server side applications. http://stackoverflow.com/questions/318128/functional-alternative/318377#318377 Comment by Andrew Gwozdziewycz on Functional alternative? Andrew Gwozdziewycz 2008-11-25T19:44:44Z 2008-11-25T19:44:44Z I've heard this in the context of objects vs. closures, but never loops vs tail calls. This stuff is great. Thanks. http://stackoverflow.com/questions/315507/whats-a-good-way-to-rewrite-this-non-tail-recursive-function/315875#315875 Comment by Andrew Gwozdziewycz on What's a good way to rewrite this non-tail-recursive function? Andrew Gwozdziewycz 2008-11-25T13:39:59Z 2008-11-25T13:39:59Z But, as stated in another comment, you could make this use Trampolined style. It'll be slower since you'll most likely use exceptions for it, but it'd work. http://stackoverflow.com/questions/315507/whats-a-good-way-to-rewrite-this-non-tail-recursive-function Comment by Andrew Gwozdziewycz on What's a good way to rewrite this non-tail-recursive function? Andrew Gwozdziewycz 2008-11-25T13:36:10Z 2008-11-25T13:36:10Z CPS doesn't really require tail call optimization, but for large transformations, you'll definitely hit the recursion level. http://stackoverflow.com/questions/315507/whats-a-good-way-to-rewrite-this-non-tail-recursive-function Comment by Andrew Gwozdziewycz on What's a good way to rewrite this non-tail-recursive function? Andrew Gwozdziewycz 2008-11-24T21:49:18Z 2008-11-24T21:49:18Z use continuation passing style, then it's allocated on the heap and not the stack! :) http://stackoverflow.com/questions/292033/is-functional-programming-relevant-to-web-development/292043#292043 Comment by Andrew Gwozdziewycz on Is functional programming relevant to web development? Andrew Gwozdziewycz 2008-11-17T03:01:25Z 2008-11-17T03:01:25Z Yahoo! Store was rewritten in c++ a few years back. http://stackoverflow.com/questions/213312/can-ruby-really-be-used-as-a-functional-language/214330#214330 Comment by Andrew Gwozdziewycz on Can Ruby really be used as a functional language? Andrew Gwozdziewycz 2008-10-18T03:23:13Z 2008-10-18T03:23:13Z With proper tail-call elimination, you're effectively creating a while loop, and so you can use recursion indefinitely. This is how you'd implement an infinite loop, say in Scheme. The example above is obviously contrived. http://stackoverflow.com/questions/167067/mysql-limit-with-many-to-many-relationship/167600#167600 Comment by Andrew Gwozdziewycz on MySQL Limit with Many to Many Relationship Andrew Gwozdziewycz 2008-10-03T16:28:48Z 2008-10-03T16:28:48Z GROUP_CONCAT is exactly the solution that'll work. Thanks! http://stackoverflow.com/questions/6512/how-to-implement-continuations/6572#6572 Comment by Andrew Gwozdziewycz on How to implement continuations? Andrew Gwozdziewycz 2008-10-01T17:25:06Z 2008-10-01T17:25:06Z But, to support closures, couldn't you just do lambda lifting? http://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming/23188#23188 Comment by Andrew Gwozdziewycz on What's a good beginning text on functional programming? Andrew Gwozdziewycz 2008-09-26T16:56:11Z 2008-09-26T16:56:11Z I don't think I'd consider Lisp as more pure than OCaml. Most Lisps do nothing to prevent you from mutation. OCaml on the other hand makes it impossible to mutate variables unless you declare them as mutable.