User Andrew Gwozdziewycz - Stack Overflowmost recent 30 from stackoverflow.com2009-11-09T10:07:12Zhttp://stackoverflow.com/feeds/user/22277http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/151438/web-frameworks-for-haxe-to-deploy-in-a-php-environment2Web "frameworks" for haXe to deploy in a PHP environment?Andrew Gwozdziewycz2008-09-30T01:41:26Z2009-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-relationship1MySQL Limit with Many to Many RelationshipAndrew Gwozdziewycz2008-10-03T14:12:38Z2009-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-1Answer by Andrew Gwozdziewycz for Better interface for file downloads and uploads from a web page?Andrew Gwozdziewycz2008-12-19T12:59:19Z2008-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#1354213Answer by Andrew Gwozdziewycz for Simple regex-based lexer in Python Andrew Gwozdziewycz2008-09-25T19:24:13Z2008-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<NUMBER>[0-9]+)|(?P<VAR>[a-z]+)')
a = x.match('9999').groupdict() # => {'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#1368046Answer by Andrew Gwozdziewycz for Python web development - with or without a frameworkAndrew Gwozdziewycz2008-09-25T23:17:24Z2008-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#1367832Answer by Andrew Gwozdziewycz for Python language APIAndrew Gwozdziewycz2008-09-25T23:11:13Z2008-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#1355212Answer by Andrew Gwozdziewycz for Lost Classics: Out of Print Books?Andrew Gwozdziewycz2008-09-25T19:39:56Z2008-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#1353532Answer by Andrew Gwozdziewycz for Which is more preferable to use in Python: lambda functions or nested functions ('def') ?Andrew Gwozdziewycz2008-09-25T19:13:39Z2008-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#1352735Answer by Andrew Gwozdziewycz for Python Library PathAndrew Gwozdziewycz2008-09-25T19:02:46Z2008-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#927305Comment by Andrew Gwozdziewycz on What is the best Functional Programming Language for Experienced OO Developers?Andrew Gwozdziewycz2009-05-29T21:22:32Z2009-05-29T21:22:32Zkieveli: 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 "functional" about it. It encourages an imperative style by not forcing implementations to optimize tail-calls.
And, though not really against a "functional" 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#485443Comment by Andrew Gwozdziewycz on Distinctive traits of the functional languagesAndrew Gwozdziewycz2009-01-28T00:56:58Z2009-01-28T00:56:58Zthere 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#407588Comment by Andrew Gwozdziewycz on What are some examples of LISP being used in production, outside of AI and academia?Andrew Gwozdziewycz2009-01-02T18:41:14Z2009-01-02T18:41:14ZI 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#350692Comment by Andrew Gwozdziewycz on What is hard in Scheme but easy in Java?Andrew Gwozdziewycz2008-12-08T21:45:57Z2008-12-08T21:45:57ZI'm pretty sure he meant Java Applets, not server side applications.http://stackoverflow.com/questions/318128/functional-alternative/318377#318377Comment by Andrew Gwozdziewycz on Functional alternative?Andrew Gwozdziewycz2008-11-25T19:44:44Z2008-11-25T19:44:44ZI'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#315875Comment by Andrew Gwozdziewycz on What's a good way to rewrite this non-tail-recursive function?Andrew Gwozdziewycz2008-11-25T13:39:59Z2008-11-25T13:39:59ZBut, 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-functionComment by Andrew Gwozdziewycz on What's a good way to rewrite this non-tail-recursive function?Andrew Gwozdziewycz2008-11-25T13:36:10Z2008-11-25T13:36:10ZCPS 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-functionComment by Andrew Gwozdziewycz on What's a good way to rewrite this non-tail-recursive function?Andrew Gwozdziewycz2008-11-24T21:49:18Z2008-11-24T21:49:18Zuse 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#292043Comment by Andrew Gwozdziewycz on Is functional programming relevant to web development?Andrew Gwozdziewycz2008-11-17T03:01:25Z2008-11-17T03:01:25ZYahoo! Store was rewritten in c++ a few years back.http://stackoverflow.com/questions/213312/can-ruby-really-be-used-as-a-functional-language/214330#214330Comment by Andrew Gwozdziewycz on Can Ruby really be used as a functional language?Andrew Gwozdziewycz2008-10-18T03:23:13Z2008-10-18T03:23:13ZWith 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#167600Comment by Andrew Gwozdziewycz on MySQL Limit with Many to Many RelationshipAndrew Gwozdziewycz2008-10-03T16:28:48Z2008-10-03T16:28:48ZGROUP_CONCAT is exactly the solution that'll work. Thanks!http://stackoverflow.com/questions/6512/how-to-implement-continuations/6572#6572Comment by Andrew Gwozdziewycz on How to implement continuations?Andrew Gwozdziewycz2008-10-01T17:25:06Z2008-10-01T17:25:06ZBut, to support closures, couldn't you just do lambda lifting?http://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming/23188#23188Comment by Andrew Gwozdziewycz on What's a good beginning text on functional programming?Andrew Gwozdziewycz2008-09-26T16:56:11Z2008-09-26T16:56:11ZI 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.