User igorgue - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T10:57:46Zhttp://stackoverflow.com/feeds/user/29253http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1644132/the-operator-on-ruby-where-is-it-documented2The <<- operator on Ruby, where is it documented?igorgue2009-10-29T14:29:06Z2009-10-30T00:33:20Z
<p>Hi, I recently used the <<- operator to output a multi-line string, this way...</p>
<pre><code><<-form
<h1>Name to say hi!</h1>
<form method="post">
<input type="text" name="name">
<input type="submit" value="send">
</form>
form
</code></pre>
<p>But I stole the <<- operator from some Open Source code, but I didn't find any documentation on it.</p>
<p>I kinda figured out that it works the same as in bash:</p>
<pre><code>$ cat <<EOF >> form.html
> <h1>Name to say hi!</h1>
> <form method="post">
> <input type="text" name="name">
> <input type="submit" value="send">
> </form>
> EOF
</code></pre>
<p>Does it works that way? I just wanna find documentation on it...</p>
<p>PS: My full example is a <a href="http://gist.github.com/220852" rel="nofollow">simple get/post Sinatra app</a></p>
http://stackoverflow.com/questions/1604023/oracle-client-tuning0Oracle Client Tuning?igorgue2009-10-21T22:30:44Z2009-10-22T02:23:54Z
<p>Is there a way to tune the Oracle client (InstantClient or the normal one)?</p>
<p>We have a software that runs on multiple DMBS (MySQL, PGSQL and MS SQL Server) I'm wondering why the Oracle version of the product consume more resources than the other ones.</p>
<p>UPDATE: I'm using the C++ API (OCI).</p>
http://stackoverflow.com/questions/1323410/haskey-or-in8'has_key()' or 'in'?igorgue2009-08-24T16:30:15Z2009-08-24T22:11:34Z
<p>Hi,</p>
<p>I wonder what is better to do:</p>
<pre><code>d = {'a': 1, 'b': 2}
'a' in d
True
</code></pre>
<p>or:</p>
<pre><code>d = {'a': 1, 'b': 2}
d.has_key('a')
True
</code></pre>
http://stackoverflow.com/questions/1084566/getting-a-dict-out-of-a-method1Getting a dict out of a method?igorgue2009-07-05T18:17:23Z2009-07-05T18:50:01Z
<p>Hi,</p>
<p>I'm trying to get a <code>dict</code> out of a method, so far I'm able to get the method name, and its arguments (using the inspect module), the problem I'm facing is that I'd like to have the default arguments too (or the argument type).</p>
<p>This is basically my unit test:</p>
<pre><code>class Test:
def method1(anon_type, array=[], string="string", integer=12, obj=None):
pass
target = {"method1": [
{"anon": "None"},
{"array": "[]"},
{"string": "str"},
{"integer": "int"},
{"obj": "None"}]
}
method1_dict = get_method_dict(Test().method1)
self.assertEqual(target, method1_dict)
</code></pre>
<p>Here, I try to use <em>inspect</em> to get the method:</p>
<pre><code>>>> import inspect
>>> class Class:
... def method(self, string='str', integer=12):
... pass
...
>>> m_desc = inspect.getargspec(Class().method)
>>> m_desc
ArgSpec(args=['self', 'string', 'integer'], varargs=None, keywords=None, defaults=('str', 12))
>>>
</code></pre>
<p>but my problem is with the <em>default args</em>, as you see here:</p>
<pre><code>>>> class Class:
... def method(self, no_def_args, string='str', integer=12):
... pass
...
>>> m_desc = inspect.getargspec(Class().method)
>>> m_desc
ArgSpec(args=['self', 'no_def_args', 'string', 'integer'], varargs=None, keywords=None, defaults=('str', 12))
</code></pre>
<p>As you see the <code>no_def_args</code> is not in the defaults, so it's a problem to try to match the argument with their default arguments.</p>
http://stackoverflow.com/questions/1059924/how-to-delete-all-the-items-of-an-expecific-key-in-a-list-of-dicts0How to delete all the items of an expecific key in a list of dicts?igorgue2009-06-29T19:05:35Z2009-06-29T22:09:46Z
<p>I'm trying to remove some items of a dict based on their key, here is my code:</p>
<pre><code>d1 = {'a': 1, 'b': 2}
d2 = {'a': 1}
l = [d1, d2, d1, d2, d1, d2]
for i in range(len(l)):
if l[i].has_key('b'):
del l[i]['b']
print l
</code></pre>
<p>The output will be:</p>
<pre><code>[{'a': 1}, {'a': 1}, {'a': 1}, {'a': 1}, {'a': 1}, {'a': 1}]
</code></pre>
<p>Is there a better way to do it?</p>
http://stackoverflow.com/questions/333185/what-type-of-scope-does-haskell-use/333219#3332197Answer by igorgue for What type of scope does Haskell use?igorgue2008-12-02T06:39:59Z2009-06-15T16:13:15Z<p>There are some things wrong in your statements... </p>
<ul>
<li>There are no mutable variables in Haskell just definitions (or immutable variables)</li>
<li>A variable memory location is a concept that do not exist in Haskell</li>
</ul>
<p>In your example, <em>x</em> is <strong>not</strong> 10 in the function is just a argument to square, that can take any value (you can specify the type later) in this case 10 but just in this case.</p>
<p>Here is an example of aliases provided by <a href="http://stackoverflow.com/users/107294/curt-sampson">Curt Sampson</a>:</p>
<pre><code>import Data.IORef
main :: IO ()
main = do x <- newIORef 0 -- write 0 into x
readIORef x >>= print -- x contains 0
let y = x
readIORef y >>= print -- y contains 0
writeIORef x 42 -- write 42 into x
readIORef y >>= print -- y contains 42
</code></pre>
http://stackoverflow.com/questions/849142/how-to-limit-the-maximum-value-of-a-numeric-field-in-a-django-model/850263#850263-1Answer by igorgue for How to limit the maximum value of a numeric field in a Django model?igorgue2009-05-11T21:49:57Z2009-05-11T21:49:57Z<p>You could create a pre-save signal: </p>
<p><a href="http://docs.djangoproject.com/en/dev/ref/signals/#django.db.models.signals.pre%5Fsave" rel="nofollow">http://docs.djangoproject.com/en/dev/ref/signals/#django.db.models.signals.pre_save</a></p>
http://stackoverflow.com/questions/805393/what-is-the-best-way-to-access-stored-procedures-in-djangos-orm/805423#8054232Answer by igorgue for What is the best way to access stored procedures in Django's ORM.igorgue2009-04-30T05:16:28Z2009-04-30T05:16:28Z<p>You have to use the connection utility in Django:</p>
<pre><code>from django.db import connection
cursor = connection.cursor()
cursor.execute("SQL STATEMENT CAN BE ANYTHING")
</code></pre>
<p>then you can fetch the data:</p>
<pre><code>cursor.fetchone()
</code></pre>
<p>or:</p>
<pre><code>cursor.fetchall()
</code></pre>
<p>More info here: <a href="http://docs.djangoproject.com/en/dev/topics/db/sql/" rel="nofollow">http://docs.djangoproject.com/en/dev/topics/db/sql/</a></p>
http://stackoverflow.com/questions/689807/sql-server-vs-oracle/690125#6901252Answer by igorgue for SQL server VS Oracleigorgue2009-03-27T15:03:50Z2009-03-27T18:09:34Z<p>The advantage of Oracle is the tuning aspect, in Oracle you can pretty much change everything... I don't know if you get that level of customization in SQL Server.</p>
<p>On the tools side SQL Server shines, its very easy to work with (has limitations but still very easy).</p>
<p>Integration... well it depends, if you're using .NET then SQL Server (even though you can use Oracle with it too) if you're using Java then Oracle (you can also connect to SQL Server using Java).</p>
<p>If you ask me which one to choose, I'll say NONE!, since you get pretty much the same quality and advanced technology with free database servers like MySQL or PostgreSQL (and since I use Python/Django and .NET they integrate pretty well).</p>
<p>Which one should you pick? I don't know, try both!, it won't take you more than a day to install and play with them :). Both have advantages and both are cool, we've reach the point that it doesn't matter which DBMS you pick (the 4 big ones, MySQL, PgSQL, MSSQL or Oracle).</p>
http://stackoverflow.com/questions/577562/is-python-a-job-seekers-choice/578067#5780670Answer by igorgue for Is Python a job seeker's choiceigorgue2009-02-23T15:43:22Z2009-02-23T15:43:22Z<p>Actually look at this graph: <a href="http://www.indeed.com/jobtrends?q=django&l=" rel="nofollow">http://www.indeed.com/jobtrends?q=django&l=</a> it doesn't look any bad for a Python web application framework.</p>
<p>Do not learn a programming language because of its quantity of jobs openings, that tells a lot about your likeness to code.</p>
http://stackoverflow.com/questions/575202/what-helps-to-you-improve-your-ability-to-find-a-bug/578025#5780250Answer by igorgue for What helps to you improve your ability to find a bug?igorgue2009-02-23T15:33:53Z2009-02-23T15:33:53Z<p>I'm part of the QA team @ work, and knowing anything about the product and how it is developed, helps <strong>a lot</strong> in finding bugs, also when I make new QA tools I pass it to our dev team to test it, finding bugs in your own code is just plain <strong>hard</strong>!</p>
<p>Some people say programmers are <strong>tainted</strong>, so we cannot see bugs in their own product; we are not talking about code here, we are beyond that, usability and functionality itself.</p>
<p>Meanwhile unit testing seams to be a nice solution to find bugs in your own code, its totally pointless if you're wrong even before writing the unit test, how are you going to find the bugs then? you don't!, let your co-worker find them, hire a QA guy.</p>
http://stackoverflow.com/questions/493603/what-is-the-cleanest-way-to-write-this-if-then-logic/493691#493691-1Answer by igorgue for What is the cleanest way to write this if..then logic?igorgue2009-01-29T22:11:13Z2009-01-29T22:11:13Z<p>The first one. You don't need any else if you are returning a value inside the if statement. So:</p>
<pre><code>if (!String.IsNullOrEmpty(returnUrl))
return Redirect(returnUrl);
return RedirectToAction("Open", "ServiceCall");
</code></pre>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/489129#4891292Answer by igorgue for What real life bad habits has programming given you?igorgue2009-01-28T20:17:26Z2009-01-28T20:17:26Z<p>I do binary search on everything, it works quite well though :)</p>
http://stackoverflow.com/questions/4101/where-do-you-store-your-code-snippets/485783#4857830Answer by igorgue for Where do you store your code snippets?igorgue2009-01-27T23:08:01Z2009-01-27T23:08:01Z<p>If code in Django, use <a href="http://www.djangosnippets.org/" rel="nofollow">www.djangosnippets.org</a>.</p>
<p>For my personal snippets I use <a href="http://gist.github.com/" rel="nofollow">gist.github.com</a> and use it for team work.</p>
<p>Also since I code in VIM, I use <a href="http://www.vim.org/scripts/script.php?script_id=1318" rel="nofollow">SnippetsEMU</a>.</p>
http://stackoverflow.com/questions/459238/when-and-how-do-you-use-server-side-javascript/459315#4593150Answer by igorgue for When and how do you use server side JavaScript?igorgue2009-01-19T21:48:50Z2009-01-19T21:48:50Z<p>I remember with <a href="http://cocoon.apache.org/" rel="nofollow">Cocoon</a> (Apache's Java/XML/Javascript MVC framework) I used to use server-side Javascript since there was a something (I believe cforms) that needed to be written in Javascript and was running on the server even though I believe you could write it in Java.</p>
<p>We used Rhyno by that time, please check: <a href="http://peter.michaux.ca/articles/server-side-javascript-with-rhino-and-jetty" rel="nofollow">http://peter.michaux.ca/articles/server-side-javascript-with-rhino-and-jetty</a></p>
http://stackoverflow.com/questions/453471/which-has-more-job-openings-for-programmers-rails-or-django/456133#4561330Answer by igorgue for Which has more job openings for programmers - Rails or Django?igorgue2009-01-18T23:39:42Z2009-01-18T23:39:42Z<p>Definitely Rails, but I don't really think that is important, if you're deciding which one to learn don't do it based on which one has more jobs openings. Try both you'll have fun :)</p>
http://stackoverflow.com/questions/450943/do-you-recommend-sharpdevelop-for-trying-out-c-on-linux/451053#4510530Answer by igorgue for Do you recommend SharpDevelop for trying out C# on Linux?igorgue2009-01-16T16:36:22Z2009-01-16T16:36:22Z<p>MonoDevelop, and its default solutions files are the same as Visual Studio, so here you go, portability of your dev environments</p>
http://stackoverflow.com/questions/332668/is-the-table-in-use1Is the Table in Use?igorgue2008-12-02T00:18:58Z2008-12-05T02:27:28Z
<p>How to figure out if a table is in use in SQL (on any type database)? if somebody is already using it, or have it "open" then its in use.</p>
http://stackoverflow.com/questions/332668/is-the-table-in-use/341881#3418810Answer by igorgue for Is the Table in Use?igorgue2008-12-04T20:08:46Z2008-12-05T02:27:28Z<p>Actually this will give you a better result:</p>
<pre><code>select spid
from master..sysprocesses
where dbid = db_id('Works') and spid <> @@spid
</code></pre>
http://stackoverflow.com/questions/340959/how-could-i-share-workspace-between-ubuntu-and-windows-xp/341004#3410040Answer by igorgue for how could I share workspace between ubuntu and windows xp?igorgue2008-12-04T15:35:39Z2008-12-04T15:35:39Z<p>How did you mount the partition in your <code>/etc/fstab</code>? did you use the option <code>rw</code> to mount it as read-write?</p>
<p>Can you tell me the output of: </p>
<pre><code>cat /etc/mtab
</code></pre>
http://stackoverflow.com/questions/338768/python-importerror-no-module-named/338858#3388582Answer by igorgue for python ImportError No module namedigorgue2008-12-03T21:50:15Z2008-12-03T21:50:15Z<p>Does</p>
<pre><code>(local directory)/site-packages/toolkit
</code></pre>
<p>have a <code>__init__.py</code>?</p>
<p>To make import <em>walk</em> through your directories every directory must have a <code>__init__.py</code> file.</p>
http://stackoverflow.com/questions/335036/what-is-a-good-resource-to-help-start-an-open-source-project/335233#3352331Answer by igorgue for What is a good resource to help start an open source project?igorgue2008-12-02T20:02:01Z2008-12-02T20:02:01Z<p>To start an OSS software a lot of people recommends: <a href="http://producingoss.com/" rel="nofollow">http://producingoss.com/</a> the book is free so everybody can get it.</p>
http://stackoverflow.com/questions/176998/what-is-the-most-important-feature-in-mono-2-0/334767#3347670Answer by igorgue for What is the most important feature in Mono 2.0?igorgue2008-12-02T17:30:43Z2008-12-02T17:30:43Z<p>The complete .NET 2.0 profile is quite of an accomplishment!</p>
http://stackoverflow.com/questions/330194/is-it-possible-to-use-mono-static-compilation-on-windows/334311#3343112Answer by igorgue for Is it possible to use Mono static compilation on Windows? igorgue2008-12-02T15:26:24Z2008-12-02T15:26:24Z<p>Yes it is possible,</p>
<p><a href="http://www.mono-project.com/AOT#Supported_Platforms" rel="nofollow">http://www.mono-project.com/AOT#Supported_Platforms</a></p>
http://stackoverflow.com/questions/304103/how-much-math-do-i-need-to-become-productive-in-haskell/333231#3332310Answer by igorgue for How much math do I need to become productive in Haskell?igorgue2008-12-02T06:58:35Z2008-12-02T06:58:35Z<p>I believe that Haskell teach you a lot of logic, discrete maths so then learn Haskell and you'll get some maths skill too :)</p>
http://stackoverflow.com/questions/1644132/the-operator-on-ruby-where-is-it-documented/1647388#1647388Comment by igorgue on The <<- operator on Ruby, where is it documented?igorgue2009-11-02T21:45:14Z2009-11-02T21:45:14Zyep, I didn't know that, thanks :)http://stackoverflow.com/questions/1646641/is-there-a-way-to-know-if-a-list-of-elements-is-on-a-larger-list-without-using-i/1646720#1646720Comment by igorgue on Is there a way to know if a list of elements is on a larger list without using 'in' keyword?igorgue2009-10-29T21:46:33Z2009-10-29T21:46:33ZI liked this answer :(http://stackoverflow.com/questions/1646641/is-there-a-way-to-know-if-a-list-of-elements-is-on-a-larger-list-without-using-iComment by igorgue on Is there a way to know if a list of elements is on a larger list without using 'in' keyword?igorgue2009-10-29T21:26:10Z2009-10-29T21:26:10Zthe in keyword will only tell you if small_list, is an element of big_list...
big_list = [1,2,5,7,2,small_list,4,2,5,67,8,5,13,45]http://stackoverflow.com/questions/1644132/the-operator-on-ruby-where-is-it-documented/1644155#1644155Comment by igorgue on The <<- operator on Ruby, where is it documented?igorgue2009-10-29T14:39:18Z2009-10-29T14:39:18ZThank you I didn't even know what was the name of that :)http://stackoverflow.com/questions/1604023/oracle-client-tuningComment by igorgue on Oracle Client Tuning?igorgue2009-10-22T02:12:49Z2009-10-22T02:12:49ZAhh I'm using C++http://stackoverflow.com/questions/1323410/haskey-or-in/1323426#1323426Comment by igorgue on 'has_key()' or 'in'?igorgue2009-08-25T14:54:04Z2009-08-25T14:54:04Zyeah, you can use it with lists too... "in" is pretty smarthttp://stackoverflow.com/questions/1323410/haskey-or-in/1323880#1323880Comment by igorgue on 'has_key()' or 'in'?igorgue2009-08-24T18:56:27Z2009-08-24T18:56:27Zthanks a lot, good to know, now I'm changing my code to use 'in' instead of has_key() ;)http://stackoverflow.com/questions/1323410/haskey-or-in/1323426#1323426Comment by igorgue on 'has_key()' or 'in'?igorgue2009-08-24T16:58:03Z2009-08-24T16:58:03Zawesome http://stackoverflow.com/questions/1323410/haskey-or-in/1323426#1323426Comment by igorgue on 'has_key()' or 'in'?igorgue2009-08-24T16:35:28Z2009-08-24T16:35:28Zthanks (added some text to avoid the 15 chars limitation ;))http://stackoverflow.com/questions/1084566/getting-a-dict-out-of-a-method/1084599#1084599Comment by igorgue on Getting a dict out of a method?igorgue2009-07-05T18:44:49Z2009-07-05T18:44:49ZI didn't know that if you don't order your arguments is a syntax error, and yes I know how to slice a list, thanks!http://stackoverflow.com/questions/1070484/git-hosting-with-personal-namespacesComment by igorgue on Git hosting with personal namespacesigorgue2009-07-01T21:28:15Z2009-07-01T21:28:15ZYou can host your .git dir renaming it to project.git, and putting it in your user public_html directory, just remember this wont work to do a push to the repo, in other words just read only. Also remember to add the user_dirs module to apache.
You can actually do it using webdav, here is a guide, but I had many problems with it, that I switched to ssh:
<a href="http://www.kernel.org/pub/software/scm/git/docs/howto/setup-git-server-over-http.txt" rel="nofollow">kernel.org/pub/software/…</a>http://stackoverflow.com/questions/1059924/how-to-delete-all-the-items-of-an-expecific-key-in-a-list-of-dicts/1059981#1059981Comment by igorgue on How to delete all the items of an expecific key in a list of dicts?igorgue2009-06-29T22:12:26Z2009-06-29T22:12:26ZI was worried about the use of 'pop', but it makes sense because of the double indexing, thanks!http://stackoverflow.com/questions/1059924/how-to-delete-all-the-items-of-an-expecific-key-in-a-list-of-dicts/1060086#1060086Comment by igorgue on How to delete all the items of an expecific key in a list of dicts?igorgue2009-06-29T21:54:15Z2009-06-29T21:54:15ZThanks for your feedback, I didn't understand (or remember) that until nowhttp://stackoverflow.com/questions/333185/what-type-of-scope-does-haskell-use/333219#333219Comment by igorgue on What type of scope does Haskell use?igorgue2009-06-17T18:57:14Z2009-06-17T18:57:14ZI meant that you don't think of a variable's memory locationhttp://stackoverflow.com/questions/333185/what-type-of-scope-does-haskell-use/333219#333219Comment by igorgue on What type of scope does Haskell use?igorgue2009-06-15T16:13:34Z2009-06-15T16:13:34ZEdited my answer, thanks for your feedback