User zvoase - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T10:04:12Zhttp://stackoverflow.com/feeds/user/31600http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/929274/is-there-a-python-module-recipe-not-numpy-for-2d-arrays-for-small-games/929332#9293322Answer by zvoase for Is there a Python module/recipe (not numpy) for 2d arrays for small gameszvoase2009-05-30T08:30:11Z2009-05-30T12:55:25Z<p>The simplest approach would just be to use nested lists:</p>
<pre><code>>>> matrix = [[0] * num_cols] * num_rows
>>> matrix[i][j] = 'value' # row i, column j, value 'value'
>>> print repr(matrix[i][j])
'value'
</code></pre>
<p>Alternatively, if you’re going to be dealing with sparse matrices (i.e. matrices with a lot of empty or zero values), it might be more efficient to use nested dictionaries. In this case, you could implement setter and getter functions which will operate on a matrix, like so:</p>
<pre><code>def get_element(mat, i, j, default=None):
# This will also set the accessed row to a dictionary.
row = mat.setdefault(i, {})
return row.setdefault(j, default)
def set_element(mat, i, j, value):
row = mat.setdefault(i, {})
row[j] = value
</code></pre>
<p>And then you would use them like this:</p>
<pre><code>>>> matrix = {}
>>> set_element(matrix, 2, 3, 'value') # row 2, column 3, value 'value'
>>> print matrix
{2: {3: 'value'}}
>>> print repr(get_element(matrix, 2, 3))
'value'
</code></pre>
<p>If you wanted, you could implement a <code>Matrix</code> class which implemented these methods, but that might be overkill:</p>
<pre><code>class Matrix(object):
def __init__(self, initmat=None, default=0):
if initmat is None: initmat = {}
self._mat = initmat
self._default = default
def __getitem__(self, pos):
i, j = pos
return self._mat.setdefault(i, {}).setdefault(j, self._default)
def __setitem__(self, pos, value):
i, j = pos
self._mat.setdefault(i, {})[j] = value
def __repr__(self):
return 'Matrix(%r, %r)' % (self._mat, self._default)
>>> m = Matrix()
>>> m[2,3] = 'value'
>>> print m[2,3]
'value'
>>> m
Matrix({2: {3: 'value'}}, 0)
</code></pre>
http://stackoverflow.com/questions/667850/simple-recursion-problem/669677#6696770Answer by zvoase for Simple recursion problemzvoase2009-03-21T18:02:47Z2009-03-21T18:02:47Z<p>Here's a recursive combination function using Ruby <code>yield</code> statements:</p>
<pre><code>def combinations(values, n)
if n.zero?
yield []
else
combinations(values, n - 1) do |combo_tail|
values.each do |value|
yield [value] + combo_tail
end
end
end
end
</code></pre>
<p>And you could use regular expressions to parse out three heads in a row:</p>
<pre><code>def three_heads_in_a_row(s)
([/hhh../, /.hhh./, /..hhh/].collect {|pat| pat.match(s)}).any?
end
</code></pre>
<p>Finally, you would get the answer using something like this:</p>
<pre><code>total_count = 0
filter_count = 0
combinations(["h", "t"], 5) do |combo|
count += 1
unless three_heads_in_a_row(combo.join)
filter_count += 1
end
end
puts "TOTAL: #{ total_count }"
puts "FILTERED: #{ filter_count }"
</code></pre>
<p>So that's how I would do it :)</p>
http://stackoverflow.com/questions/648156/backslashes-in-single-quoted-strings-vs-double-quoted-strings-in-ruby/648187#6481875Answer by zvoase for Backslashes in Single quoted strings vs. Double quoted strings in Ruby?zvoase2009-03-15T17:29:38Z2009-03-15T17:29:38Z<p>I'd refer you to <a href="http://en.wikibooks.org/wiki/Ruby%5FProgramming/Strings#Single%5Fquotes" rel="nofollow">this page</a> for a very concise yet comprehensive overview of the differences.</p>
http://stackoverflow.com/questions/647813/socket-trouble-in-python/647865#6478651Answer by zvoase for socket trouble in pythonzvoase2009-03-15T14:12:31Z2009-03-15T14:12:31Z<p>There are two much simpler ways I can think of in which you can solve this. Both involve some changes in the behaviors of both the client and the server.</p>
<p>The first is to use padding. Let's say you're sending a file. What you would do is read the file, encode this into a simpler format like Base64, then send enough space characters to fill up the rest of the 4096-byte 'chunk'. What you would do is something like this:</p>
<pre><code>from cStringIO import StringIO
import base64
import socket
import sys
CHUNK_SIZE = 4096 # bytes
# Extract the socket data from the file arguments
filename = sys.argv[1]
host = sys.argv[2]
port = int(sys.argv[3])
# Make the socket
sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
sock.connect((host,port))
# Prepare the message to send
send_str = "send %s" % (filename,)
end_str = "end %s" % (filename,)
data = open(filename).read()
encoded_data = base64.b64encode(data)
encoded_fp = StringIO(encoded_data)
sock.send(send_str + '\n')
chunk = encoded_fp.read(CHUNK_SIZE)
while chunk:
sock.send(chunk)
if len(chunk) < CHUNK_SIZE:
sock.send(' ' * (CHUNK_SIZE - len(chunk)))
chunk = encoded_fp.read(CHUNK_SIZE)
sock.send('\n' + end_str + '\n')
</code></pre>
<p>This example seems a little more involved, but it will ensure that the server can keep reading data in 4096-byte chunks, and all it has to do is Base64-decode the data on the other end (a C library for which is available <a href="http://libb64.sourceforge.net/" rel="nofollow">here</a>. The Base64 decoder ignores the extra spaces, and the format can handle both binary and text files (what would happen, for example, if a file contained the "end filename" line? It would confuse the server).</p>
<p>The other approach is to prefix the sending of the file with the file's length. So for example, instead of sending <code>send filename</code> you might say <code>send 4192 filename</code> to specify that the length of the file is 4192 bytes. The client would have to build the <code>send_str</code> based on the length of the file (as read into the <code>data</code> variable in the code above), and would not need to use Base64 encoding as the server would not try to interpret any <code>end filename</code> syntax appearing in the body of the sent file. This is what happens in HTTP; the <code>Content-length</code> HTTP header is used to specify how long the sent data is. An example client might look like this:</p>
<pre><code>import socket
import sys
# Extract the socket data from the file arguments
filename = sys.argv[1]
host = sys.argv[2]
port = int(sys.argv[3])
# Make the socket
sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
sock.connect((host,port))
# Prepare the message to send
data = open(filename).read()
send_str = "send %d %s" % (len(data), filename)
end_str = "end %s" % (filename,)
sock.send(send_str + '\n')
sock.send(data)
sock.send('\n' + end_str + '\n')
</code></pre>
<p>Either way, you're going to have to make changes to both the server and the client. In the end it would probably be easier to implement a rudimentary HTTP server (or to get one which has already been implemented) in C, as it seems that's what you're doing here. The encoding/padding solution is quick but creates a lot of redundantly-sent data (as Base64 typically causes a 33% increase in the quantity of data sent), the length prefix solution is also easy from the client side but may be more difficult on the server.</p>
http://stackoverflow.com/questions/487086/run-a-ruby-library-from-the-command-line5Run a Ruby library from the command-linezvoase2009-01-28T10:04:37Z2009-01-28T10:20:38Z
<p>Hi y'all. I've just learned the basics of Ruby after being very happy with Python for several years (I'm still using Python for some things), but I'd like to know if there's an idiom or hack to solve this particular problem.</p>
<p>I have a Ruby script which I'd like to be able to do <code>require script_name</code> with, but I'd also like to be able to run <code>ruby script_name.rb</code> from the terminal and have it run as a command line script. In Python this would be done by having the following structure at the bottom of the script:</p>
<pre><code>if __name__ == '__main__':
# do something here
</code></pre>
<p>However, I can't seem to find an equivalent in Ruby. Is there a way of detecting whether or not the current script is being run from the command-line? Maybe some <code>Kernel::</code> method or something? Ideally what I'd like is something like this at the bottom of the script:</p>
<pre><code>if from_command_line?
# do something here
end
</code></pre>
http://stackoverflow.com/questions/326497/game-terrain-database-model/326502#3265020Answer by zvoase for Game Terrain Database Modelzvoase2008-11-28T19:35:28Z2008-11-28T19:35:28Z<p>If you want the kind of granularity that you are looking for, then there is no obvious way of doing it.</p>
<p>You could try a 2-dimensional wavelet transform, but that's pretty complex. Something like a Fourier transform would do quite nicely. Plus, you probably wouldn't go about storing the terrain with a one-record-per-piece-of-land way; it makes more sense to have some sort of database field which can store an encoded matrix.</p>
http://stackoverflow.com/questions/298479/what-caching-strategy-would-best-suit-this-problem/298560#2985601Answer by zvoase for What caching strategy would best suit this problem?zvoase2008-11-18T12:04:12Z2008-11-18T12:04:12Z<p>I would recommend one of two strategies:</p>
<ol>
<li>Use <a href="http://www.danga.com/memcached/" rel="nofollow">memcached</a>, the open-source caching daemon. Client libraries are available for several popular languages, and it supports things like scheduled invalidation of cached data, etc.</li>
<li>Include some fields in your database to store cached data, along with a "cache_last_updated" field which updates every time you save a record. Then, when fetching a record from the database, if this field's value is more than 5 minutes old, you can re-cache the data from the RESTful API (you're not using CouchDB are you?) and save this in the database, updating the last-updated timestamp, and then returning this data to the user.</li>
</ol>
<p>I'd recommend the first, because frankly otherwise you'll be making several reads and writes to the database per request, incurring a significant performance cost.</p>
<p>Also, this question could apply to things other than Ruby on Rails - a lot of scenarios involve caching from some external source.</p>
http://stackoverflow.com/questions/277319/what-is-the-most-interesting-bug-you-have-fixed/278730#278730-2Answer by zvoase for What is the most interesting bug you have fixed?zvoase2008-11-10T18:28:56Z2008-11-10T18:28:56Z<p>Once I installed Ubuntu GNU/Linux over MS Windows XP.</p>
http://stackoverflow.com/questions/256625/when-to-use-closure/256663#2566631Answer by zvoase for When to use closure?zvoase2008-11-02T08:29:26Z2008-11-02T08:29:26Z<p>The most simple example of using closures is in something called currying. Basically, let's assume we have a function <code>f()</code> which, when called with two arguments <code>a</code> and <code>b</code>, adds them together. So, in Python, we have:</p>
<pre><code>def f(a, b):
return a + b
</code></pre>
<p>But let's say, for the sake of argument, that we only want to call <code>f()</code> with one argument at a time. So, instead of <code>f(2, 3)</code>, we want <code>f(2)(3)</code>. This can be done like so:</p>
<pre><code>def f(a):
def g(b): # Function-within-a-function
return a + b # The value of a is present in the scope of g()
return g # f() returns a one-argument function g()
</code></pre>
<p>Now, when we call <code>f(2)</code>, we get a new function, <code>g()</code>; this new function carries with it variables from the <em>scope</em> of <code>f()</code>, and so it is said to <em>close over</em> those variables, hence the term closure. When we call <code>g(3)</code>, the variable <code>a</code> (which is bound by the definition of <code>f</code>) is accessed by <code>g()</code>, returning <code>2 + 3 => 5</code></p>
<p>This is useful in several scenarios. For example, if I had a function which accepted a large number of arguments, but only a few of them were useful to me, I could write a generic function like so:</p>
<pre><code>def many_arguments(a, b, c, d, e, f, g, h, i):
return # SOMETHING
def curry(function, **curry_args):
# call is a closure which closes over the environment of curry.
def call(*call_args):
# Call the function with both the curry args and the call args, returning
# the result.
return function(*call_args, **curry_args)
# Return the closure.
return call
useful_function = curry(many_arguments, a=1, b=2, c=3, d=4, e=5, f=6)
</code></pre>
<p><code>useful_function</code> is now a function which only needs 3 arguments, instead of 9. I avoid having to repeat myself, and also have created a <em>generic</em> solution; if I write another many-argument function, I can use the <code>curry</code> tool again.</p>
http://stackoverflow.com/questions/232056/is-adding-elements-between-elements-with-jython-and-dom4j-possible/242269#2422691Answer by zvoase for Is adding elements between elements with Jython and dom4j possible?zvoase2008-10-28T04:37:59Z2008-10-28T04:37:59Z<p>I don't know much about dom4j specifically, but I would do it like this:</p>
<ol>
<li>Copy all child nodes of <code>div#content</code> into a list, then delete its children.</li>
<li>Insert the first node back into the <code>div#content</code> node.</li>
<li>Insert the new <code>p</code> node into the <code>div#content</code> node.</li>
<li>Insert the last node back into the <code>div#content</code> node.</li>
</ol>
<p>I don't know what this would be in terms of the DOM, but if nodes are represented as Jythonic objects, then it should be easy to do this.</p>
http://stackoverflow.com/questions/241007/possible-to-integrate-google-appengine-and-google-code-for-continuous-integration/242262#2422622Answer by zvoase for Possible to integrate Google AppEngine and Google Code for continuous integration?zvoase2008-10-28T04:31:13Z2008-10-28T04:31:13Z<p>You'd probably have to have some glue on another computer which monitored SVN commits and deployed a new version for you. Google Code has yet to develop and release an API (which they need to do soon if they're serious about this whole development thing), but GAE can be deployed to with relative automated ease, so I wouldn't have thought it should be that difficult. The deployment process, however, will vary with each project, so that's something you need to sort out yourself (you might wanna take a look at the <a href="http://www.nongnu.org/fab/" rel="nofollow">fabric</a> deployment system). Then, just set a cron job going which updates a local SVN checkout on the middle machine, and you're done.</p>
http://stackoverflow.com/questions/241503/reading-collections-of-extended-elements-in-an-rss-feed-with-universal-feed-parse/242254#2422542Answer by zvoase for Reading collections of extended elements in an RSS feed with Universal Feed Parserzvoase2008-10-28T04:23:48Z2008-10-28T04:23:48Z<p>Universal Feed Parser is really nice for most feeds, but for extended feeds, you might wanna try something called <a href="http://crummy.com/software/BeautifulSoup" rel="nofollow">BeautifulSoup</a>. It's an XML/HTML/XHTML parsing library which is originally designed for screenscraping; turns out it's also brilliant for this sort of thing. The documentation is pretty good, and it's got a self-explanatory API, so if you're thinking of using anything else, that's what I'd recommend.</p>
<p>I'd probably use it like this:</p>
<pre><code>>>> import BeautifulSoup
>>> import urllib2
# Fetch HTML data from url
>>> connection = urllib2.urlopen('http://kuler.adobe.com/path/to/rss.xml')
>>> html_data = connection.read()
>>> connection.close()
# Create and search the soup
>>> soup = BeautifulSoup.BeautifulSoup(html_data)
>>> themes = soup.findAll('kuler:themeitem') # Note: all lower-case element names
# Get the ID of the first theme
>>> themes[0].find('kuler:themeid').contents[0]
u'123456'
# Get an ordered list of the hex colors for the first theme
>>> themeswatches = themes[0].find('kuler:themeswatches')
>>> colors = [color.contents[0] for color in
... themeswatches.findAll('kuler:swatchhexcolor')]
>>> colors
[u'FFFFFF', u'000000']
</code></pre>
<p>So you can probably get the idea that this is a very cool library. It wouldn't be too good if you were parsing any old RSS feed, but because the data is from Adobe Kuler, you can be pretty sure that it's not going to vary enough to break your app (i.e. it's a trusted enough source).</p>
<p>Even worse is trying to parse Adobe's goddamn .ASE format. I tried writing a parser for it and it got really horrible, really quickly. Ug. So, yeah, the RSS feeds are probably the easiest way of interfacing with Kuler.</p>
http://stackoverflow.com/questions/241327/python-snippet-to-remove-c-and-c-comments/242226#2422263Answer by zvoase for Python snippet to remove C and C++ commentszvoase2008-10-28T04:03:20Z2008-10-28T04:03:20Z<p>I don't know if you're familiar with <code>sed</code>, the UNIX-based (but Windows-available) text parsing program, but I've found a sed script <a href="http://sed.sourceforge.net/grabbag/scripts/remccoms3.sed" rel="nofollow">here</a> which will remove C/C++ comments from a file. It's very smart; for example, it will ignore '//' and '/*' if found in a string declaration, etc. From within Python, it can be used using the following code:</p>
<pre><code>import subprocess
from cStringIO import StringIO
input = StringIO(source_code) # source_code is a string with the source code.
output = StringIO()
process = subprocess.Popen(['sed', '/path/to/remccoms3.sed'],
input=input, output=output)
return_code = process.wait()
stripped_code = output.getvalue()
</code></pre>
<p>In this program, <code>source_code</code> is the variable holding the C/C++ source code, and eventually <code>stripped_code</code> will hold C/C++ code with the comments removed. Of course, if you have the file on disk, you could have the <code>input</code> and <code>output</code> variables be file handles pointing to those files (<code>input</code> in read-mode, <code>output</code> in write-mode). <code>remccoms3.sed</code> is the file from the above link, and it should be saved in a readable location on disk. <code>sed</code> is also available on Windows, and comes installed by default on most GNU/Linux distros and Mac OS X.</p>
<p>This will probably be better than a pure Python solution; no need to reinvent the wheel.</p>
http://stackoverflow.com/questions/242065/python-leopard-fink-mac-ports-python-org-idiot-broken-python-fresh/242159#2421594Answer by zvoase for Python + Leopard + Fink + Mac Ports + Python.org + Idiot = broken Python - fresh start?zvoase2008-10-28T03:28:57Z2008-10-28T03:28:57Z<p>I had this problem so much when I first got my Mac. The best solution I found was to delete everything I'd installed and just go with the <a href="http://pythonmac.org" rel="nofollow">pythonmac.org</a> version of Python (2.6). I then installed setuptools from the same site, and then used easy_install to install every other package.</p>
<p>Oh, and I got the GNU C Compiler from the Xcode developer tools CD (which you can download from Apple's website), so that I can compile C extensions.</p>
http://stackoverflow.com/questions/241533/i-want-a-program-that-writes-every-possible-combination-to-a-different-line-of-a/242141#2421410Answer by zvoase for I want a program that writes every possible combination to a different line of a text file.zvoase2008-10-28T03:22:09Z2008-10-28T03:22:09Z<p>A naïve solution which solves the problem and is general enough for any application you might have is this:</p>
<pre><code>def combinations(words, length):
if length == 0:
return []
result = [[word] for word in words]
while length > 1:
new_result = []
for combo in result:
new_result.extend(combo + [word] for word in words)
result = new_result[:]
length -= 1
return result
</code></pre>
<p>Basically, this gradually builds up a tree in memory of all the combinations, and then returns them. It is memory-intensive, however, and so is impractical for large-scale combinations.</p>
<p>Another solution for the problem is, indeed, to use counting, but then to transform the numbers generated into a list of words from the wordlist. To do so, we first need a function (called <code>number_to_list()</code>):</p>
<pre><code>def number_to_list(number, words):
list_out = []
while number:
list_out = [number % len(words)] + list_out
number = number // len(words)
return [words[n] for n in list_out]
</code></pre>
<p>This is, in fact, a system for converting decimal numbers to other bases. We then write the counting function; this is relatively simple, and will make up the core of the application:</p>
<pre><code>def combinations(words, length):
numbers = xrange(len(words)**length)
for number in numbers:
combo = number_to_list(number, words)
if len(combo) < length:
combo = [words[0]] * (length - len(combo)) + combo
yield combo
</code></pre>
<p>This is a Python generator; making it a generator allows it to use up less RAM. There is a little work to be done after turning the number into a list of words; this is because these lists will need padding so that they are at the requested length. It would be used like this:</p>
<pre><code>>>> list(combinations('01', 3))
[['0', '0', '0'], ['0', '0', '1'],
['0', '1', '0'], ['0', '1', '1'],
['1', '0', '0'], ['1', '0', '1'],
['1', '1', '0'], ['1', '1', '1']]
</code></pre>
<p>As you can see, you get back a list of lists. Each of these sub-lists contains a sequence of the original words; you might then do something like <code>map(''.join, list(combinations('01', 3)))</code> to retrieve the following result:</p>
<pre><code>['000', '001', '010', '011', '100', '101', '110', '111']
</code></pre>
<p>You could then write this to disk; a better idea, however, would be to use the built-in optimizations that generators have and do something like this:</p>
<pre><code>fileout = open('filename.txt', 'w')
fileout.writelines(
''.join(combo) for combo in combinations('01', 3))
fileout.close()
</code></pre>
<p>This will only use as much RAM as necessary (enough to store one combination). I hope this helps.</p>
http://stackoverflow.com/questions/165767/does-common-lisp-have-a-something-like-javas-set-interface-implementing-classes/238789#2387890Answer by zvoase for Does Common Lisp have a something like java's Set Interface/implementing classes?zvoase2008-10-26T23:27:35Z2008-10-26T23:27:35Z<p>Personally, I would just implement a function which takes a list and return a unique set. I've drafted something together which works for me:</p>
<pre><code>(defun make-set (list-in &optional (list-out '()))
(if (endp list-in)
(nreverse list-out)
(make-set
(cdr list-in)
(adjoin (car list-in) list-out :test 'equal))))
</code></pre>
<p>Basically, the <code>adjoin</code> function prepends an item to a list non-destructively if and only if the item is not already present in the list, accepting an optional test function (one of the Common Lisp "equal" functions). You can also use <code>pushnew</code> to do so destructively, but I find the tail-recursive implementation to be far more elegant. So, Lisp does export several basic functions that allow you to use a list as a set; no built-in datatype is needed because you can just use different functions for prepending things to a list.</p>
<p>My data source for all of this (not the function, but the info) has been a combination of the <a href="http://www.lispworks.com/documentation/common-lisp.html" rel="nofollow">Common Lisp HyperSpec</a> and <a href="http://www.cs.cmu.edu/Groups/AI/html/cltl/cltl2.html" rel="nofollow">Common Lisp the Language (2nd Edition)</a>.</p>
http://stackoverflow.com/questions/234590/solving-the-shared-server-security-problem-for-python/238564#2385642Answer by zvoase for Solving the shared-server security problem for Pythonzvoase2008-10-26T20:25:54Z2008-10-26T20:25:54Z<p>Well, there is a system called <a href="http://pypi.python.org/pypi/virtualenv" rel="nofollow">virtualenv</a> which allows you to run Python in a sort of safe environment, and configure/load/shutdown these environments on the fly. I don't know much about it, but you should take a serious look into it; here is the description from its web page (just Google it and you'll find it):</p>
<blockquote>
<p>The basic problem being addressed is one of dependencies and versions, and indirectly permissions. Imagine you have an application that needs version 1 of LibFoo, but another application requires version 2. How can you use both these applications? If you install everything into /usr/lib/python2.4/site-packages (or whatever your platform's standard location is), it's easy to end up in a situation where you unintentionally upgrade an application that shouldn't be upgraded.</p>
<p>Or more generally, what if you want to install an application and leave it be? If an application works, any change in its libraries or the versions of those libraries can break the application.</p>
<p>Also, what if you can't install packages into the global site-packages directory? For instance, on a shared host.</p>
<p>In all these cases, virtualenv can help you. It creates an environment that has its own installation directories, that doesn't share libraries with other virtualenv environments (and optionally doesn't use the globally installed libraries either).</p>
</blockquote>
http://stackoverflow.com/questions/234721/what-are-the-biggest-differences-between-python-and-ruby-from-a-philosophical-per/238560#23856013Answer by zvoase for What are the biggest differences between Python and Ruby from a philosophical perspectivezvoase2008-10-26T20:21:53Z2008-10-26T20:21:53Z<p>Well, if you really want to know, I'd consult a book called "On Lisp" by Paul Graham, which is available free as a PDF <a href="http://lib.store.yahoo.net/lib/paulgraham/onlisp.pdf" rel="nofollow">here</a>. Basically, he explains the differences between Lisp and Fortran (the oldest two languages still in use today). I know this may sound irrelevant, but there is a good argument here.</p>
<h2>Python</h2>
<p>Python is modeled after the Fortran line; there is a clear distinction between expressions and statements, and between code and data. Sure, you can pass functions around like objects, but you can't go inside and change them. This makes it faster, and better suited to top-down programming. It is a lot easier to learn, and to understand when reading it. The philosophy of "there's only one way to do it" means there is no mystery; Ruby and Lisp are full of "tricks" which you can stumble upon by luck, and there is a lot of magic that Ruby employs; Python is explicit in everything. Passing <code>self</code> is no more irritating than having to wrap all of the attributes on your classes with an accessor function.</p>
<p>Whilst it might be faster initially, this does <em>not</em> mean that it is always faster. It's easier to write fast compilers for Python/Fortran/that-sort-of-thing, but you can write super-fast compilers for the Lispier languages too; it's just harder. Ruby have yet to perfect it; I think they're working on it though.</p>
<h2>Ruby</h2>
<p>Ruby is modeled after Lisp; there is no difference between expressions and statements, and code and data. The most striking commonality is how similar Ruby's blocks are to Lisp's closures. This makes it easier to do metaprogramming (i.e. creating new languages) to solve problems, and so it is more suited to bottom-up programming. At first, it can be slower to run (Ruby's performance right now is atrocious compared to Python), but the Ruby community are working on a virtual machine with some JIT compilation that should bring it up to speed with the other languages.</p>
<p>The thing that Ruby has lost, however, is Lisp's main "love it or hate it" feature: its syntax. Whilst some might argue that the excessive parentheses are annoying, they can be very powerful once you get used to them; Lisp's macros, for example, cannot easily be transferred to Ruby. In this way, Ruby takes some of the concepts of Lisp and applies them
to a Fortran-like (well, Algol-like) syntax, and so it does lose some of the power of Lisp. It also makes it even <em>more</em> difficult to read than Python, because the Ruby people have their own little syntax annoyances.</p>
<h2>Conclusion</h2>
<p>To conclude, I think that Python and Lisp make a good combination (in fact, it's the combo I use). Ruby is just too much of a mixture of methodologies; it will advance at some point in the future, but until it does, it's not a good idea to start learning it; it will take you at least 1-2 years to become proficient, whereas Python will take you a few months only. Those who have a lot of experience with Ruby should stick with it; it's not a good idea to start throwing things out the window.</p>
<p>Anyways, all programming languages are equivalent, so it doesn't really matter. The more you learn, the better: it means you can talk about several approaches, weigh them up, and choose the best one for the job.</p>
http://stackoverflow.com/questions/234512/splitting-strings-in-python/238476#2384760Answer by zvoase for Splitting strings in pythonzvoase2008-10-26T19:17:49Z2008-10-26T19:17:49Z<p>Well, I've encountered this problem quite a few times, which led me to write my own system for parsing any kind of syntax.</p>
<p>The result of this can be found <a href="http://gist.github.com/19929" rel="nofollow">here</a>; note that this may be overkill, and it will provide you with something that lets you parse statements with both brackets and parentheses, single and double quotes, as nested as you want. For example, you could parse something like this (example written in Common Lisp):</p>
<pre><code>(defun hello_world (&optional (text "Hello, World!"))
(format t text))
</code></pre>
<p>You can use nesting, brackets (square) and parentheses (round), single- and double-quoted strings, and it's very extensible.</p>
<p>The idea is basically a configurable implementation of a Finite State Machine which builds up an abstract syntax tree character-by-character. I recommend you look at the source code (see link above), so that you can get an idea of how to do it. It's capable via regular expressions, but try writing a system using REs and then trying to extend it (or even understand it) later.</p>
http://stackoverflow.com/questions/533125/how-to-integrate-django-and-cygwinComment by zvoase on How to integrate Django and Cygwin?zvoase2009-02-10T20:03:24Z2009-02-10T20:03:24ZDo you mind me being a bit cheeky? Why are you running Python from cygwin? You don't need to; you can just run Python/Django natively under Windows. You probably have a good reason for this, so...sorry.http://stackoverflow.com/questions/292893/cause-of-a-memory-leak-in-c-when-using-the-boehm-gcComment by zvoase on Cause of a memory leak in C++ when using the Boehm GCzvoase2008-11-15T19:58:03Z2008-11-15T19:58:03ZI don't know much about C++, but isn't there supposed to be a return type specifier before <code>AlInt::Alint(int val) {</code>?http://stackoverflow.com/questions/234721/what-are-the-biggest-differences-between-python-and-ruby-from-a-philosophical-per/238560#238560Comment by zvoase on What are the biggest differences between Python and Ruby from a philosophical perspectivezvoase2008-10-28T14:10:27Z2008-10-28T14:10:27ZThere are a few ways of doing things, but it is said that there is only one <i>obvious</i> way to do it. Often this also means there is only one <i>conventional</i> way; but yes, there are several ways (though you should stick to one).