User Readonly - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T13:01:56Zhttp://stackoverflow.com/feeds/user/4883http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/48176/embedding-a-remote-python-shell-in-an-application2Embedding a remote Python shell in an applicationReadonly2008-09-07T05:21:42Z2009-11-19T17:10:32Z
<p>You can embed the <a href="http://ipython.scipy.org/" rel="nofollow">IPython</a> shell inside of your application so that it launches the shell in the foreground. Is there a way to embed a telnet server in a python app so that you can telnet to a certain port and launch a remote IPython shell? </p>
<p>Any tips for redirecting the input/output streams for IPython or how to hook it up to a telnet server library or recommendations for other libraries that could be used to implement this are much appreciated. </p>
http://stackoverflow.com/questions/55984/what-is-the-difference-between-const-and-readonly61What is the difference between const and readonly?Readonly2008-09-11T08:02:19Z2009-11-15T22:08:09Z
<p>What is the difference between const and readonly and do you use one over the other?</p>
http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature69The single most useful Emacs featureReadonly2008-09-13T06:41:09Z2009-11-14T01:51:46Z
<p>My primary editor is Emacs, but my usage habits and knowledge of features has barely changed over the last few years. </p>
<p>What are the Emacs features that you use on a daily basis? Are there any little-known Emacs features that you find very useful?</p>
<p>Edit: Made this into the recommended poll format...please put one feature per answer from now on.</p>
http://stackoverflow.com/questions/439828/where-do-rspec-tests-for-code-under-lib-go1Where do rspec tests for code under lib/ go?Readonly2009-01-13T17:01:57Z2009-11-11T22:01:53Z
<p>I've got some code in the lib/ directory that don't really belong under controls, models or helpers. I'd like to write some rspec tests for this code, but am not sure where they should go under the spec/ directory. Is there a convention that's commonly followed?</p>
http://stackoverflow.com/questions/48211/free-python-decompiler-that-is-not-an-online-service10Free python decompiler that is not an online service?Readonly2008-09-07T06:54:54Z2009-11-05T15:57:24Z
<p>Is there a library or app that can decompile Python 2.4+ bytecode to obtain the source code?</p>
<p>A search revealed:</p>
<ul>
<li><a href="http://depython.net" rel="nofollow">http://depython.net</a> - an online service that you need to upload a pyc or pyo file to</li>
<li>the <a href="http://docs.python.org/lib/module-dis.html" rel="nofollow">dis module</a> - allows you to disassemble, but not decompile bytecode</li>
<li><a href="http://users.cs.cf.ac.uk/J.P.Giddy/python/decompiler/decompiler.html" rel="nofollow">decompile.py</a> - works only for 1.5.2 or 2.0</li>
<li>decompyle - an decompiling online service that you need to pay for and upload your pyc to</li>
</ul>
http://stackoverflow.com/questions/68477/send-file-using-post-from-a-python-script5Send file using POST from a Python scriptReadonly2008-09-16T01:16:24Z2009-11-04T23:50:35Z
<p>Is there a way to send a file using POST from a Python script?</p>
http://stackoverflow.com/questions/231647/how-do-i-set-the-socket-timeout-in-ruby3How do I set the socket timeout in Ruby?Readonly2008-10-23T21:44:09Z2009-10-25T03:57:10Z
<p>How do you set the timeout for blocking operations on a Ruby socket?</p>
http://stackoverflow.com/questions/310426/list-comprehension-in-ruby1List comprehension in RubyReadonly2008-11-21T22:27:45Z2009-10-24T01:51:18Z
<p>To do the equivalent of Python list comprehensions, I'm doing the following:</p>
<pre><code>some_array.select{|x| x % 2 == 0 }.collect{|x| x * 3}
</code></pre>
<p>Is there a better way to do this...perhaps with one method call?</p>
http://stackoverflow.com/questions/616037/ruby-coding-style-guidelines7Ruby coding style guidelinesReadonly2009-03-05T18:40:15Z2009-10-22T15:17:34Z
<p>Is there a document for Ruby that describes some preferred conventions for whitespace, indentation and other style issues? </p>
<p>I found Python's <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">PEP 8</a> to be very helpful and am looking for something similar for Ruby.</p>
http://stackoverflow.com/questions/53497/regular-expression-that-matches-valid-ipv6-addresses4Regular expression that matches valid IPv6 addressesReadonly2008-09-10T05:57:24Z2009-10-15T15:01:11Z
<p>I'm having trouble writing a regular expression that matches valid IPv6 addresses, including those in their compressed form (with "::" or leading zeros omitted from each byte pair). </p>
<p>Can someone suggest a regular expression that would fulfill the requirement?</p>
<p>I'm considering expanding each byte pair and matching the result with a simpler regex.</p>
http://stackoverflow.com/questions/698700/escaping-html-in-rails2Escaping HTML in RailsReadonly2009-03-30T19:36:51Z2009-10-15T07:24:13Z
<p>What is the recommended way to escape HTML to prevent XSS vulnerabilities in Rails apps?</p>
<p>Should you allow the user to put any text into the database but escape it when displaying it? Should you add before_save filters to escape the input?</p>
http://stackoverflow.com/questions/56011/single-quotes-vs-double-quotes-in-python22Single quotes vs. double quotes in PythonReadonly2008-09-11T08:18:55Z2009-10-13T13:40:33Z
<p>According to the documentation, they're pretty much interchangeable. Is there a stylistic reason to use one over the other?</p>
http://stackoverflow.com/questions/1540692/how-do-you-add-some-steps-to-a-capistrano-task0How do you add some steps to a capistrano task?Readonly2009-10-08T21:48:58Z2009-10-12T19:57:57Z
<p>I'd like to stop some processes before running the deploy:migrate task. I know that I can redefine the deploy:migrate task by copying the existing code and adding the stop/start steps at the beginning and end of the task. </p>
<p>I'm wondering if there is a way to avoid copying the code from the default deploy:migrate task in my version of the task. Is there a way to refer to the existing deploy:migrate task when defining a new task of the same name? </p>
http://stackoverflow.com/questions/1542128/string-charcodeat-undefined0String.charCodeAt undefined?Readonly2009-10-09T06:32:38Z2009-10-09T06:35:27Z
<p>I get this error in the javascript debug panel when trying to call String.charCodeAt('9') in Safari 3. </p>
<blockquote>
<p>TypeError: Result of expression 'String.charCodeAt' [undefined] is not a function.</p>
</blockquote>
<p>When I try to do stringInstance.charCodeAt('9') instead, I get NaN. Am I doing something wrong? I'd just like to get the char code for some characters to match against keypresses. String.charCodeAt('9') returns 57 (as expected) on Firefox.</p>
http://stackoverflow.com/questions/68282/why-do-you-need-explicitly-have-the-self-argument-into-a-python-method12Why do you need explicitly have the "self" argument into a Python method?Readonly2008-09-16T00:39:55Z2009-10-08T11:35:10Z
<p>When defining a method on a class in Python, it looks something like this:</p>
<pre><code>class MyClass(object):
def __init__(self, x, y):
self.x = x
self.y = y
</code></pre>
<p>But in some other languages, such as C#, you have a reference to the object that the method is bound to with the "this" keyword without declaring it as an argument in the method prototype. </p>
<p>Was this an intentional language design decision in Python or are there some implementation details that require the passing of "self" as an argument?</p>
http://stackoverflow.com/questions/163797/tutorial-for-creating-rails-models-and-scaffolds-with-foreign-key-relationships2Tutorial for creating rails models and scaffolds with foreign key relationshipsReadonly2008-10-02T18:19:26Z2009-10-05T13:17:52Z
<p>Where can I find a good Rails newbie-friendly reference about generating rails models with foreign key relationships? </p>
<p>I've found some pages indicating that you should add has<code>_</code>many and belongs<code>_</code>to to the relevant models to specify these relationships, but haven't seen any instructions for getting the scaffolds to generate the correct controller and view code that would reflect these relationships.</p>
http://stackoverflow.com/questions/1511737/how-do-you-list-the-active-minor-modes-in-emacs1How do you list the active minor modes in emacs?Readonly2009-10-02T20:52:21Z2009-10-02T21:17:22Z
<p>How do you list the active minor modes in emacs?</p>
http://stackoverflow.com/questions/621257/rails-is-it-bad-to-have-an-irreversible-migration3Rails: Is it bad to have an irreversible migration?Readonly2009-03-07T03:34:27Z2009-09-30T18:35:09Z
<p>When is it acceptable to raise an ActiveRecord::IrreversibleMigration exception in the self.down method of a migration? When should you take the effort to actually implement the reverse of the migration?</p>
http://stackoverflow.com/questions/1468432/python-nonetype-and-short-circuiting-and-and-who-knows-what-else/1468473#14684730Answer by Readonly for python: NoneType and short-circuiting "and", and who knows what elseReadonly2009-09-23T20:55:09Z2009-09-23T20:55:09Z<p>If you want to skip None, you can do it this way:</p>
<pre><code>sourcefiles = [x for x in sourcefiles_raw if x and x.name not in ignorefiles]
</code></pre>
http://stackoverflow.com/questions/61151/where-do-the-python-unit-tests-go16Where do the Python unit tests go?Readonly2008-09-14T05:41:11Z2009-09-17T23:21:07Z
<p>If you're writing a library, or an app, where do the unit test files go? </p>
<p>It's nice to separate the test files from the main app code, but it's awkward to put them into a "tests" subdirectory inside of the app root directory, because it makes it harder to import the modules that you'll be testing. </p>
<p>Is there a best practice here?</p>
http://stackoverflow.com/questions/737110/is-double-checked-locking-safe-in-ruby1Is double-checked locking safe in Ruby?Readonly2009-04-10T09:02:08Z2009-09-06T21:22:07Z
<p>This <a href="http://en.wikipedia.org/wiki/Double%5Fchecked%5Flocking%5Fpattern" rel="nofollow">article</a> states that double-checked locking is unsafe on certain language/hardware combinations when a shared variable can be updated with a reference to an object that is only partially initialized. </p>
<p>I was wondering: does this also apply to Ruby? Is this something that varies by the Ruby implementation on the platform that it is run on or is the correct behavior detailed in the language specification?</p>
http://stackoverflow.com/questions/262975/gitosis-setting-repository-config-variables3Gitosis: setting repository config variablesReadonly2008-11-04T19:00:45Z2009-09-01T02:45:43Z
<p>Is there a way to set repository config variables through the gitosis conf instead of going into each repository and editing the conf values directly?</p>
http://stackoverflow.com/questions/125146/long-running-ruby-process-that-uses-activerecord-to-store-records-in-a-database1Long running ruby process that uses ActiveRecord to store records in a databaseReadonly2008-09-24T02:52:05Z2009-08-31T05:10:07Z
<p>I'm trying to write an app using Ruby on Rails and I'm trying to achieve the following:</p>
<blockquote>
<p>The app needs to receive UDP messages coming in on a specific port (possibly 1 or more per second) and store them in the database so that the rest of my Rails app can access it. </p>
</blockquote>
<p>I was thinking of writing a separate daemon that would receive these messages and shell out to a ruby script on my rails app that will store the message in the database using the right model. The problem with this approach is that the ruby script will be run very often. It would be better performance-wise if I could just have a long-running ruby process that can constantly receive the UDP messages store them in the database. </p>
<p>Is this the right way to do it? Is there something in the Rails framework that can help with this?</p>
http://stackoverflow.com/questions/1349047/show-pending-migrations-in-rails2Show pending migrations in railsReadonly2009-08-28T20:00:14Z2009-08-28T20:14:56Z
<p>Is there a rake task that shows the pending migrations in a rails app?</p>
http://stackoverflow.com/questions/244385/php-fork-without-having-child-inherit-the-parents-file-descriptors1PHP fork without having child inherit the parent's file descriptors?Readonly2008-10-28T18:48:58Z2009-08-28T11:41:26Z
<p>I'm trying to run a shell command using the backtick operators, but the fact that the child process inherits php's open file descriptors is problematic. Is there a way to keep this from happening?</p>
<p>I'm running PHP 5.1.2</p>
http://stackoverflow.com/questions/1168845/rspec-stubbing-kernelsleep1RSpec: stubbing Kernel::sleep ?Readonly2009-07-22T23:40:12Z2009-08-20T03:44:20Z
<p>Is there a way to stub Kernel.sleep in an rspec scenario?</p>
http://stackoverflow.com/questions/535270/how-do-you-activerecord-query-caching-at-the-application-level0How do you ActiveRecord query caching at the application level?Readonly2009-02-11T03:07:20Z2009-08-09T15:42:38Z
<p>ActiveRecord query caching is enabled when a controller's action is invoked. I also know that you can do something like this to temporarily enable caching for a given Model for a given code block:</p>
<pre><code>User.cache do
....
end
</code></pre>
<p>But is there a way to enable query caching for other contexts (e.g. when a script is run under the rails environment using ./script/runner)?</p>
http://stackoverflow.com/questions/1224718/keep-log-of-capistrano-deployments1Keep log of capistrano deploymentsReadonly2009-08-03T21:27:34Z2009-08-04T15:06:44Z
<p>Is there a way to keep a log (either local or stored on a remote server) of every time a deployment is done via capistrano? It would be very useful to keep a record of what revision was running at any given time in the past.</p>
<p>I know that the deployment process leaves behind the deployed files for the last 10 deployments in the releases directory, but it would be nice to keep more history and have it accessible in the form of a flat file.</p>
http://stackoverflow.com/questions/1225762/how-to-become-a-freelancer-where-can-i-get-projects-tell-me-a-best-site-for-fre/1225772#12257726Answer by Readonly for How to become a freelancer, Where can i get projects, tell me a best site for freelancer pleaseReadonly2009-08-04T04:44:59Z2009-08-04T04:44:59Z<p>I know some people who have gotten some decent work through oDesk: <a href="http://www.odesk.com/" rel="nofollow">http://www.odesk.com/</a></p>
<p>Description from <a href="http://en.wikipedia.org/wiki/ODesk" rel="nofollow">Wikipedia</a>:</p>
<blockquote>
<p>oDesk allows employers (“buyers”) to create online workteams coordinated and paid through the company's proprietary software and website. Prospective employers can post jobs for free, and freelance workers (“providers”) may create profiles and bid on jobs, also for free. The company puts potential providers through “a rigorous screening.”[6] The company collects 10 percent of the payment. Payments are made through oDesk, which handles many bookkeeping tasks for the transaction. In addition to the marketplace aspect and the payment/bookkeeping services, the company uses collaborative software, “oDesk Team,” that allows employers to see a provider's progress while he or she is billing time. This aspect of the company's business model has drawn criticism.</p>
</blockquote>
http://stackoverflow.com/questions/54867/old-style-and-new-style-classes-in-python13Old style and new style classes in PythonReadonly2008-09-10T18:01:27Z2009-07-30T06:39:53Z
<p>What is the difference between old style and new style classes in Python? Is there ever a reason to use old-style classes these days?</p>
http://stackoverflow.com/questions/182303/what-is-the-best-domain-registrar/182311#182311Comment by Readonly on What is the best Domain Registrar?Readonly2009-10-29T08:48:47Z2009-10-29T08:48:47Z@pcampbell Any news since you used them?http://stackoverflow.com/questions/1540692/how-do-you-add-some-steps-to-a-capistrano-task/1556539#1556539Comment by Readonly on How do you add some steps to a capistrano task?Readonly2009-10-12T21:42:10Z2009-10-12T21:42:10ZThanks, that's exactly what I neededhttp://stackoverflow.com/questions/296971/automatically-stashing/417540#417540Comment by Readonly on Automatically stashingReadonly2009-08-24T03:08:35Z2009-08-24T03:08:35ZThe script seems to work and I can see it being useful if you want to save your working changes without reverting back to HEAD. I'm convinced by Greg's response that we shouldn't rely on this for 'backup' purposes though :)http://stackoverflow.com/questions/787074/ie8-jquery-javascript-error-object-required-bug/1132780#1132780Comment by Readonly on IE8 Jquery Javascript "Error: Object required" BugReadonly2009-07-21T00:36:25Z2009-07-21T00:36:25ZIf you're not trying to run the toshirts() function cited in the question above, you might get a better response if you create a new question and provide specific details about your particular situation.http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/825111#825111Comment by Readonly on The single most useful Emacs featureReadonly2009-05-06T07:19:47Z2009-05-06T07:19:47ZPlease share the code for bp-folgers-crystalyze :)http://stackoverflow.com/questions/296971/automatically-stashingComment by Readonly on Automatically stashingReadonly2009-05-01T19:15:56Z2009-05-01T19:15:56ZThanks - updated the link.http://stackoverflow.com/questions/737110/is-double-checked-locking-safe-in-ruby/743222#743222Comment by Readonly on Is double-checked locking safe in Ruby?Readonly2009-04-16T17:41:32Z2009-04-16T17:41:32ZThat's a good point about the GIL. If only one thread can run at once, I would presume that the GIL would be used to ensure that an object's instantiation and initialization occur as one atomic action. Not sure if this is true, but it sounds like the reasonable design decision. http://stackoverflow.com/questions/737110/is-double-checked-locking-safe-in-ruby/743222#743222Comment by Readonly on Is double-checked locking safe in Ruby?Readonly2009-04-16T17:38:27Z2009-04-16T17:38:27ZThis is almost "completely academic" in nature. I recalled seeing some lazy-initialization of objects shared by multiple threads in some code a while back and asked this question so I could be better informed if I ever come across something like that in the future.http://stackoverflow.com/questions/737110/is-double-checked-locking-safe-in-rubyComment by Readonly on Is double-checked locking safe in Ruby?Readonly2009-04-13T06:11:04Z2009-04-13T06:11:04ZThat's an excellent point. Responses that indicate whether there is a difference between different implementations and platforms would be very informative.http://stackoverflow.com/questions/603577/how-to-tell-which-interface-the-socket-received-the-message-from/607302#607302Comment by Readonly on How to tell which interface the socket received the message from?Readonly2009-03-04T23:31:11Z2009-03-04T23:31:11ZThanks, this is what I was looking for. Too bad it's not supported by the Python socket's module yet--although I did specify libc in this question. :)http://stackoverflow.com/questions/585331/passing-locals-argument-to-partial-rendered-by-linktoremote/585411#585411Comment by Readonly on Passing :locals argument to partial rendered by link_to_remoteReadonly2009-02-26T07:25:10Z2009-02-26T07:25:10ZThanks for clearing that up for me!http://stackoverflow.com/questions/9545/who-in-the-software-world-do-you-admire-the-most/9566#9566Comment by Readonly on Who in the software world do you admire the most?Readonly2009-01-30T19:06:15Z2009-01-30T19:06:15ZI was wondering the same thing :)http://stackoverflow.com/questions/489504/asserts-in-rails-from-models-or-controllers/489549#489549Comment by Readonly on Asserts in Rails from models or controllers?Readonly2009-01-28T23:42:20Z2009-01-28T23:42:20ZAh sorry about that. I've updated the question to be more clear.http://stackoverflow.com/questions/451689/is-it-possible-to-define-a-block-with-optional-arguments-in-ruby/451744#451744Comment by Readonly on Is it possible to define a block with optional arguments in Ruby?Readonly2009-01-16T21:30:23Z2009-01-16T21:30:23ZThanks for pointing that out!http://stackoverflow.com/questions/414025/is-there-a-python-library-than-can-simulate-network-traffic-from-different-addres/414078#414078Comment by Readonly on Is there a Python library than can simulate network traffic from different addressesReadonly2009-01-06T01:54:26Z2009-01-06T01:54:26ZThis is exactly what I was looking for. Thanks!