User mipadi - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T14:20:22Zhttp://stackoverflow.com/feeds/user/28804http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1907565/c-python-different-behaviour-of-the-modulo-operation/1907582#19075820Answer by mipadi for C,Python - different behaviour of the modulo (%) operationmipadi2009-12-15T13:47:57Z2009-12-15T13:47:57Z<p>The correct answer is the one Python gives; unfortunately, C doesn't handle negative modulos.</p>
http://stackoverflow.com/questions/1904319/does-reddit-use-any-type-of-orm/1904331#19043312Answer by mipadi for Does Reddit use any type of ORM?mipadi2009-12-14T23:44:35Z2009-12-15T00:26:28Z<p>Yes. Reddit uses the Pylons framework, and relies on the SQLAlchemy framework for its own ORM layer. However, SQLAlchemy is a fairly low-level ORM library as far as ORMs go, and so Reddit has a fair amount of custom code that makes the ORM stuff work.</p>
http://stackoverflow.com/questions/1897811/are-mailto-links-even-relevant-in-an-age-of-increased-webmail/1897832#18978329Answer by mipadi for Are mailto links even relevant in an age of increased webmail?mipadi2009-12-13T21:29:58Z2009-12-13T21:29:58Z<p>I personally think they're still relevant, since I still use a desktop email client. What alternatives to a <code>mailto</code> link exist? Printing the email address sans an actual <code><a></code> tag is annoying, because then visitors have to copy-paste the email address; and using a form to submit a message is annoying because then there's no record of a sent email.</p>
<p>If a visitor without a configured desktop email client is really concerned about <code>mailto</code> links, he can always install a plugin to handle <code>mailto</code> links with his webmail client.</p>
http://stackoverflow.com/questions/1897037/xcode-cannnot-find-my-plist-file-when-building/1897045#18970451Answer by mipadi for Xcode cannnot find my plist file when buildingmipadi2009-12-13T16:56:55Z2009-12-13T16:56:55Z<blockquote>
<p>I have the wallpaper-info.plist file in my resources directory.</p>
</blockquote>
<p>The error indicates that Xcode is looking for a file called "Wallpaper<em>s</em>-Info.plist". Are you sure you named the file correctly?</p>
http://stackoverflow.com/questions/1897009/the-use-of-and-in-a-call-to-java-with-classpath-declaration/1897013#189701314Answer by mipadi for The use of ":" and "." in a call to java with classpath declaration. mipadi2009-12-13T16:42:28Z2009-12-13T16:42:28Z<p><code>:</code> is the separator for entries in a Java classpath. <code>.</code> means "current directory". So the classpath <code>com/KitJar.jar:.</code> means to look for Java class files in two locations: <code>com/KitJar.jar</code> and the current directory.</p>
http://stackoverflow.com/questions/1884698/replace-macports-dependency-with-other-package/1895098#18950980Answer by mipadi for Replace MacPorts dependency with other packagemipadi2009-12-12T23:53:49Z2009-12-12T23:53:49Z<p>If the <code>-devel</code> port is not offered as a variant, then the only way is to edit the Portfile.</p>
<pre><code>$ sudo port edit $the_port
</code></pre>
<p>will open the specified port in an editor. You can change the dependency from the release port to the <code>-devel</code> port there.</p>
<p>Note that:</p>
<ol>
<li>This may break the port, since it may not work with the <code>-devel</code> version (unlikely, but possible).</li>
<li>Your changes to the Portfile will get reverted anytime you do a <code>port selfupdate</code>. If you don't want to have to "fix" the Portfile each time you update, you may want to set up a <a href="http://guide.macports.org/#development.local-repositories" rel="nofollow">local Portfile repository</a>.</li>
</ol>
http://stackoverflow.com/questions/1876248/textmate-adding-to-a-bundle/1876279#18762792Answer by mipadi for TextMate: Adding to a bundlemipadi2009-12-09T19:35:28Z2009-12-09T19:35:28Z<p>Generally, you should check out a bundle's repo in the global <code>/Library/Application Support/TextMate/Bundles</code> directory; then, if you make any changes, the <em>changes</em> will be stored in <code>~/Library/Application Support/TextMate/Bundles</code>, and you can easily (a) undo changes, or (b) update bundles without conflict.</p>
<p>To be honest, I forget what happens if you check out bundles to <code>~/Library/Application Support/TextMate/Bundles</code> instead; I think your own changes get mixed in with the bundle itself, which can create conflicts when updating.</p>
http://stackoverflow.com/questions/1869015/django-fill-form-from-get-method/1869033#18690330Answer by mipadi for Django: fill form from get methodmipadi2009-12-08T18:45:50Z2009-12-08T18:45:50Z<p>Form objects should descend from <code>django.forms.Form</code>:</p>
<pre><code>from django import forms
class SearchJobForm(forms.Form):
query = forms.CharField()
types = forms.ModelChoiceField()
</code></pre>
http://stackoverflow.com/questions/1868685/why-does-my-python-class-claim-that-i-have-2-arguments-instead-of-1/1868712#18687124Answer by mipadi for Why does my Python class claim that I have 2 arguments instead of 1?mipadi2009-12-08T17:55:48Z2009-12-08T17:55:48Z<p>Because you're not passing the object (generally referred to as <code>self</code>) as the first parameter to your methods. In Python, a call like this:</p>
<pre><code>my_obj.do_something(my_other_obj)
</code></pre>
<p>is essentially desugared into a call like this:</p>
<pre><code>MyClass.do_something(my_obj, my_other_obj)
</code></pre>
<p>Thus, Python is looking for a method signature like this:</p>
<pre><code>class MyClass(object):
def do_something(self, my_other_obj):
self.my_var = my_other_obj
</code></pre>
<p>So you should pass the object (generally called <code>self</code>) as the first parameter to a <em>method</em>.</p>
http://stackoverflow.com/questions/1862423/git-how-to-tell-which-commit-a-tag-points-to/1862542#18625424Answer by mipadi for Git - how to tell which commit a tag points tomipadi2009-12-07T20:07:27Z2009-12-07T20:07:27Z<p>One way to do this would be with <code>git rev-list</code> and <code>head</code>. The following will output the commit to which a tag points:</p>
<pre><code>$ git rev-list $TAG | head -n 1
</code></pre>
<p>You could add it as an alias in <code>~/.gitconfig</code> if you use it a lot:</p>
<pre><code>[alias]
tagcommit = !sh -c 'git rev-list $0 | head -n 1'
</code></pre>
<p>And then call it with:</p>
<pre><code>$ git tagcommit $TAG
</code></pre>
http://stackoverflow.com/questions/1862123/django-1-1-1-how-should-i-store-an-empty-ip-address-using-postgresql/1862264#18622641Answer by mipadi for Django 1.1.1: How should I store an empty IP address using PostgreSQL?mipadi2009-12-07T19:19:30Z2009-12-07T19:19:30Z<p>Have you tried just using <code>blank=True</code> for <code>nexthop</code>, rather than both <code>blank=True</code> and <code>null=True</code>? As noted in the <a href="http://docs.djangoproject.com/en/dev/ref/models/fields/#null" rel="nofollow">Django docs</a>:</p>
<blockquote>
<p>Only use null=True for non-string fields such as integers, booleans and dates.</p>
</blockquote>
http://stackoverflow.com/questions/1860367/xcode-project-details/1860396#18603962Answer by mipadi for XCode Project Details?mipadi2009-12-07T14:43:00Z2009-12-07T14:43:00Z<p>Templates are stored at <code>/Developer/Library/Xcode/File Templates</code>. You can edit those to change the header.</p>
http://stackoverflow.com/questions/1847942/good-people-or-projects-to-follow-in-github/1847983#18479830Answer by mipadi for Good people or projects to follow in github ?mipadi2009-12-04T16:11:35Z2009-12-04T16:11:35Z<p>It depends on what languages you want to learn, or what types of projects you want to examine. I follow 13 people and 48 projects, which are listed <a href="http://github.com/mdippery/following" rel="nofollow">here</a> -- of course, some of the people and projects I follow may not be interesting to <em>you</em>.</p>
http://stackoverflow.com/questions/1844961/how-to-split-objective-c-function-definition/1844994#18449941Answer by mipadi for How to split objective c function definition?mipadi2009-12-04T05:14:24Z2009-12-04T05:14:24Z<p>In typical Objective-C style, methods that span multiple lines are usually aligned by colon to make them more readable:</p>
<pre><code>-(id) initWithBsType:(NSInteger)buysell
AccountCode:(NSString *)c_acc_code
password:(NSString *)password
exchangeCode:(NSString *)ecode
productCode:(NSString *)product
orderType:(NSString *)otype
price:(NSString *)price
qty:(NSString *)qty
reference:(NSString *)ref
enablePriceWarn:(BOOL)enablepw
enableApprvWarn:(BOOL)enableaw
orderValidity:(NSString *)validity;
</code></pre>
http://stackoverflow.com/questions/1842341/django-name-field-is-it-better-to-have-the-whole-name-in-one-field/1842394#18423941Answer by mipadi for Django name field: is it better to have the whole name in one field?mipadi2009-12-03T19:42:39Z2009-12-03T19:42:39Z<p>If you want to query for (or sort by) last names, it's probably better to use three separate fields.</p>
http://stackoverflow.com/questions/1839945/equivalent-of-apt-get-on-different-linux-distros/1839979#18399791Answer by mipadi for equivalent of apt-get on different Linux distrosmipadi2009-12-03T13:52:40Z2009-12-03T13:52:40Z<p>There's quite a few package managers for the even greater variety of distros. Yum is used on Fedora Core and Red Hat, and is similar to Yast. Gentoo uses Portage, which is similar to BSD Ports; software is built from source in that system. Arch Linux uses Pacman, which is <em>kind of</em> a cross between Portage and binary-based package managers like <code>apt-get</code>, Yum, etc. I'm sure there are a few others in use, too.</p>
<blockquote>
<p>And is there a need for this variety?</p>
</blockquote>
<p>Probably not, but if nothing else, Linux loves variety. :) In all seriousness, though, some of the managers serve certain goals. <code>apt-get</code> is fast and easy to use; Portage allows detailed customization of packages, since it builds from source; Pacman is fast, but versatile (it can also build from source, and makes it easy for users to set up their own repos). Strictly speaking, Yum and Yast might not be "needed" since they're similar to <code>apt-get</code> in design and use, but they have a long legacy on their respective systems.</p>
http://stackoverflow.com/questions/1833675/django-admin-has-no-style/1833744#18337440Answer by mipadi for Django admin has no stylemipadi2009-12-02T15:45:53Z2009-12-02T15:45:53Z<p>Depending on your web server setup, you can do it one of two ways:</p>
<h1>Symlinking</h1>
<p>In your website's root folder, you should create a symbolic link to your Django admin media directory, with the name name as the <code>ADMIN_MEDIA_PREFIX</code> in your Django app's settings. By default this is <code>/media/</code>, so in your web root folder, create a symlink called <code>media</code> to <code>/usr/lib/python2.5/site-packages/django/contrib/admin/media</code>. (Note the trailing <code>media</code> on the end of the symlink, which is missing from your own example -- the Django admin media is located in a <code>media</code> subdirectory<code> in </code>contrib/admin`).</p>
<h1>Apache Alias</h1>
<p>If your production server is Apache, and you can change the root configuration, you can use <code>mod_alias</code> to set up the path to Django admin media. Again, assuming that your <code>ADMIN_MEDIA_PREFIX</code> is <code>/media/</code>, you can set up an alias like so:</p>
<pre><code><VirtualHost *:80>
Alias /media/ /usr/local/lib/python2.5/site-packages/django/contrib/admin/media/
</VirtualHost>
</code></pre>
<p>This way, all requests under the path <code>/media/</code> will be resolved to that directory.</p>
<p>A similar technique exists for most other servers, such as Lighttpd or nginx; consult your server's documentation if you don't use Apache.</p>
<p><hr></p>
<p>The solution using Apache's <code>mod_alias</code> is probably best for deployment, but the symlinking approach works just as well too.</p>
<p>The reason your app worked on your staging server is most likely because it was running with Django's internal web server, which can automatically resolve the path to the admin media directory.</p>
http://stackoverflow.com/questions/1833631/what-software-on-a-silverlight-developers-laptop/1833674#18336740Answer by mipadi for what software on a silverlight developer's laptopmipadi2009-12-02T15:35:29Z2009-12-02T15:35:29Z<p>Solitaire, definitely.</p>
http://stackoverflow.com/questions/1833536/how-can-mercurial-be-copyright-and-free-software/1833562#183356217Answer by mipadi for How can Mercurial be Copyright and Free Software?mipadi2009-12-02T15:18:36Z2009-12-02T15:18:36Z<p>All software, even free software, is copyrighted. The free software license just means that the <em>copyright holder</em> is <em>granting you</em> rights to use, modify, and distribute the software under certain specific terms. The reason they are allowed to do this in the first place is because they <em>are</em> the copyright holder and thus get to dictate the usage terms of the software.</p>
<p>In fact, this idea is what was so novel about the GPL in the first place: it used the framework of copyright law to enforce distribution terms for software covered by the license.</p>
http://stackoverflow.com/questions/1833100/is-there-any-build-management-tool-for-mecurial-repository/1833143#18331431Answer by mipadi for Is there any Build management tool for Mecurial Repository?mipadi2009-12-02T14:14:27Z2009-12-02T14:14:27Z<p>The <code>hg archive</code> program can create an archive of your repo's source code (minus all the Mercurial metadata and untracked files). For example, to create a tarball:</p>
<pre><code>$ hg archive --prefix=myproject/ --type=tgz ~/myproject.tgz
</code></pre>
<p>See <code>hg help archive</code> for more information on usage and possible options.</p>
http://stackoverflow.com/questions/1827201/programming-languages-who-inspired-whom/1827304#18273042Answer by mipadi for Programming Languages - Who Inspired Whom?mipadi2009-12-01T16:27:20Z2009-12-01T16:27:20Z<p>This is kind of a hodgepodge of questions, some of them open-ended, but here's a stab at a few of your specific queries:</p>
<blockquote>
<p>So was java inspired from python, or rather what did java do to make OOP popular that python couldn't?</p>
</blockquote>
<p>Simply put, Java followed the C++ model. C++ itself was popular because it was (mostly) backwards compatible with C, <em>the</em> premier systems language of the 70s and 80s, and basically just added OOP capabilities to C. Moving to C++ was an easy transition for C programmers, and moving to Java was a relatively easy transition for C++ programmers. Java followed the style of C++, but did away with some of its oddities (for example, it made primitives the same size on all architectures), and of course ran in a VM which enhanced portability.</p>
<p>Why didn't Python popularize OOP? Because Python was relatively obscure (especially outside of the Unix world) until later in the 1990s, after Java had become popular (which was due at least partly to web applets and the explosion of the World Wide Web in the mid-90s).</p>
<blockquote>
<p>What was the inspiration for Ruby in OOP?</p>
</blockquote>
<p>Ruby's OOP constructs are modeled mostly after those of Smalltalk (whereas C++, and by extension Java, are modeled mostly after Simula-67). That is to say, it focuses on <em>message passing</em>, rather than the binding of methods to class instances.</p>
<blockquote>
<p>Any derivatives of Perl that are popular today?</p>
</blockquote>
<p>Not that I know of (unless Ruby counts as a "derivative", since it's inspired greatly by Perl).</p>
<blockquote>
<p>BASIC and COBOL died a natural death; which languages do you see diminishing in the future?</p>
</blockquote>
<p>Well, COBOL's still around for legacy code. :) But yes, it'd be silly to start a <em>new</em> project from scratch with COBOL.</p>
<p>It's hard to say what other languages may perish. Java? It's not the trendsetter it used to be, and JVM-based languages like Scala are increasing in popularity, but so many people cut their teeth on Java, and there's so much code written in Java, that I can't see it going away anytime soon. C, C++? Nah, they still have their use (I <em>wish</em> C++ would die, but I digress). Perl? Development of Perl, especially Perl 6, is lagging, but like Java, there's <em>so</em> much code written in Perl that it's not going to go away. PHP? Maybe; PHP has mostly been superseded by much better languages like Python, Ruby, or even ASP.NET -- but again, there is <em>so</em> much web software written in PHP that I certainly don't see it going away any time <em>soon</em>.</p>
<p>There are a lot of smaller languages out there that could die, but I don't think any of the big ones are going away in the near future.</p>
<p>Partly this is due to the ever-increasing importance of computers in our lives. COBOL effectively died because it was replaced by better technologies before it became so omnipresent that it <em>couldn't</em> die -- and, as I pointed out, maintenance of COBOL old code still happens in many sectors (for example, a lot of banks still use old software written in COBOL). But with the widespread deployment of computers now, it's hard for a language to die because chances are, there's still <em>some</em> software written in that language, and <em>someone</em> who knows -- and likes -- using it.</p>
<p>I suppose a lot of languages we use today might not be in usage a century or two down the road, though, so it depends on what time scale you're talking about. :)</p>
http://stackoverflow.com/questions/1821807/cannot-load-rails-application-with-gruff-gem0Cannot load Rails application with gruff gemmipadi2009-11-30T19:17:15Z2009-12-01T11:26:59Z
<p>I am trying to load a Ruby on Rails application that uses the <a href="http://rubyforge.org/projects/gruff" rel="nofollow">Gruff gem</a>. I can load Gruff fine in <code>irb</code>, but whenever I try to load the app (via <code>ruby script/server</code>), it crashes. Here's the full stack trace:</p>
<pre><code>/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/source_index.rb:303:in `search': undefined method `empty?' for :gruff:Symbol (NoMethodError)
from /opt/local/lib/ruby/vendor_ruby/1.8/rubygems/source_index.rb:274:in `find_name'
from /opt/local/lib/ruby/vendor_ruby/1.8/rubygems.rb:259:in `activate'
from /opt/local/lib/ruby/vendor_ruby/1.8/rubygems.rb:67:in `gem'
from /Users/mdippery/Projects/nees/ceespm/rails-server/config/environment.rb:60
from /opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
from /opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:31:in `require'
from /Users/mdippery/Projects/nees/ceespm/rails-server/vendor/rails/activesupport/lib/active_support/dependencies.rb:495:in `require'
from /Users/mdippery/Projects/nees/ceespm/rails-server/vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in'
from /Users/mdippery/Projects/nees/ceespm/rails-server/vendor/rails/activesupport/lib/active_support/dependencies.rb:495:in `require'
from /opt/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:147:in `rails'
from /opt/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:113:in `cloaker_'
from /opt/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:149:in `call'
from /opt/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:149:in `listener'
from /opt/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:99:in `cloaker_'
from /opt/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:50:in `call'
from /opt/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:50:in `initialize'
from /opt/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:84:in `new'
from /opt/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:84:in `run'
from /opt/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
from /opt/local/lib/ruby/gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
from /Users/mdippery/Projects/nees/ceespm/rails-server/vendor/rails/activesupport/lib/active_support/dependencies.rb:488:in `load'
from /Users/mdippery/Projects/nees/ceespm/rails-server/vendor/rails/activesupport/lib/active_support/dependencies.rb:488:in `load'
from /Users/mdippery/Projects/nees/ceespm/rails-server/vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in'
from /Users/mdippery/Projects/nees/ceespm/rails-server/vendor/rails/activesupport/lib/active_support/dependencies.rb:488:in `load'
from /Users/mdippery/Projects/nees/ceespm/rails-server/vendor/rails/railties/lib/commands/servers/mongrel.rb:60
from /opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
from /opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:31:in `require'
from /Users/mdippery/Projects/nees/ceespm/rails-server/vendor/rails/activesupport/lib/active_support/dependencies.rb:495:in `require'
from /Users/mdippery/Projects/nees/ceespm/rails-server/vendor/rails/activesupport/lib/active_support/dependencies.rb:342:in `new_constants_in'
from /Users/mdippery/Projects/nees/ceespm/rails-server/vendor/rails/activesupport/lib/active_support/dependencies.rb:495:in `require'
from /Users/mdippery/Projects/nees/ceespm/rails-server/vendor/rails/railties/lib/commands/server.rb:39
from script/server:3:in `require'
from script/server:3
</code></pre>
<p>How can I fix this so the app will run?</p>
http://stackoverflow.com/questions/1791110/can-anyone-explain-this-array-declaration-to-me/1791132#17911325Answer by mipadi for Can anyone explain this array declaration to me?mipadi2009-11-24T16:17:50Z2009-11-24T16:17:50Z<p>There's no difference. In Ruby, you're free to add a trailing comma to an array. It makes syntax like this:</p>
<pre><code>a = [
1,
2,
3,
]
</code></pre>
<p>A bit nicer, in some cases (e.g., if you want to add an element, you simply add a <code>4,</code> line and don't have to worry about checking for a comma on the last line).</p>
http://stackoverflow.com/questions/1790520/how-to-apply-a-logical-operator-to-all-elements-in-a-python-list/1790604#17906040Answer by mipadi for How to apply a logical operator to all elements in a python listmipadi2009-11-24T14:56:06Z2009-11-24T14:56:06Z<p>As the other answers show, there are multiple ways to accomplish this task. Here's another solution that uses functions from the standard library:</p>
<pre><code>from functools import partial
apply_and = all
apply_or = any
apply_not = partial(map, lambda x: not x)
if __name__ == "__main__":
ls = [True, True, False, True, False, True]
print "Original: ", ls
print "and: ", apply_and(ls)
print "or: ", apply_or(ls)
print "not: ", apply_not(ls)
</code></pre>
http://stackoverflow.com/questions/1784594/why-is-this-haskell-incorrect/1784638#17846382Answer by mipadi for Why is this Haskell incorrect?mipadi2009-11-23T17:20:56Z2009-11-23T17:20:56Z<p>The problem is this line:</p>
<pre><code>llfs([1, 2, 3, 3, 4, 5, 1, 1, 1])
</code></pre>
<p>That's not a function declaration. I think you're trying to make a function call, in which case you need to put it inside a <code>main</code> declaration. You can also load the Haskell file into an interpreter (e.g., <code>ghci</code>) and execute the function call in the interpreter console.</p>
http://stackoverflow.com/questions/1784481/microsoft-internal-coding-guidelines-dont-use-tabs/1784504#17845041Answer by mipadi for Microsoft Internal Coding guidelines: don't use tabs.mipadi2009-11-23T16:59:10Z2009-11-23T16:59:10Z<p>It's not for the compiler, but rather for stylistic reasons. Alignment can get confusing if you use tabs, or mix tabs and spaces. For example, most editors let you set the width of a tab (e.g., 2 spaces, 4 spaces, 8 spaces); this isn't a problem for indentation, but if a programmer uses tabs for <em>alignment</em> (a big no-no) then the alignment will look different depending on the tab-width setting. Some style guideline authors think its easier to just mandate that spaces be used instead of tabs, rather than trying to convey a "use tabs for indentation, spaces for alignment" rule.</p>
http://stackoverflow.com/questions/1784222/differences-between-nsstrings/1784263#17842634Answer by mipadi for Differences between NSStrings?mipadi2009-11-23T16:26:23Z2009-11-23T16:26:23Z<p>They are all similar, but there are some slight differences between the three.</p>
<p>The first one is a pointer to a string constant. The string <code>Teddy</code> is stored in read-only memory, and <code>userName</code> is a pointer to this string constant. You need not (and cannot) retain or release this object, since it exists "permanently" (that is, for the duration of the program).</p>
<p>The second one is an <em>autoreleased</em> string object with the contents <code>Gary</code>. When returned to you, it has a release count of 0. It may be retained and released as needed.</p>
<p>The third one is similar to the second one, but it is <em>not</em> autoreleased, so it has a retain count of 1 when it is initially returned to you. Like the second one, it may be retained and released as needed.</p>
http://stackoverflow.com/questions/1783916/what-is-the-best-service-for-cross-browser-screen-shots/1783946#17839461Answer by mipadi for What is the best service for cross-browser screen shots?mipadi2009-11-23T15:41:06Z2009-11-23T15:41:06Z<p>I like <a href="https://browserlab.adobe.com" rel="nofollow">Adobe Browserlab</a>, even though it's annoying that you have to create an Adobe ID to use it.</p>
http://stackoverflow.com/questions/1779373/cant-build-a-new-project-with-xcode-on-my-macpro/1783502#17835020Answer by mipadi for Can't build a new project with xcode on my MacPromipadi2009-11-23T14:35:43Z2009-11-23T14:35:43Z<p>Doesn't Xcode 3.2 (not 3.1.2) ship with Snow Leopard? If you're using Snow Leopard, you should be using the appropriate version of Xcode for Snow Leopard, which is the 3.2 series.</p>
http://stackoverflow.com/questions/1783352/is-functional-programming-a-subset-of-imperative-programming/1783396#17833965Answer by mipadi for Is functional programming a subset of imperative programming?mipadi2009-11-23T14:21:50Z2009-11-23T14:21:50Z<p>Generally speaking, no; functional programming is a subset of <em>declarative programming</em> (which includes logic programming languages, like Prolog). Many imperative languages borrow elements from functional programming languages, but simply having lambdas or referentially-transparent functions does not make an imperative language functional; functional programming is about more than just these elements.</p>
http://stackoverflow.com/questions/1904319/does-reddit-use-any-type-of-orm/1904331#1904331Comment by mipadi on Does Reddit use any type of ORM?mipadi2009-12-15T01:10:52Z2009-12-15T01:10:52ZAh yes, that is in fact what I meant. Thanks for fixing that Dan!http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/43432#43432Comment by mipadi on What non-programming books should programmers read?mipadi2009-12-14T16:57:32Z2009-12-14T16:57:32Z@jamesh: I don't think <i>Cryptonomicon</i> is hands-down a better book than <i>Snow Crash</i>. <i>Cryptonomicon</i> is certainly interesting and well-written, but the ideas -- particularly on linguistics, cogsci, and the philosophy of the mind -- that are expressed in <i>Snow Crash</i> are very interesting and have a lot of depth. I think programmers tend to focus on the tech stuff and miss what Stephenson is <i>really</i> saying in <i>Snow Crash</i>. (Plus I think <i>Snow Crash</i> is more <i>fun</i>, but that's just my taste.)http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/71046#71046Comment by mipadi on What non-programming books should programmers read?mipadi2009-12-14T16:03:15Z2009-12-14T16:03:15Z<i>1984</i> is *boring*‽http://stackoverflow.com/questions/1897037/xcode-cannnot-find-my-plist-file-when-building/1897045#1897045Comment by mipadi on Xcode cannnot find my plist file when buildingmipadi2009-12-13T17:54:42Z2009-12-13T17:54:42ZIt can be -- you just have to make sure that Xcode knows the proper path to it. Perhaps when you added it it <i>wasn't</i> in a subdirectory, and then you moved it?http://stackoverflow.com/questions/1897009/the-use-of-and-in-a-call-to-java-with-classpath-declaration/1897013#1897013Comment by mipadi on The use of ":" and "." in a call to java with classpath declaration. mipadi2009-12-13T17:53:45Z2009-12-13T17:53:45Z@Asaph: Yes, but that won't work if you're invoking from the command-line. If you're invoking from the command-line, you kind of have to know what the proper separator is. :)http://stackoverflow.com/questions/1894453/development-time-in-various-languages/1894605#1894605Comment by mipadi on Development time in various languagesmipadi2009-12-12T23:10:40Z2009-12-12T23:10:40ZI think some of those results may not be directly related to language, though. <i>In my personal experience</i>, I've found that programmers experienced in languages like Haskell, Forth, etc., tend to be more talented overall than other programmers; likewise, smart programmers tend not to use languages like C, C++, etc., for "fun" problems like Project Eulers, even though they would probably be as successful with those languages.http://stackoverflow.com/questions/1888836/how-to-use-a-mit-license-in-an-embedded-device/1888868#1888868Comment by mipadi on How to use a MIT License in an Embedded devicemipadi2009-12-11T15:56:49Z2009-12-11T15:56:49ZNote that "Software" is defined as "a copy of this software and associated documentation files". Do you have documentation that ships with your device? I am not a lawyer either, but I imagine that if you put the notice re: jQuery in your device's documentation, you should be fine.http://stackoverflow.com/questions/1862123/django-1-1-1-how-should-i-store-an-empty-ip-address-using-postgresql/1862264#1862264Comment by mipadi on Django 1.1.1: How should I store an empty IP address using PostgreSQL?mipadi2009-12-08T14:40:00Z2009-12-08T14:40:00ZAh yes, I see. Sorry -- I misunderstood the problem before.http://stackoverflow.com/questions/1840901/checking-for-empty-nsset/1840933#1840933Comment by mipadi on Checking for empty NSSet?mipadi2009-12-08T02:30:01Z2009-12-08T02:30:01ZIf you use it a lot, you could add an <code>isEmpty</code> method as a category on <code>NSSet</code>, which a body like <code>- (BOOL)isEmpty { return [self count] == 0; }</code>.http://stackoverflow.com/questions/1862423/git-how-to-tell-which-commit-a-tag-points-to/1862542#1862542Comment by mipadi on Git - how to tell which commit a tag points tomipadi2009-12-08T00:24:27Z2009-12-08T00:24:27Z@ Jakub: <code>git rev-parse $TAG</code> returns the SHA1 of the tag object, not the commit to which it points. <code>git rev-list -1</code> works, though.http://stackoverflow.com/questions/1856499/git-remote-update/1856504#1856504Comment by mipadi on git remote updatemipadi2009-12-07T20:13:37Z2009-12-07T20:13:37ZIncidentally, <code>git remote</code> is not a shell script, but it spawns <code>git fetch</code> during a <code>remote update</code>.http://stackoverflow.com/questions/1271631/how-to-check-the-templatedebug-flag-in-a-django-template/1271914#1271914Comment by mipadi on How to check the TEMPLATE_DEBUG flag in a django template?mipadi2009-12-06T22:12:40Z2009-12-06T22:12:40ZThe <code>if</code> tag <i>should</i> work. From the Django docs: "The <code>{% if %}</code> tag evaluates a variable, and if that variable is 'true' (i.e. exists, is not empty, and is not a false boolean value) the contents of the block are output."http://stackoverflow.com/questions/1847942/good-people-or-projects-to-follow-in-github/1847983#1847983Comment by mipadi on Good people or projects to follow in github ?mipadi2009-12-04T17:03:58Z2009-12-04T17:03:58ZYes, but on a place like GitHub there are enough great projects in just about any language that it makes more sense to look at ones written in a language you actually <i>want</i> to learn (or learn to use better). Besides, if you know <i>nothing</i> about a language, how can you tell if the code is good or not?http://stackoverflow.com/questions/1833631/what-software-on-a-silverlight-developers-laptop/1833674#1833674Comment by mipadi on what software on a silverlight developer's laptopmipadi2009-12-02T19:01:09Z2009-12-02T19:01:09ZWell, I know in Vista Business it's hidden (from Games Explorer) until you enable it. :)http://stackoverflow.com/questions/1833794/why-is-winapi-so-much-different-from-normal-c/1833807#1833807Comment by mipadi on Why is WinAPI so much different from "normal" C?mipadi2009-12-02T16:00:58Z2009-12-02T16:00:58ZYes, but the increased complexity of a GUI program doesn't necessarily explain the OP's question vis-à-vis the use (or lack of) <code>main()</code>, <code>int</code>, <code>long</code>, etc., which are standard even in GUI programs on other systems.