active questions tagged python+ruby - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T00:37:23Z http://stackoverflow.com/feeds/tag/python+ruby http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/59115/a-good-ruby-book-that-resembles-dive-into-python 7 A good Ruby book (that resembles Dive into Python) Bartosz Radaczyński 2008-09-12T14:23:39Z 2009-12-15T18:12:02Z <p>Anyone came across something like <em>Dive Into Python</em> for Ruby? Something that:</p> <ol> <li>Gets the language knowledge across by examples of real code that does something useful not just trivial one-liners</li> <li>Is ment for experienced programmers, not newbies (i.e. does not explain obvious stuff like object-orientation and what is a instance vs. class variable)</li> <li>starts with simple stuff and continues onto the really Ruby cutting-edge features like metaprogramming etc.</li> <li>Is fun to read</li> </ol> <p>Please do <strong>not</strong> answer <strong><em>"pickaxe"</em></strong>, since this is clearly nothing like Dive...</p> http://stackoverflow.com/questions/1904454/best-dynamic-languages-for-opengl-general-graphics 1 Best dynamic languages for OpenGL/general graphics Rock and or Roll 2009-12-15T00:17:14Z 2009-12-15T06:21:37Z <p>Which are the most mature and well supported solutions for writing graphical programs?</p> <p>I have been using C++ with OpenGL/GLUT, but would like to try a more flexible and expressive approach.</p> <p>Ruby and Processing? Python and OGRE? What things have worked well for you?</p> http://stackoverflow.com/questions/1900327/compile-a-string-to-ruby-bytecode-for-better-performance-like-compile-in-pyt 2 Compile a string to Ruby bytecode for better performance -- like compile() in Python jhs 2009-12-14T11:19:25Z 2009-12-14T14:54:56Z <p>I have a string (authenticated, trusted, etc.) containing source code intended to run within a Ruby loop, quickly. In Python, I would compile the string into an abstract syntax tree and <code>eval()</code> or <code>exec()</code> it later:</p> <pre><code># Python 3 example given_code = 'n % 2 == 1' pred = compile(given_code, '&lt;given&gt;', 'eval') print("Passed:", [n for n in range(10) if eval(pred)]) # Outputs: Passing members: [1, 3, 5, 7, 9] </code></pre> <p>Ruby does not have a compile function, so what is the best way to achieve this?</p> http://stackoverflow.com/questions/1897465/orm-library-for-automatically-mapping-foreign-keys-in-python-or-ruby 1 ORM library for automatically mapping foreign keys in Python or Ruby SamBeran 2009-12-13T19:32:06Z 2009-12-14T11:26:57Z <p>A frequent task I run into at work is writing scripts against pre-existing databases. Sometimes I'm connecting to Oracle, other times it might be MySql or even sql server.</p> <p>What I would like is a tool which would reverse-engineer the database's tables and foreign keys and allow me to write OO-style scripts against the database. This could be in any language really, but python or ruby would be preferred.</p> <p>For example - this is my ideal ruby script: (assuming the manager and employee tables already exist with foreign keys)</p> <pre><code>DB = Database.connect(connect_string) DB.managers.each do |manager| puts manager.name manager.employees.each do |employee| puts employee.name end end </code></pre> <p>Does this type of library exist? If so, it would save me so much time!</p> <p><strong>Edit - the main feature I would like is for it to automatically discover foreign key associations from the database metadata without explicitly mapping them - I have tried ActiveRecord, SQLAlchemy, Sequel, and DataMapper, and from what I can tell, none of them can do this.</strong></p> http://stackoverflow.com/questions/1524606/is-an-applet-a-proper-solution-for-hardware-detection-and-driver-install 0 Is an applet a proper solution for hardware detection and driver install? abrar 2009-10-06T09:45:53Z 2009-12-13T10:04:28Z <p>Can I use applets to inform me which hardware is installed on client system (fingerprint reader)? And if it is installed, can it tell me its version, so that it can download the proper plugin from a site? So that after everything is OK, the user can use his fingerprint reader to authenticate himself?</p> http://stackoverflow.com/questions/1892254/what-are-the-various-popularity-metrics-and-sites-for-programming-languages-such 0 What are the various popularity metrics and sites for programming languages such as Ruby, Python, Java, etc? btelles 2009-12-12T04:11:08Z 2009-12-13T02:47:12Z <p>What are the various sites that offer metrics that compare Ruby, Python, Perl, Smalltalk etc. What are their respective metrics?</p> <p>Do any of them control or account for the time that Rails was introduced, and/or the adoption rates for various languages?</p> <p>Will someone please help me close this question? Clearly it was not a successful venture :-)</p> http://stackoverflow.com/questions/1747772/integration-testing-for-a-wep-app 3 Integration Testing for a Wep App khelll 2009-11-17T09:59:30Z 2009-12-11T14:56:59Z <p>I want to make a full integration testing for a web application. I want to test many things like AJAX, positioning and presence of certain phrases and HTML elements <strong>using several browsers</strong>. I'm seeking a tool to do such automated testing.</p> <p>On the other hand; this is my first time with integration testing, is there any specific recommendations when doing such testing? Any tutorial as well?</p> <p><em>(As a note: My backend code is done using Perl, Python and Django.)</em></p> <p>Thanks! </p> http://stackoverflow.com/questions/382603/when-would-you-use-infinity 11 When would you use Infinity? Chris Lloyd 2008-12-19T23:54:04Z 2009-12-11T03:08:47Z <p>So in Ruby there is a trick to specify infinity:</p> <pre><code>1.0/0 =&gt; Infinity </code></pre> <p>I believe in Python you can do something like this</p> <pre><code>float('inf') </code></pre> <p>These are just examples though, I'm sure most languages have infinity in some capacity. When would you actually use this construct in the real world? Why would using it in a range be better than just using a boolean expression? For instance</p> <pre><code>(0..1.0/0).include?(number) == (number &gt;= 0) # True for all values of number =&gt; true </code></pre> <p>To summarise, what I'm looking for is a real world reason to use Infinity.</p> <p><strong>EDIT</strong>: I'm looking for real world code. It's all well and good to say this is when you "could" use it, when have people <em>actually</em> used it.</p> http://stackoverflow.com/questions/1877244/how-long-should-you-focus-on-a-programming-language 6 How long should you focus on a programming language? Brad Johansen 2009-12-09T22:05:24Z 2009-12-10T11:17:22Z <p>Okay, so I've been doing web design for about a year or two, and I've decided that I want to learn a Programming Language, because I've figured out that's what interest me more.</p> <p>I start out learning Python, got about about 1/4 of the way through Dive into Python, but then decided to go onto Ruby because in the nearer future for now I'm going to be focusing on Web Development.</p> <p>But I decided I want to learn Ruby first, and then learn Python... But I also decided I would like to learn C/C++</p> <p>So my question to you is... How long should I focus completely on a specific language. I'm set on learning Ruby and the other two is but I don't want to go to fast, and not really 'know' it. I'm of a young (High School next school year) age, so I have the time, and the motivation to learn these languages (along with playing baseball), so don't worry about that.</p> <p>So, how long did you spend on a specific language, and do you know any other languages along side that.</p> http://stackoverflow.com/questions/1849376/what-are-the-advantages-and-disadvantages-of-the-require-vs-import-methods-of-lo 7 What are the advantages and disadvantages of the require vs. import methods of loading code? Bob Aman 2009-12-04T20:12:59Z 2009-12-09T18:12:56Z <p>Ruby uses <code>require</code>, Python uses <code>import</code>. They're substantially different models, and while I'm more used to the <code>require</code> model, I can see a few places where I think I like <code>import</code> more. I'm curious what things people find particularly easy — or more interestingly, harder than they should be — with each of these models.</p> <p>In particular, if you were writing a new programming language, how would you design a code-loading mechanism? Which "pros" and "cons" would weigh most heavily on your design choice?</p> http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python 7 Should I learn Ruby or Python? compie 2009-03-23T15:59:29Z 2009-12-09T17:43:05Z <p>I'm a C(++)/C# programmer and I would like to learn a scripting language to create small tools (text processing, build scripts, a little web development, etc). I would like to learn either Ruby or Python. Is there a good reason to chose one over the other? </p> <p>I looked at some sample code in both languages and they seem very similar to me. Maybe I'm missing something here? I also found the following comparisons:</p> <ul> <li><a href="http://blog.ianbicking.org/ruby-python-power.html" rel="nofollow">Ruby, Python, "Power"</a></li> <li><a href="http://johan.kiviniemi.name/blag/ruby-vs-python/" rel="nofollow">Ruby vs. Python</a></li> </ul> <h3>Related</h3> <ul> <li><a href="http://stackoverflow.com/questions/234721/what-are-the-biggest-differences-between-python-and-ruby-from-a-philsophical-pers">What are the biggest differences between Python and Ruby from a philsophical perspective</a></li> <li><p><a href="http://stackoverflow.com/questions/556874/ruby-python-or-perl-closed">Ruby, Python or Perl?</a></p></li> <li><p><a href="http://stackoverflow.com/questions/144661/python-vs-ruby-for-metaprogramming">Python Vs. Ruby for Metaprogramming</a></p></li> <li><p><a href="http://stackoverflow.com/questions/84340/why-learn-perl-python-ruby-if-the-company-is-using-c-c-or-java-as-the-appli">Why learn Perl, Python, Ruby if the company is using C++, C# or Java as the application language?</a></p></li> <li><p><a href="http://stackoverflow.com/questions/143586/which-scripting-language-should-i-learn-after-perl">Which scripting language should I learn after Perl?</a></p></li> <li><p><a href="http://stackoverflow.com/questions/410183/interested-in-collective-programming-for-the-web-ruby-or-python-or-php">Interested in Collective Programming for the web — Ruby or Python or PHP?</a></p></li> <li><p><a href="http://stackoverflow.com/questions/328041/scripting-language-choice-for-initial-performance">Scripting language choice for initial performance</a></p></li> <li><p><a href="http://stackoverflow.com/questions/301493/which-language-is-easiest-and-fastest-to-work-with-xml-content">Which language is easiest and fastest to work with XML content?</a></p></li> </ul> http://stackoverflow.com/questions/1875503/which-is-better-to-learn-python-or-ruby 2 Which is better to learn ? Python or Ruby ? [closed] Steffen 2009-12-09T17:27:38Z 2009-12-09T17:30:44Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python">Should I learn Ruby or Python?</a> </p> </blockquote> <p>I know this question pops up every once in a while, however I believe the answer is very dependent on the person who's asking, so I've "allowed" myself to ask the trivial question: Should I learn Python or Ruby ?</p> <p>Here's a bit of background, which hopefully makes it easier to give me some hints/answers:</p> <p>I'm a C#/ASP.Net developer and work with this on a daily basis, I want to learn either of the two languages in order to:</p> <ul> <li>Be able to develop on non-Windows platforms (Mono is always behind MS .Net)</li> <li>"Expand my horizon" - that is learn new ways of doing things, in order to increase the overall quality of my code.</li> </ul> <p>As for my needs of the language, I need to be able to develop on it in Windows (I don't really want to run a virtual Linux just to develop)</p> <p>I need to be able to create both web- and "forms" applications, this is where I think Ruby may have the edge in the Rails framework for web development, but feel free to prove me wrong :-)</p> <p>And I guess that's pretty much it.</p> <p>Looking forward to hear some inputs :-)</p> http://stackoverflow.com/questions/76420/best-php-ruby-python-e-commerce-solution 8 Best php/ruby/python e-commerce solution Aeon 2008-09-16T20:12:52Z 2009-12-08T20:10:52Z <p>I'm looking for an easy to skin and customize e-commerce package. </p> <p>I've been reading good reviews about <a href="http://magentocommerce.com/" rel="nofollow">Magento</a>, but it seems to have <a href="http://www.htmlist.com/development/magento-ecommerce-review-platform-perils-and-impressions-three-months-in/" rel="nofollow">problems with performance</a>. I've tried <a href="http://oscommerce.com/" rel="nofollow">osCommerce</a> before and found it to be pretty painful to modify, but I hear <a href="http://zencart.com/" rel="nofollow">zenCart</a> is better... but the latest release of zenCart is nearly a year old, so not sure how up to date it is at this point. </p> <p>I tried hosted e-commerce with <a href="http://shopify.com/" rel="nofollow">Shopify</a>, and while very easy to use and template, its customization options are a bit limited (the templating language doesn't even support basic logic operations, which makes it pretty inflexible). </p> <p>I'm almost ready to try writing my own in rails using <a href="http://activemerchant.org/" rel="nofollow">ActiveMerchant</a>, but while that will give me ultimate in customization, it's going to take much longer when I have to reinvent the wheel. </p> <p>I'd be happy with a php, ruby or python based system, I know enough of those languages to be able to customize the system if I need to as long as it's well-organized and documented code. </p> <p>Anybody have experience with something they'd recommend, or conversely, recommend staying away from?</p> http://stackoverflow.com/questions/1863724/reasons-for-this-disparity-in-execution-speed 7 Reasons for this disparity in execution speed? t_scho 2009-12-07T23:57:48Z 2009-12-08T17:35:35Z <p>I wrote a quick Python script to compare two files, each containing unordered hashes, in order to verify that both files are identical aside from order. Then I rewrote it in Ruby for educational purposes.</p> <p>The Python implementation takes seconds, while the Ruby implementation takes around 4 minutes.</p> <p>I have a feeling this is most likely due to my lack of Ruby knowledge, any ideas on what I am doing wrong?</p> <p>Environment is Windows XP x64, Python 2.6, Ruby 1.8.6</p> <p><strong>Python</strong></p> <pre><code>f = open('c:\\file1.txt', 'r') hashes = dict() for line in f.readlines(): if not line in hashes: hashes[line] = 1 else: hashes[line] += 1 print "Done file 1" f.close() f = open('c:\\file2.txt', 'r') for line in f.readlines(): if not line in hashes: print "Hash not found!" else: hashes[line] -= 1 f.close() print "Done file 2" num_errors = 0 for key in hashes.keys(): if hashes[key] != 0: print "Uneven hash count: %s" % key num_errors += 1 print "Total of %d mismatches found" % num_errors </code></pre> <p><strong>Ruby</strong></p> <pre><code>file = File.open("c:\\file1.txt", "r") hashes = {} file.each_line { |line| if hashes.has_key?(line) hashes[line] += 1 else hashes[line] = 1 end } file.close() puts "Done file 1" file = File.open("c:\\file2.txt", "r") file.each_line { |line| if hashes.has_key?(line) hashes[line] -= 1 else puts "Hash not found!" end } file.close() puts "Done file 2" num_errors = 0 hashes.each_key{ |key| if hashes[key] != 0 num_errors += 1 end } puts "Total of #{num_errors} mismatches found" </code></pre> <p><strong>EDIT</strong> To give an idea of scale, each file is pretty big, over 900 000 hashes.</p> <p><strong>PROGRESS</strong></p> <p>Using a nathanvda's suggestions, here is the optimized ruby script:</p> <pre><code>f1 = "c:\\file1.txt" f2 = "c:\\file2.txt" hashes = Hash.new(0) File.open(f1, "r") do |f| while line = f.gets hashes[line] += 1 end end not_founds = 0 File.open(f2, "r") do |f| while line = f.gets if hashes.has_key?(line) hashes[line] -= 1 else not_founds += 1 end end end num_errors = hashes.values.to_a.select { |z| z != 0}.size puts "Total of #{not_founds} lines not found in file2" puts "Total of #{num_errors} mismatches found" </code></pre> <p>On windows with Ruby 1.8.7, the original version took 250 seconds and the optimized version took 223.</p> <p>On a linux VM! running ruby 1.9.1, the original version ran in 81 seconds, about 1/3 the time as windows 1.8.7. Interestingly, the optimized version took longer at 89 seconds. Note that while line = ... was necessary due to memory constraints.</p> <p>On windows with Ruby 1.9.1, the original took 457 seconds and the optimized version took 543.</p> <p>On windows with jRuby, the original took 45 seconds and the optimized version took 43.</p> <p>I am somewhat surprised by the results, I was expecting 1.9.1 to be an improvement over 1.8.7.</p> http://stackoverflow.com/questions/1849638/python-crypt-crypt-in-ruby -1 python crypt.crypt in ruby? hans riesig 2009-12-04T21:04:38Z 2009-12-06T23:34:57Z <p>hi i need this code in ruby I don't know how I write the crypt.crypt method in ruby, any ideas?</p> <p>(I want to simulate the linux comand .htpasswd)</p> <pre><code>import random import crypt letters = 'abcdefghijklmnopqrstuvwxyz' \ 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' \ '0123456789/.' salt = random.choice(letters) + random.choice(letters) password = "bla" print crypt.crypt(password, salt) </code></pre> http://stackoverflow.com/questions/1850640/objective-reasons-for-using-python-or-ruby-for-a-new-rest-web-api 0 Objective reasons for using Python or Ruby for a new REST Web API randombits 2009-12-05T00:55:24Z 2009-12-05T19:35:52Z <p>So this thread is definitely NOT a thread for why Python is better than Ruby or the inverse. Instead, this thread is for objective criticism on why you would pick one over the other to write a RESTful web API that's going to be used by many different clients, (mobile, web browsers, tablets etc).</p> <p>Again, don't compare Ruby on Rails vs Django. This isn't a web app that's dependent on high level frameworks such as RoR or Django. I'd just like to hear why someone might choose one over the other to write a RESTful web API that they had to start tomorrow, completely from scratch and reasons they might go from one to another.</p> <p>For me, syntax and language features are completely superfluous. The both offer an abundant amount of features and certainly both can achieve the same exact end goals. I think if someone flips a coin, it's a good enough reason to use one over the other. I'd just love to see what some of you web service experts who are very passionate about their work respond to why they would use one over the other in a very objective format.</p> http://stackoverflow.com/questions/1113611/what-does-ruby-have-that-python-doesnt-and-vice-versa 69 What does Ruby have that Python doesn't, and vice versa? Lennart Regebro 2009-07-11T12:24:26Z 2009-12-04T11:24:02Z <p>There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, although in fact it does. I also know exactly why I prefer Python, but that's also subjective, and wouldn't help anybody choosing, as they might not have the same tastes in development as I do.</p> <p>It would therefore be interesting to list the differences, objectively. So no "Python's lambdas sucks". Instead explain what Ruby's lambdas can do that Python's can't. No subjectivity. Example code is good!</p> <p>Don't have several differences in one answer, please. And vote up the ones you know are correct, and down those you know are incorrect (or are subjective). Also, differences in syntax is not interesting. We know Python does with indentation what Ruby does with brackets and ends, and that @ is called self in Python.</p> <p>UPDATE: This is now a community wiki, so we can add the big differences here.</p> <h2>Ruby has a class reference in the class body</h2> <p>In Ruby you have a reference to the class (self) already in the class body. In Python you don't have a reference to the class until after the class construction is finished.</p> <p>An example:</p> <pre><code>class Kaka puts self end </code></pre> <p>self in this case is the class, and this code would print out "Kaka". There is no way to print out the class name or in other ways access the class from the class definition body in Python.</p> <h2>All classes are mutable in Ruby</h2> <p>This lets you develop extensions to core classes. Here's an example of a rails extension:</p> <pre><code>class String def starts_with?(other) head = self[0, other.length] head == other end end </code></pre> <h2>Ruby has Perl-like scripting features</h2> <p>Ruby has first class regexps, $-variables, the awk/perl line by line input loop and other features that make it more suited to writing small shell scripts that munge text files or act as glue code for other programs.</p> <h2>Ruby has first class continuations</h2> <p>Thanks to the callcc statement. In Python you can create continuations by various techniques, but there is no support built in to the language.</p> <h2>Ruby has blocks</h2> <p>With the "do" statement you can create a multi-line anonymous function in Ruby, which will be passed in as an argument into the method in front of do, and called from there. In Python you would instead do this either by passing a method or with generators.</p> <p>Ruby:</p> <pre><code>amethod { |here| many=lines+of+code goes(here) } </code></pre> <p>Python:</p> <pre><code>def function(here): many=lines+of+code goes(here) amethod(function) </code></pre> <p>Interestingly, the convenience statement in Ruby for calling a block is called "yield", which in Python will create a generator.</p> <p>Ruby:</p> <pre><code>def themethod yield 5 end themethod do |foo| puts foo end </code></pre> <p>Python:</p> <pre><code>def themethod(): yield 5 for foo in themethod: print foo </code></pre> <p>Although the principles are different, the result is strikingly similar.</p> <h2>Python has built-in generators (which are used like Ruby blocks, as noted above)</h2> <p>Python has support for generators in the language. In Ruby you could use the generator module that uses continuations to create a generator from a block. Or, you could just use a block/proc/lambda! Moreover, in Ruby 1.9 Fibers are, and can be used as, generators.</p> <p><a href="http://docs.python.org/tutorial/classes.html#generators" rel="nofollow">docs.python.org</a> has this generator example:</p> <pre><code>def reverse(data): for index in range(len(data)-1, -1, -1): yield data[index] </code></pre> <p>Contrast this with the above block examples.</p> <h2>Python has flexible name space handling</h2> <p>In Ruby, when you import a file with <code>require</code>, all the things defined in that file will end up in your global namespace. This causes namespace pollution. The solution to that is Rubys modules. But if you create a namespace with a module, then you have to use that namespace to access the contained classes.</p> <p>In Python, the file is a module, and you can import its contained names with <code>from themodule import *</code>, thereby polluting the namespace if you want. But you can also import just selected names with <code>from themodule import aname, another</code> or you can simply <code>import themodule</code> and then access the names with <code>themodule.aname</code>. If you want more levels in your namespace you can have packages, which are directories with modules and an <code>__init__.py</code> file.</p> <h2>Python has docstrings</h2> <p>Docstrings are strings that are attached to modules, functions and methods and can be introspected at runtime. This helps for creating such things as the help command and automatic documentation.</p> <pre><code>def frobnicate(bar): """frobnicate takes a bar and frobnicates it &gt;&gt;&gt; bar = Bar() &gt;&gt;&gt; bar.is_frobnicated() False &gt;&gt;&gt; frobnicate(bar) &gt;&gt;&gt; bar.is_frobnicated() True """ </code></pre> <h2>Python has more libraries</h2> <p>Python has a vast amount of available modules and bindings for libraries. </p> <h2>Python has multiple inheritance</h2> <p>Ruby does not ("on purpose" -- see Ruby's website, <a href="http://codeidol.com/other/rubyckbk/Modules-and-Namespaces/Simulating-Multiple-Inheritance-with-Mixins/" rel="nofollow">see here how it's done in Ruby</a>). It does reuse the module concept as a sort of abstract classes.</p> <h2>Python has list/dict comprehensions</h2> <p>Python:</p> <pre><code>res = [x*x for x in range(1, 10)] </code></pre> <p>Ruby:</p> <pre><code>res = (0..9).map { |x| x * x } </code></pre> <p>Python:</p> <pre><code>&gt;&gt;&gt; (x*x for x in range(10)) &lt;generator object &lt;genexpr&gt; at 0xb7c1ccd4&gt; &gt;&gt;&gt; list(_) [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] </code></pre> <p>Ruby:</p> <pre><code>p = proc { |x| x * x } (0..9).map(&amp;p) </code></pre> <p>Python:</p> <pre><code>&gt;&gt;&gt; {x:str(y*y) for x,y in {1:2, 3:4}.items()} {1: '4', 3: '16'} </code></pre> <p>Ruby:</p> <pre><code>{1 =&gt;2, 3=&gt;4}.inject({}) do |result, key_value| result[key_value[0]] = (key_value[1]** 2).to_s result end </code></pre> <h2>Python has decorators</h2> <p>Things similar to decorators can be created in Ruby, and it can also be argued that they aren't as necessary as in Python.</p> http://stackoverflow.com/questions/1832617/what-algorithm-to-use-to-solve-this-simple-mathematical-problem-efficiently 5 What algorithm to use to solve this simple mathematical problem efficiently? psihodelia 2009-12-02T12:27:57Z 2009-12-03T11:18:39Z <p>I am puzzled with the following simple problem:</p> <p>Given positive integers <code>b, c, m</code> where <code>(b &lt; m) is True</code> it is to find a positive integer <code>e</code> such that</p> <pre><code>(b**e % m == c) is True </code></pre> <p>where ** is exponentiation (e.g. in Ruby, Python or ^ in some other languages) and % is modulo operation. What is the most effective algorithm (with the lowest big-O complexity) to solve it ?</p> <p>Example:<br> Given b=5; c=8; m=13 this algorithm must find e=7 because 5**7%13 = 8</p> <p><em>Thank you in advance!</em></p> http://stackoverflow.com/questions/415627/big-web-2-0-sites-written-in-python 16 Big Web 2.0 sites written in Python? tester2001 2009-01-06T06:27:30Z 2009-12-02T17:39:06Z <p>Hulu, Twitter, Techcrunch, etc are written in Ruby.<br /> Yahoo, Facebook, and tons of big social networks are written in PHP.</p> <p>But what are some big top-name enterprise sites written in Python?</p> <p>I am going to spend my time investing in either Python (w/ Django) or Ruby (w/ Rails) to create a data-intensive web application that has a personalization/recommendation tool (similar to Amazon).</p> <p>Coming from a PHP background (OOP, Zend Framework), which would be best?</p> http://stackoverflow.com/questions/1805148/why-is-pythonruby-interpreted 8 Why is (python|ruby) interpreted? TG103 2009-11-26T18:47:29Z 2009-12-02T00:02:42Z <p>What are the technical reasons why languages like Python and Ruby are interpreted (out of the box) instead of compiled? It seems to me like it should not be too hard for people knowledgeable in this domain to make these languages not be interpreted like they are today, and we would see significant performance gains. So certainly I am missing something. </p> http://stackoverflow.com/questions/89574/which-language-is-most-like-php 1 Which language is most like PHP? Unkwntech 2008-09-18T02:50:18Z 2009-12-01T11:24:06Z <p>I am a PHP dev looking to pickup a new language, I have tried and failed on C++ several times (possibly for my overall lack of interest). I've been hearing a lot about Python, and Ruby and my question is this: Which of these languages (Python, Ruby) should be easiest for someone with a background in PHP to learn?</p> <p>Update (6 months later):</p> <p>I decided at the time of this question to go the Python route, I spent some time learning Python but I didn't really enjoy the language, I eventually moved on to C# which I greatly enjoy, and infact have developed 2 application in C# already and have another 3-5 lined up. I do intend on looking into Ruby when I have some free time, but until then I'll advise anyone else in the position that I was in when this question was asked to skip both Ruby and Python and look into C#. I was a hard-core anti-.net anti-msft and although I still don't like the dependence on .net I do like the design of the language overall.</p> http://stackoverflow.com/questions/1808029/perl-to-python-ruby-code-translator 0 Perl to Python/Ruby code translator Thrawn 2009-11-27T10:45:38Z 2009-11-27T15:41:50Z <p>I was asked to write a Perl-to-Python and Perl-to-Ruby (and vice versa) code translator by an evil boss, and therefore I'm curious to know if some automatic code translators between them exist already. Just by googling it, I found <a href="http://perthon.sourceforge.net/" rel="nofollow">Perthon</a>, plus endless discussions and dead projects trying to do this.</p> <p>In your opinion, is there a standard way for this translation? Apart from having a programmer expert in all languages manually doing the job :-)</p> <p>Thanks!</p> http://stackoverflow.com/questions/1459190/which-out-of-python-ruby-f-is-better-for-learning-as-first-programming-langu 5 Which out of Python, Ruby, F# is better for learning as first programming language with dynamic type system? unknown (google) 2009-09-22T10:08:10Z 2009-11-25T18:36:18Z <p>I am thinking to learn programming language with dynamic type system. </p> <p>Which one should I learn first? </p> <p>Criteria:</p> <ol> <li>I can learn and start programming in a day or two</li> <li>Easy, Concise</li> <li>In few days I should be able to write small scripts for some batch jobs with file systems.</li> </ol> <p>To mention, I am normally a quick learner.</p> http://stackoverflow.com/questions/1794179/python-on-rails -2 Python on Rails? Juanjo Conti 2009-11-25T01:56:10Z 2009-11-25T02:21:22Z <p>Would it be possible to translate the Ruby on Rails code base to Python?</p> <p>I think many people like Python more than Ruby, but find Ruby on Rails features better (as a whole) than the ones in Python web frameworks.</p> <p>So that, would it be possible? Or does Ruby on Rails utilize language-specific features that would be difficult to translate to Python?</p> <p>Thanks,</p> http://stackoverflow.com/questions/1613042/parsing-xml-right-scripting-languages-packages-for-the-job 2 Parsing XML - right scripting languages / packages for the job? nedblorf 2009-10-23T12:13:34Z 2009-11-23T22:16:59Z <p>I know that any language is capable of parsing XML; I'm really just looking for advantages or drawbacks that you may have come across in your own experiences. Perl would be my standard go to here, but I'm open to suggestions.</p> <p>Thanks!</p> <p>UPDATE: I ended up going with XML::Simple which did a nice job, but I have one piece of advice if you plan to use it--research the forcearray option first. I had to rewrite a bunch of statements after learning that it is <em>usually</em> best practice to set forcearray. <a href="http://search.cpan.org/~grantm/XML-Simple-2.18/lib/XML/Simple/FAQ.pod#What%5Fis%5Fthe%5Fforcearray%5Foption%5Fall%5Fabout?" rel="nofollow">This</a> page had the clearest explanation that I could find. Frankly, I'm surprised this isn't the default behavior.</p> http://stackoverflow.com/questions/577824/pyqt-no-such-slot 1 PyQt: No such slot Jason Miesionczek 2009-02-23T14:37:06Z 2009-11-23T19:42:52Z <p>I am starting to learn Qt4 and Python, following along some tutorial i found on the interwebs. I have the following two files:</p> <p>lcdrange.py:</p> <pre><code>from PyQt4 import QtGui, QtCore class LCDRange(QtGui.QWidget): def __init__(self, parent=None): QtGui.QWidget.__init__(self, parent) lcd = QtGui.QLCDNumber(2) self.slider = QtGui.QSlider() self.slider.setRange(0,99) self.slider.setValue(0) self.connect(self.slider, QtCore.SIGNAL('valueChanged(int)'), lcd, QtCore.SLOT('display(int)')) self.connect(self.slider, QtCore.SIGNAL('valueChanged(int)'), self, QtCore.SIGNAL('valueChanged(int)')) layout = QtGui.QVBoxLayout() layout.addWidget(lcd) layout.addWidget(self.slider) self.setLayout(layout) def value(self): self.slider.value() def setValue(self,value): self.slider.setValue(value) </code></pre> <p>main.py:</p> <pre><code>import sys from PyQt4 import QtGui, QtCore from lcdrange import LCDRange class MyWidget(QtGui.QWidget): def __init__(self, parent=None): QtGui.QWidget.__init__(self, parent) quit = QtGui.QPushButton('Quit') quit.setFont(QtGui.QFont('Times', 18, QtGui.QFont.Bold)) self.connect(quit, QtCore.SIGNAL('clicked()'), QtGui.qApp, QtCore.SLOT('quit()')) grid = QtGui.QGridLayout() previousRange = None for row in range(0,3): for column in range(0,3): lcdRange = LCDRange() grid.addWidget(lcdRange, row, column) if not previousRange == None: self.connect(lcdRange, QtCore.SIGNAL('valueChanged(int)'), previousRange, QtCore.SLOT('setValue(int)')) previousRange = lcdRange layout = QtGui.QVBoxLayout() layout.addWidget(quit) layout.addLayout(grid) self.setLayout(layout) app = QtGui.QApplication(sys.argv) widget = MyWidget() widget.show() sys.exit(app.exec_()) </code></pre> <p>When i run this i get the following errors:</p> <pre><code>Object::connect: No such slot LCDRange::setValue(int) Object::connect: No such slot LCDRange::setValue(int) Object::connect: No such slot LCDRange::setValue(int) Object::connect: No such slot LCDRange::setValue(int) Object::connect: No such slot LCDRange::setValue(int) Object::connect: No such slot LCDRange::setValue(int) Object::connect: No such slot LCDRange::setValue(int) Object::connect: No such slot LCDRange::setValue(int) </code></pre> <p>I've read that PyQt slots are nothing more than methods, which i have defined, so what am i doing wrong?</p> <p>I am also learning Qt4 with Ruby which is where this code originates from, i translated it from Ruby to Python. In the Ruby version the LCDRange class is defined as this:</p> <pre><code>class LCDRange &lt; Qt::Widget signals 'valueChanged(int)' slots 'setValue(int)' def initialize(parent = nil) ... </code></pre> <p>So my guess was that i have to somehow declare the existence of the custom slot?</p> http://stackoverflow.com/questions/1772070/python-equivalent-of-rubys-method 0 Python equivalent of ruby's __method__? Noah 2009-11-20T17:30:55Z 2009-11-20T17:44:04Z <p>I want to be able to do this:</p> <pre><code>def asdf(): print __method__ "asdf" </code></pre> <p>Thanks, Noah</p> http://stackoverflow.com/questions/1768749/effective-interpreted-programming-language-for-file-image-manipulation 1 Effective Interpreted Programming Language for File/Image manipulation David Robles 2009-11-20T06:45:23Z 2009-11-20T16:36:42Z <p>I need to make a script to read images from a directory, rename them, resize them to a MAX_HEIGHT, MAX_WIDTH, put a watermark logo and save them in JPG.</p> <p>I was thinking on doing this with an interpreted language, like Ruby, PHP, Perl, Python, or any with the image manipulation capabilities.</p> <p>Which language would you recommend for this? </p> http://stackoverflow.com/questions/91846/rails-or-django-or-something-else 26 Rails or Django? (or something else?) Kyle Cronin 2008-09-18T11:51:22Z 2009-11-18T22:47:04Z <p>I'm interested in learning a web framework. The two big ones, as I gather, are Rails and Django. Which one is better/faster? Is one better designed or more logically consistent than the other? Is there another framework I should look into? How easy is it to set up and administer a Rails or Django server, and how easy is it to find a shared hosting plan?</p> <p>To give a little background, the websites I'm currently used to making are in straight PHP (no framework) and I'd like to be able to manage some of the complexity that comes from feature creep. Outputting HTML with echo becomes a lot less fun the more you have to customize it. In addition, I don't know either Ruby or Python so I'm free to go either way.</p> <p>note: I'm not interested in ASP. I'd like to develop on a Mac and deploy to Linux/FreeBSD and I don't think that ASP fits the bill.</p> <p><hr /></p> <p>To everyone that's replied so far: thank you! Choosing a web framework can be a difficult thing, so I'll try to narrow down what I would like to do.</p> <p>First, I would like to build small, custom sites (hard to call them "apps") that serve data from a database, and optionally an administrative interface to manage everything behind the scenes. As an example, I have a website for my grandmother to showcase her artwork built in PHP. I've spent more time on the backend than the front end to enable her to reorder, relabel, and reprice her artwork as well as upload an image, tag it, and have it scaled and appear on her site.</p> <p>I notice both frameworks generate "scaffolding" that can be used as a rudimentary admin interface; how would they handle non-textual data (like images)?</p> <p>Also, when watching a Rails screencast, there was a casual mention that the framework does some singular/plural translation. This strikes me as quite odd - is this what is referred to as "magic" in Rails? If so, does Django (or any other framework) have a more sensible naming strategy?</p> http://stackoverflow.com/questions/1751949/python-equivalent-of-rubys-stringscanner 1 Python equivalent of ruby's StringScanner? Ian P 2009-11-17T21:31:08Z 2009-11-17T22:33:40Z <p>Is there a python class equivalent to ruby's <a href="http://ruby-doc.org/core/classes/StringScanner.html" rel="nofollow">StringScanner class</a>? I Could hack something together, but i don't want to reinvent the wheel if this already exists.</p>